This is the mail archive of the binutils@sourceware.cygnus.com mailing list for the binutils project.


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

Re: second release candidate for 2.10


Philip Blundell wrote :
> I've made a new archive which should address the two problems that were 
> reported so far.  You can get it at
> 
> ftp://ftp.futuretv.com/pub/phil/binutils-2.10-rc2.tar.bz2
> or
> ftp://ftp.netwinder.org/users/p/philb/binutils-2.10-rc2.tar.bz2
> 
> If nothing else comes up I plan to make the release on Tuesday morning (UK 
> time).

Another small error and fix :

cc -DHAVE_CONFIG_H -I. -I/binutils-2.10/gprof -I. -D_GNU_SOURCE -DDEBUG -I../bfd -I/binutils-2.10/gprof/../include -I/binutils-2.10/gprof/../bfd -I/binutils-2.10/gprof/../intl -I../intl -I. -DLOCALEDIR="\"/usr/local/share/locale\""    -g -DYYDEBUG=1 -c /binutils-2.10/gprof/source.c
"/usr/include/sys/stat.h", line 14: syntax error
"/usr/include/sys/stat.h", line 14: cannot recover from earlier errors: goodbye!

On my system sys/types.h must be included before sys/stat.h, but actually
the direct inclusion of sys/stat.h in gprof/source.c is useless, because it
is also included via bfd/sysdep.h

Philippe De Muyter  <phdm@macqel.be>

	* source.c (sys/stat.h): Direct inclusion of that file removed.

--- ./gprof/source.c	Sun Jun  4 23:50:28 2000
+++ ./gprof/source.c	Sun Jun  4 23:49:44 2000
@@ -1,8 +1,6 @@
 /*
  * Keeps track of source files.
  */
-#include <sys/stat.h>
-
 #include "gprof.h"
 #include "libiberty.h"
 #include "filenames.h"

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