This is the mail archive of the gcc@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]
Other format: [Raw text]

Re: build breakage in cvs head


Olaf Hering <olh@suse.de> writes:

> /abuild/gcc_cvs_build/obj/obj-gcc34/gcc/xgcc -B/abuild/gcc_cvs_build/obj/obj-gcc34/gcc/ -B/home/foo/boofared/powerpc-unknown-linux-gnu/bin/ -B/home/foo/boofared/powerpc-unknown-linux-gnu/lib/ -isystem /home/foo/boofared/powerpc-unknown-linux-gnu/include -isystem /home/foo/boofared/powerpc-unknown-linux-gnu/sys-include -O2  -DIN_GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isystem ./include  -fPIC -g -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED  -I. -I. -I/home/foo/src/gcc-head/gcc -I/home/foo/src/gcc-head/gcc/. -I/home/foo/src/gcc-head/gcc/../include  -DFINE_GRAINED_LIBRARIES -fPIC -mstrict-align -DL_pack_sf -c fp-bit.c -o libgcc/./_pack_sf.o
> fp-bit.c:50:20: fp-bit.h: No such file or directory
>
> It is maybe caused by this change, target is native powerpc-linux


Does the following patch work for you?  If it does, I'll commit it as
obvious,

Andreas


2003-08-22  Andreas Jaeger  <aj@suse.de>

	* config/fp-bit.c: Prefix include of fp-bit.h with config.

============================================================
Index: gcc/config/fp-bit.c
--- config/fp-bit.c	15 Jun 2003 04:00:45 -0000	1.42
+++ config/fp-bit.c	22 Aug 2003 08:04:02 -0000
@@ -46,7 +46,7 @@ Boston, MA 02111-1307, USA.  */
 #include "tconfig.h"
 #include "coretypes.h"
 #include "tm.h"
-#include "fp-bit.h"
+#include "config/fp-bit.h"
 
 /* The following macros can be defined to change the behavior of this file:
    FLOAT: Implement a `float', aka SFmode, fp library.  If this is not

-- 
 Andreas Jaeger, aj@suse.de, http://www.suse.de/~aj
  SuSE Linux AG, Deutschherrnstr. 15-19, 90429 Nürnberg, Germany
   GPG fingerprint = 93A3 365E CE47 B889 DF7F  FED1 389A 563C C272 A126

Attachment: pgp00000.pgp
Description: PGP signature


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