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]

[PATCH] Fix: Re: Bootstrap failure on i686-unknown-openbsd3.1


The problem is that Keating's patch added a definition of local_prefix, which breaks
bootstrap on where headers are located in $(local_prefix)/include like iconv.h.
This patch just removes that wrongly added definition.
I have not added the diff for configure but I would assume who every
comits this will regen configure.


Thanks,
Andrew Pinski

ChangeLog:
2003-07-11  Andrew Pinski  <pinskia@physics.uc.edu>

	* configure.in: Remove wrongly added definition of
	local_prefix.
	* configure: Regenerate.

Patch:
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/gcc/configure.in,v
retrieving revision 1.702
diff -u -d -b -w -r1.702 configure.in
--- configure.in	11 Jul 2003 08:33:13 -0000	1.702
+++ configure.in	11 Jul 2003 16:03:05 -0000
@@ -570,7 +570,6 @@
 AC_SUBST(CROSS_SYSTEM_HEADER_DIR)

 # Build with intermodule optimisations
-local_prefix=
 AC_ARG_ENABLE(intermodule,
 [  --enable-intermodule    build the compiler in one step],
 [case "${enable_intermodule}" in



On Friday, Jul 11, 2003, at 11:51 US/Eastern, Andrew Pinski wrote:

I get a bootstrap failure because /usr/local/include not be added to the include directories
so while compiling stage2, gcc cannot find iconv.h.
/include is added instead of /usr/local/include.


The only patch which looks like it could be the cause if Geoffrey Keating's patch
to add intermodular compiling.


Thanks,
Andrew Pinski





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