[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-10-02 Thread rwild at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621

--- Comment #6 from Ralf Wildenhues rwild at gcc dot gnu.org 2010-10-02 
11:39:45 UTC ---
Author: rwild
Date: Sat Oct  2 11:39:41 2010
New Revision: 164902

URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=164902
Log:
Fix unportable shell quoting.

/:
PR bootstrap/44621
* configure.ac: Fix unportable shell quoting.
* configure: Regenerate.

config/:
* po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting.

intl/:
PR bootstrap/44621
* configure: Regenerate.

Modified:
branches/gcc-4_5-branch/ChangeLog
branches/gcc-4_5-branch/config/ChangeLog
branches/gcc-4_5-branch/config/po.m4
branches/gcc-4_5-branch/configure
branches/gcc-4_5-branch/configure.ac
branches/gcc-4_5-branch/intl/ChangeLog
branches/gcc-4_5-branch/intl/configure


[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-10-02 Thread rwild at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621

--- Comment #7 from Ralf Wildenhues rwild at gcc dot gnu.org 2010-10-02 
11:40:35 UTC ---
Author: rwild
Date: Sat Oct  2 11:40:32 2010
New Revision: 164903

URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=164903
Log:
Fix unportable shell quoting.

/:
PR bootstrap/44621
* configure.ac: Fix unportable shell quoting.
* configure: Regenerate.

config/:
* po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting.

intl/:
PR bootstrap/44621
* configure: Regenerate.

Modified:
branches/gcc-4_4-branch/ChangeLog
branches/gcc-4_4-branch/config/ChangeLog
branches/gcc-4_4-branch/config/po.m4
branches/gcc-4_4-branch/configure
branches/gcc-4_4-branch/configure.ac
branches/gcc-4_4-branch/intl/ChangeLog
branches/gcc-4_4-branch/intl/configure


[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-10-02 Thread rwild at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621

Ralf Wildenhues rwild at gcc dot gnu.org changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED

--- Comment #8 from Ralf Wildenhues rwild at gcc dot gnu.org 2010-10-02 
11:41:25 UTC ---
Fixed.


[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-09-27 Thread rwild at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621

--- Comment #5 from Ralf Wildenhues rwild at gcc dot gnu.org 2010-09-27 
20:19:48 UTC ---
Author: rwild
Date: Mon Sep 27 20:19:41 2010
New Revision: 164668

URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=164668
Log:
Fix unportable shell quoting.

/:
PR bootstrap/44621
* configure.ac: Fix unportable shell quoting.
* configure: Regenerate.

config/:
* po.m4 (AM_PO_SUBDIRS): Fix unportable shell quoting.

contrib/reghunt/:
* bin/gcc-svn-ids: Fix unportable shell quoting.
* date_based/reg_periodic: Likewise.
* date_based/reg_search: Likewise.

intl/:
PR bootstrap/44621
* configure: Regenerate.

Modified:
trunk/ChangeLog
trunk/config/ChangeLog
trunk/config/po.m4
trunk/configure
trunk/configure.ac
trunk/contrib/reghunt/ChangeLog
trunk/contrib/reghunt/bin/gcc-svn-ids
trunk/contrib/reghunt/date_based/reg_periodic
trunk/contrib/reghunt/date_based/reg_search
trunk/intl/ChangeLog
trunk/intl/configure


[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-09-26 Thread rwild at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621

Ralf Wildenhues rwild at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Last reconfirmed||2010.09.26 13:18:34
   date||
 AssignedTo|unassigned at gcc dot   |rwild at gcc dot gnu.org
   |gnu.org |
 Ever Confirmed|0   |1

--- Comment #4 from Ralf Wildenhues rwild at gcc dot gnu.org 2010-09-26 
13:18:34 UTC ---
Patch at http://gcc.gnu.org/ml/gcc-patches/2010-09/msg02031.html.

The failure shown in comment #3 is either a followup error, or should have been
fixed in the binutils tree on Mar 5 2010, by including libiberty.h in
incremental.cc.


[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-06-21 Thread pinskia at gcc dot gnu dot org


--- Comment #1 from pinskia at gcc dot gnu dot org  2010-06-21 23:30 ---
and LTO silently does nothing.

Huh?  gold is not required for lto to work.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621



[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-06-21 Thread Daniel dot Davies at xerox dot com


--- Comment #2 from Daniel dot Davies at xerox dot com  2010-06-21 23:42 
---
Excellent!  Here's where I must have gotten confused. 
http://gcc.gnu.org/install/configure.html says

--enable-gold
Enable support for using gold as the linker. If gold support is enabled
together with --enable-lto, an additional directory lto-plugin will be built.
The code in this directory is a plugin for gold that allows the link-time
optimizer to extract object files with LTO information out of library archives.
See -flto and -fwhopr for details.

Since I have object files in library archive, I assumed that gold was required.

Two other hints: attempting to apply LTO to my large 32-bit application has
absolutely no effect on performance; and attempting to link a 64-bit version of
the same large application results in an error because the linker tries to link
in the 32-bit lto-plugin.so.  I'm hoping that actually having gold available
will help, but perhaps that's just another mistake.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621



[Bug bootstrap/44621] syntax error in gcc-4.5.0/configure for ksh

2010-06-21 Thread Daniel dot Davies at xerox dot com


--- Comment #3 from Daniel dot Davies at xerox dot com  2010-06-21 23:47 
---
Yup, another mistake.  The gold build fails.  The version of g++ I'm using to
compile gold is too old (3.4.3 from the solaris distribution).  I'll go try to
make a newer one.

g++ -DHAVE_CONFIG_H -I. -I/tool/gcc/4.5.0/gcc-4.5.0/gold 
-I/tool/gcc/4.5.0/gcc-4.5.0/gold -I/tool/gcc/4.5.0/gcc-4.5.0/gold/../include
-I/tool/gcc/4.5.0/gcc-4.5.0/gold/../elfcpp
-DLOCALEDIR=\/tool/gcc/4.5.0/i386-pc-solaris2.10/share/locale\
-DBINDIR=\/tool/gcc/4.5.0/i386-pc-solaris2.10/bin\
-DTOOLBINDIR=\/tool/gcc/4.5.0/i386-pc-solaris2.10/i686-pc-solaris2.10/bin\
-I./../intl  -W -Wall   -Werror -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
-frandom-seed=incremental.o -g -fkeep-inline-functions -MT incremental.o -MD
-MP -MF .deps/incremental.Tpo -c -o incremental.o
/tool/gcc/4.5.0/gcc-4.5.0/gold/incremental.cc
/tool/gcc/4.5.0/gcc-4.5.0/gold/incremental.cc: In function `void
gold::vexplain_no_incremental(const char*, char*)':
/tool/gcc/4.5.0/gcc-4.5.0/gold/incremental.cc:240: error: `vasprintf'
undeclared (first use this function)
/tool/gcc/4.5.0/gcc-4.5.0/gold/incremental.cc:240: error: (Each undeclared
identifier is reported only once for each function it appears in.)
make[5]: *** [incremental.o] Error 1
make[5]: Leaving directory `/tool/gcc/4.5.0/build/gold'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/tool/gcc/4.5.0/build/gold'
make[3]: *** [all] Error 2
make[3]: Leaving directory `/tool/gcc/4.5.0/build/gold'
make[2]: *** [all-stage1-gold] Error 2
make[2]: Leaving directory `/tool/gcc/4.5.0/build'
make[1]: *** [stage1-bubble] Error 2
make[1]: Leaving directory `/tool/gcc/4.5.0/build'
make: *** [bootstrap] Error 2
51 ddavies-metro:/tool/gcc/4.5.0/build: 


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44621