This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: go32-nat, always a thread


>>>>> "Pedro" == Pedro Alves <pedro@codesourcery.com> writes:

Pedro>   The build complains about not finding stdint.h.  DJGPP 2.03 doesn't
Pedro>   come bundled with stdint.h, but we should be picking up
Pedro>   stdint.h from gdb/gnulib.  There seems to be a build order
Pedro>   dependency going wrong.  We configure gdb/gnulib before starting
Pedro>   to build gdb/, but we build gdb/ before gdb/gnulib.

Please try this patch.

Tom

ChangeLog:
2008-08-09  Tom Tromey  <tromey@redhat.com>

	* Makefile.in (generated_files): Add GNULIB_H.

Index: Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/Makefile.in,v
retrieving revision 1.1045
diff -u -r1.1045 Makefile.in
--- Makefile.in	8 Aug 2008 17:38:35 -0000	1.1045
+++ Makefile.in	9 Aug 2008 18:00:45 -0000
@@ -831,7 +831,7 @@
 
 
 # All generated files which can be included by another file.
-generated_files = config.h observer.h observer.inc ada-lex.c
+generated_files = config.h observer.h observer.inc ada-lex.c $(GNULIB_H)
 
 .c.o:
 	$(COMPILE) $<


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