This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

make -j patch -- part 2 cygwin only [gcc/i386/config/i386/t-cygwin]


This is part 2 of the parallel build problem on cygwin.

winnt.c includes config.h, but it is not listed as a dependent in its makefile fragment.

Bootstrapped with make -j 4 on an SMP box (along with part 1) on i686-pc-cygwin

Kelley Cook <no write privledges>


2001-05-23  Kelley Cook  <kelley.cook@home.com>

	*  config/i386/t-cygwin (winnt.o): Depend on $(CONFIG_H).

--- gcc/config/i386/t-cygwin.orig	Wed May 23 16:24:03 2001
+++ gcc/config/i386/t-cygwin	Wed May 23 16:06:22 2001
@@ -16,5 +16,5 @@
 	-I$(srcdir)/../winsup/cygwin/include \
 	-I$(srcdir)/../winsup/w32api/include
 
-winnt.o: $(srcdir)/config/i386/winnt.c $(RTL_H) $(TREE_H)
+winnt.o: $(srcdir)/config/i386/winnt.c $(RTL_H) $(TREE_H) $(CONFIG_H)
 	$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/config/i386/winnt.c

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]