public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X.
@ 2012-02-13  9:23 manphiz at gmail dot com
  2012-02-13  9:24 ` [Bug bootstrap/52226] " manphiz at gmail dot com
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13  9:23 UTC (permalink / raw)
  To: gcc-bugs

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

             Bug #: 52226
           Summary: Trunk fails to bootstrap on Mac OS X.
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: manphiz@gmail.com


Trunk (last tested with revision 184145) has been failing to bootstrap for some
time (last checked last Tuesday) on my macbook with Snow Leopard. The configure
options are:

${SOURCE_PATH}/configure \
    --prefix=${PREFIX} \
    --with-gmp=${PREFIX} \
    --with-mpfr=${PREFIX} \
    --with-mpc=${PREFIX} \
    --with-ppl=${PREFIX} \
    --with-cloog=${PREFIX} \
    --enable-cloog-backend=isl \
    --program-suffix=-${VERSION} \
    --enable-languages=c,c++,objc,obj-c++,fortran \
    --disable-nls \
    --disable-werror \
    --with-system-zlib \
    --enable-__cxa_init \
    --enable-concept-checks \
    --enable-decimal-float \
    --enable-full-dynamic-string \
    --enable-libstdcxx-debug \
    --enable-libstdcxx-time \
    --enable-multilib \
    --enable-plugin \
    --enable-static \
    --enable-shared \
    --enable-threads \
    --enable-version-specific-runtime-libs

And the build log is attached. Please let me know if more information is
needed.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
@ 2012-02-13  9:24 ` manphiz at gmail dot com
  2012-02-13 10:09 ` redi at gcc dot gnu.org
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13  9:24 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Xiyue Deng <manphiz at gmail dot com> 2012-02-13 09:24:01 UTC ---
Created attachment 26646
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26646
Trunk build log


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
  2012-02-13  9:24 ` [Bug bootstrap/52226] " manphiz at gmail dot com
@ 2012-02-13 10:09 ` redi at gcc dot gnu.org
  2012-02-13 11:03 ` manphiz at gmail dot com
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: redi at gcc dot gnu.org @ 2012-02-13 10:09 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-02-13 10:08:38 UTC ---
(In reply to comment #0)
>     --enable-full-dynamic-string \

IS this a copy & paste error?  It must be "fully" not "full"


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
  2012-02-13  9:24 ` [Bug bootstrap/52226] " manphiz at gmail dot com
  2012-02-13 10:09 ` redi at gcc dot gnu.org
@ 2012-02-13 11:03 ` manphiz at gmail dot com
  2012-02-13 11:04 ` manphiz at gmail dot com
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13 11:03 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Xiyue Deng <manphiz at gmail dot com> 2012-02-13 11:03:24 UTC ---
(In reply to comment #2)
> (In reply to comment #0)
> >     --enable-full-dynamic-string \
> 
> IS this a copy & paste error?  It must be "fully" not "full"

Indeed that was an error. I fixed that and added "--enable-stage1-checking" and
"--enable-lto", but it still failed with the same error. New configure options:

${SOURCE_PATH}/configure \
    --prefix=${PREFIX} \
    --with-gmp=${PREFIX} \
    --with-mpfr=${PREFIX} \
    --with-mpc=${PREFIX} \
    --with-ppl=${PREFIX} \
    --with-cloog=${PREFIX} \
    --enable-cloog-backend=isl \
    --program-suffix=-${VERSION} \
    --enable-languages=c,c++,objc,obj-c++,fortran \
    --enable-stage1-checking \
    --disable-nls \
    --disable-werror \
    --with-system-zlib \
    --enable-__cxa_init \
    --enable-concept-checks \
    --enable-decimal-float \
    --enable-fully-dynamic-string \
    --enable-libstdcxx-debug \
    --enable-libstdcxx-time \
    --enable-multilib \
    --enable-plugin \
    --enable-lto \
    --enable-static \
    --enable-shared \
    --enable-threads \
    --enable-version-specific-runtime-libs

And new build log will be uploaded to supersede the previous one.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (2 preceding siblings ...)
  2012-02-13 11:03 ` manphiz at gmail dot com
@ 2012-02-13 11:04 ` manphiz at gmail dot com
  2012-02-13 11:13 ` rguenth at gcc dot gnu.org
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13 11:04 UTC (permalink / raw)
  To: gcc-bugs

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

Xiyue Deng <manphiz at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #26646|0                           |1
        is obsolete|                            |

--- Comment #4 from Xiyue Deng <manphiz at gmail dot com> 2012-02-13 11:04:14 UTC ---
Created attachment 26648
  --> http://gcc.gnu.org/bugzilla/attachment.cgi?id=26648
gcc_4.7_build.log.gz

New failed build log.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (3 preceding siblings ...)
  2012-02-13 11:04 ` manphiz at gmail dot com
@ 2012-02-13 11:13 ` rguenth at gcc dot gnu.org
  2012-02-13 11:16 ` manphiz at gmail dot com
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-02-13 11:13 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |x86_64-apple-darwin10
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2012-02-13
     Ever Confirmed|0                           |1

--- Comment #5 from Richard Guenther <rguenth at gcc dot gnu.org> 2012-02-13 11:12:48 UTC ---
Please specify the Xcode version you are using or alternatively what host
compiler you use.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (4 preceding siblings ...)
  2012-02-13 11:13 ` rguenth at gcc dot gnu.org
@ 2012-02-13 11:16 ` manphiz at gmail dot com
  2012-02-13 11:18 ` redi at gcc dot gnu.org
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13 11:16 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Xiyue Deng <manphiz at gmail dot com> 2012-02-13 11:15:20 UTC ---
(In reply to comment #5)
> Please specify the Xcode version you are using or alternatively what host
> compiler you use.

I'm using Xcode 3.2.6. GCC configuration:

$ gcc -v
Using built-in specs.
Target: i686-apple-darwin10
Configured with: /var/tmp/gcc/gcc-5666.3~6/src/configure --disable-checking
--enable-werror --prefix=/usr --mandir=/share/man
--enable-languages=c,objc,c++,obj-c++
--program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib
--build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10-
--host=x86_64-apple-darwin10 --target=i686-apple-darwin10
--with-gxx-include-dir=/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Apple Inc. build 5666) (dot 3)


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (5 preceding siblings ...)
  2012-02-13 11:16 ` manphiz at gmail dot com
@ 2012-02-13 11:18 ` redi at gcc dot gnu.org
  2012-02-13 11:23 ` manphiz at gmail dot com
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: redi at gcc dot gnu.org @ 2012-02-13 11:18 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-02-13 11:17:33 UTC ---
(In reply to comment #3)
>     --enable-concept-checks \

You probably don't want this, some of the concept checks are incompatible with
C++11, you shouldn't enable them at configure time, you can still use them
later with -D_GLIBCXX_CONCEPT_CHECKS

>     --enable-decimal-float \
>     --enable-fully-dynamic-string \
>     --enable-libstdcxx-debug \
>     --enable-libstdcxx-time \

This implies you want to use C++11, so you probably don't want to permanently
enable concept checks.


>     --enable-multilib \
>     --enable-plugin \
>     --enable-lto \

If your build fails it's usually a good idea to try *removing* options to find
the smallest set that can reproduce the bug, instead you're adding more
options.

>     --enable-static \
>     --enable-shared \
>     --enable-threads \

These are redundant, you're explicitly setting default behaviour.

>     --enable-version-specific-runtime-libs

This is broken on x86_64 multilib

I don't think these are the cause of your problem, I just think you'll find it
easier to identify the real problem if you keep it simple instead of adding
loads of unnecessary complication.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (6 preceding siblings ...)
  2012-02-13 11:18 ` redi at gcc dot gnu.org
@ 2012-02-13 11:23 ` manphiz at gmail dot com
  2012-02-13 11:45 ` redi at gcc dot gnu.org
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13 11:23 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #8 from Xiyue Deng <manphiz at gmail dot com> 2012-02-13 11:23:05 UTC ---
(In reply to comment #7)
> (In reply to comment #3)
> >     --enable-concept-checks \
> 
> You probably don't want this, some of the concept checks are incompatible with
> C++11, you shouldn't enable them at configure time, you can still use them
> later with -D_GLIBCXX_CONCEPT_CHECKS
> 
> >     --enable-decimal-float \
> >     --enable-fully-dynamic-string \
> >     --enable-libstdcxx-debug \
> >     --enable-libstdcxx-time \
> 
> This implies you want to use C++11, so you probably don't want to permanently
> enable concept checks.
> 
> 
> >     --enable-multilib \
> >     --enable-plugin \
> >     --enable-lto \
> 
> If your build fails it's usually a good idea to try *removing* options to find
> the smallest set that can reproduce the bug, instead you're adding more
> options.
> 
> >     --enable-static \
> >     --enable-shared \
> >     --enable-threads \
> 
> These are redundant, you're explicitly setting default behaviour.
> 
> >     --enable-version-specific-runtime-libs
> 
> This is broken on x86_64 multilib
> 
> I don't think these are the cause of your problem, I just think you'll find it
> easier to identify the real problem if you keep it simple instead of adding
> loads of unnecessary complication.

Thanks for the detailed explanation for these options. I'll tweak with them and
report back.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (7 preceding siblings ...)
  2012-02-13 11:23 ` manphiz at gmail dot com
@ 2012-02-13 11:45 ` redi at gcc dot gnu.org
  2012-02-13 11:48 ` manphiz at gmail dot com
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: redi at gcc dot gnu.org @ 2012-02-13 11:45 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #9 from Jonathan Wakely <redi at gcc dot gnu.org> 2012-02-13 11:44:57 UTC ---
(In reply to comment #6)
> I'm using Xcode 3.2.6. GCC configuration:
> 
> $ gcc -v
> Using built-in specs.
> Target: i686-apple-darwin10

Could the problem be that you don't have an assembler that supports 64-bit?


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (8 preceding siblings ...)
  2012-02-13 11:45 ` redi at gcc dot gnu.org
@ 2012-02-13 11:48 ` manphiz at gmail dot com
  2012-02-13 13:09 ` dominiq at lps dot ens.fr
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13 11:48 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #10 from Xiyue Deng <manphiz at gmail dot com> 2012-02-13 11:48:36 UTC ---
(In reply to comment #9)
> (In reply to comment #6)
> > I'm using Xcode 3.2.6. GCC configuration:
> > 
> > $ gcc -v
> > Using built-in specs.
> > Target: i686-apple-darwin10
> 
> Could the problem be that you don't have an assembler that supports 64-bit?

It's a Mid-2009 macbook pro (MacBookPro5,5) that preinstalled with Snow
Leopard. The only difference is that it used to boot with 32-bit kernel and now
I enabled 64-bit kernel by hand. I'm not sure but I guess it should support
64-bit stuff.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (9 preceding siblings ...)
  2012-02-13 11:48 ` manphiz at gmail dot com
@ 2012-02-13 13:09 ` dominiq at lps dot ens.fr
  2012-02-13 18:02 ` manphiz at gmail dot com
  2014-11-08 18:25 ` [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X with option "--enable-libstdcxx-debug" fxcoudert at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: dominiq at lps dot ens.fr @ 2012-02-13 13:09 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #11 from Dominique d'Humieres <dominiq at lps dot ens.fr> 2012-02-13 13:09:26 UTC ---
> Could the problem be that you don't have an assembler that supports 64-bit?

What does return '/usr/libexec/gcc/darwin/x86_64/as -v' (after it you need to
interupt as with ctrl-C)? For me it gives

Apple Inc version cctools-795~45, GNU assembler version 1.38

I configure with

Configured with: ../work/configure --prefix=/opt/gcc/gcc4.7w
--enable-languages=c,c++,fortran,objc,obj-c++,java,ada,lto --with-gmp=/opt/mp
--with-system-zlib --with-cloog=/opt/mp --enable-cloog-backend=isl --enable-lto

and it works!-)


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X.
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (10 preceding siblings ...)
  2012-02-13 13:09 ` dominiq at lps dot ens.fr
@ 2012-02-13 18:02 ` manphiz at gmail dot com
  2014-11-08 18:25 ` [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X with option "--enable-libstdcxx-debug" fxcoudert at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: manphiz at gmail dot com @ 2012-02-13 18:02 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #12 from Xiyue Deng <manphiz at gmail dot com> 2012-02-13 18:01:42 UTC ---
(In reply to comment #11)
> > Could the problem be that you don't have an assembler that supports 64-bit?
> 
> What does return '/usr/libexec/gcc/darwin/x86_64/as -v' (after it you need to
> interupt as with ctrl-C)? For me it gives
> 
> Apple Inc version cctools-795~45, GNU assembler version 1.38
> 
> I configure with
> 
> Configured with: ../work/configure --prefix=/opt/gcc/gcc4.7w
> --enable-languages=c,c++,fortran,objc,obj-c++,java,ada,lto --with-gmp=/opt/mp
> --with-system-zlib --with-cloog=/opt/mp --enable-cloog-backend=isl --enable-lto
> 
> and it works!-)

The assembler here reports the same:

$ /usr/libexec/gcc/darwin/x86_64/as -v
Apple Inc version cctools-795~45, GNU assembler version 1.38
^CInterrupted by signal 2

And after some checking I found that by disabling "--enable-libstdcxx-debug"
the compile process passed the current error, but failed later right after
comparing stage 2 and 3:

...
Comparing stages 2 and 3
warning: gcc/cc1-checksum.o differs
warning: gcc/cc1obj-checksum.o differs
warning: gcc/cc1objplus-checksum.o differs
warning: gcc/cc1plus-checksum.o differs
Comparison successful.
if false; then \
      rm -rf stage2-*; \
      echo timestamp >  stage2-lean; \
    fi
mkdir ./fixincludes
Configuring in ./fixincludes
configure: creating cache ./config.cache
checking build system type... x86_64-apple-darwin10.8.0
checking host system type... x86_64-apple-darwin10.8.0
checking target system type... x86_64-apple-darwin10.8.0
checking for x86_64-apple-darwin10.8.0-gcc... /tmp/gcc-build/./gcc/xgcc
-B/tmp/gcc-build/./gcc/ -B/usr/local/x86_64-apple-darwin10.8.0/bin/
-B/usr/local/x86_64-apple-darwin10.8.0/lib/ -isystem
/usr/local/x86_64-apple-darwin10.8.0/include -isystem
/usr/local/x86_64-apple-darwin10.8.0/sys-include   
checking for C compiler default output file name... 
configure: error: in `/tmp/gcc-build/fixincludes':
configure: error: C compiler cannot create executables
See `config.log' for more details.
make[1]: *** [configure-fixincludes] Error 1
make: *** [all] Error 2


And config.log shows:

configure:3610: checking for C compiler default output file name
configure:3632: /tmp/gcc-build/./gcc/xgcc -B/tmp/gcc-build/./gcc/
-B/usr/local/x86_64-apple-darwin10.8.0/bin/
-B/usr/local/x86_64-apple-darwin10.8.0/lib/ -isystem
/usr/local/x86_64-apple-darwin10.8.0/include -isystem
/usr/local/x86_64-apple-darwin10.8.0/sys-include    -g -O2    conftest.c  >&5
dsymutil(14796) malloc: *** error for object 0x10014a7c0: pointer being freed
was not allocated
*** set a breakpoint in malloc_error_break to debug
collect2: error: dsymutil terminated with signal 6 [Abort trap]
configure:3636: $? = 1
configure:3673: result: 
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "fixincludes"
| #define PACKAGE_TARNAME "fixincludes"
| #define PACKAGE_VERSION " "
| #define PACKAGE_STRING "fixincludes  "
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
|   ;
|   return 0;
| }
configure:3679: error: in `/tmp/gcc-build/fixincludes':
configure:3683: error: C compiler cannot create executables
See `config.log' for more details.

I guess this may be related to "--enable-fully-dynamic-string". But it looks
like a difference issue[1][2].

[1] http://trac.macports.org/ticket/27237
[2] http://trac.macports.org/ticket/31171

Anyway, "--enable-libstdcxx-debug" causing bootstrap failure should be a
problem.


^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X with option "--enable-libstdcxx-debug".
  2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
                   ` (11 preceding siblings ...)
  2012-02-13 18:02 ` manphiz at gmail dot com
@ 2014-11-08 18:25 ` fxcoudert at gcc dot gnu.org
  12 siblings, 0 replies; 14+ messages in thread
From: fxcoudert at gcc dot gnu.org @ 2014-11-08 18:25 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=52226

Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |RESOLVED
                 CC|                            |fxcoudert at gcc dot gnu.org
         Resolution|---                         |FIXED

--- Comment #13 from Francois-Xavier Coudert <fxcoudert at gcc dot gnu.org> ---
I've just checked: current trunk bootstraps fine with --enable-libstdcxx-debug,
so this probably got fixed at some point. If you still see it, with a currently
supported version of GCC, please feel free to reopen the bug report and give
the necessary details.


^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2014-11-08 18:25 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-13  9:23 [Bug bootstrap/52226] New: Trunk fails to bootstrap on Mac OS X manphiz at gmail dot com
2012-02-13  9:24 ` [Bug bootstrap/52226] " manphiz at gmail dot com
2012-02-13 10:09 ` redi at gcc dot gnu.org
2012-02-13 11:03 ` manphiz at gmail dot com
2012-02-13 11:04 ` manphiz at gmail dot com
2012-02-13 11:13 ` rguenth at gcc dot gnu.org
2012-02-13 11:16 ` manphiz at gmail dot com
2012-02-13 11:18 ` redi at gcc dot gnu.org
2012-02-13 11:23 ` manphiz at gmail dot com
2012-02-13 11:45 ` redi at gcc dot gnu.org
2012-02-13 11:48 ` manphiz at gmail dot com
2012-02-13 13:09 ` dominiq at lps dot ens.fr
2012-02-13 18:02 ` manphiz at gmail dot com
2014-11-08 18:25 ` [Bug bootstrap/52226] Trunk fails to bootstrap on Mac OS X with option "--enable-libstdcxx-debug" fxcoudert at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).