public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* RE: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
@ 2002-04-30 17:19 Billinghurst, David (CRTS)
  0 siblings, 0 replies; 13+ messages in thread
From: Billinghurst, David (CRTS) @ 2002-04-30 17:19 UTC (permalink / raw)
  To: Franz Sirl, Reichelt, gcc

I logged this as bootstrap/6514: 3.1 irix6.5 bootstrap failure in libstdc++-v3/src/misc-inst.cc 

fails with for CVS of Mon Apr 29 02:08:32 2002 UTC
Last successful bootstrap was Sun Apr 28 03:12:09 2002 UTC


-----Original Message-----
From: Franz Sirl [mailto:Franz.Sirl-kernel@lauterbach.com]
Sent: Wednesday, 1 May 2002 4:22 
To: Reichelt; gcc@gcc.gnu.org
Subject: Re: Bootstrap error with gcc-20020429 snapshot on
mips-sgi-irix6.5


On Tuesday 30 April 2002 17:29, Reichelt wrote:
> Hi,
>
> unfortunately gcc-20020429 won't build on mips-sgi-irix6.5 using
> SGI's native compiler :-(
>
> /gcc-src/build/gcc/xgcc -shared-libgcc -B/gcc-src/build/gcc/ -nostdinc++
> -L/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src
> -L/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src/.libs
> -B/gcc-recent/gcc-20020429/mips-sgi-irix6.5/bin/
> -B/gcc-recent/gcc-20020429/mips-sgi-irix6.5/lib/ -isystem
> /gcc-recent/gcc-20020429/mips-sgi-irix6.5/include -nostdinc++
> -I/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/include/mips-sgi-irix6.5
> -I/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/include
> -I../../../../gcc-20020429/libstdc++-v3/libsupc++
> -I../../../../gcc-20020429/libstdc++-v3/libmath -g -O2
> -fno-implicit-templates -Wall -Wno-format -W -Wwrite-strings -Winline
> -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -c
> ../../../../gcc-20020429/libstdc++-v3/src/misc-inst.cc   -DPIC -o
> .libs/misc-inst.o as: Error: /var/tmp//cc95e5he.s, line 48691: cannot
> redeclare defined symbol as a weak symbol:
> _ZNSt15basic_streambufIcSt11char_traitsIcEE13_S_pback_sizeE .weakext
> _ZNSt15basic_streambufIcSt11char_traitsIcEE13_S_pback_sizeE gmake[4]: ***
> [misc-inst.lo] Error 1
> gmake[4]: Leaving directory
> `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src' gmake[3]: ***
> [all-recursive] Error 1
> gmake[3]: Leaving directory `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3'
> gmake[2]: *** [all-recursive-am] Error 2
> gmake[2]: Leaving directory `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3'
> gmake[1]: *** [all-target-libstdc++-v3] Error 2
> gmake[1]: Leaving directory `/gcc-src/build'
> gmake: *** [bootstrap-lean] Error 2

Probably related to my patch to merge the weak declarations better. Can you 
run (if you have tcl/expect/dejagnu installed)

	make check-gcc RUNTESTFLAGS="dg.exp=weak-*.c"

in your builddir? Or someone else on this platforms? Please post the resulting 
gcc.log then.

Franz.

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01 10:08                 ` Richard Henderson
@ 2002-05-01 10:22                   ` Mark Mitchell
  0 siblings, 0 replies; 13+ messages in thread
From: Mark Mitchell @ 2002-05-01 10:22 UTC (permalink / raw)
  To: Richard Henderson, Franz Sirl
  Cc: Jason Merrill, Alexandre Oliva, Reichelt, gcc



--On Wednesday, May 01, 2002 10:08:04 AM -0700 Richard Henderson 
<rth@redhat.com> wrote:

> On Wed, May 01, 2002 at 07:05:26PM +0200, Franz Sirl wrote:
>>        for (p = &weak_decls; (t = *p) ; p = &TREE_CHAIN (t))
>> +	if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
>> +	  *p = TREE_CHAIN (t);
>
> This is wrong for iterating over the whole list.  You want
>
> 	for (p = &weak_decls; (t = *p) ;)
> 	  if (...)
> 	    *p = TREE_CHAIN (t);
> 	  else
> 	    p = &TREE_CHAIN (t);

Yup.  This version is OK, for branch and mainline.

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01 10:04               ` Franz Sirl
@ 2002-05-01 10:08                 ` Richard Henderson
  2002-05-01 10:22                   ` Mark Mitchell
  0 siblings, 1 reply; 13+ messages in thread
From: Richard Henderson @ 2002-05-01 10:08 UTC (permalink / raw)
  To: Franz Sirl; +Cc: Mark Mitchell, Jason Merrill, Alexandre Oliva, Reichelt, gcc

On Wed, May 01, 2002 at 07:05:26PM +0200, Franz Sirl wrote:
>        for (p = &weak_decls; (t = *p) ; p = &TREE_CHAIN (t))
> +	if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
> +	  *p = TREE_CHAIN (t);

This is wrong for iterating over the whole list.  You want

	for (p = &weak_decls; (t = *p) ;)
	  if (...)
	    *p = TREE_CHAIN (t);
	  else
	    p = &TREE_CHAIN (t);


r~

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01  9:58             ` Mark Mitchell
@ 2002-05-01 10:04               ` Franz Sirl
  2002-05-01 10:08                 ` Richard Henderson
  0 siblings, 1 reply; 13+ messages in thread
From: Franz Sirl @ 2002-05-01 10:04 UTC (permalink / raw)
  To: Mark Mitchell, Jason Merrill; +Cc: Alexandre Oliva, Reichelt, gcc

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

On Wednesday 01 May 2002 18:55, Mark Mitchell wrote:
> --On Wednesday, May 01, 2002 03:49:11 PM +0100 Jason Merrill
>
> <jason@redhat.com> wrote:
> > I can confirm that this patch fixes compilation of misc-inst.cc on
> > irix6.5.
>
> Franz, please send me the latest patch so that I can approve it.  Thanks!

Oops, here it is. Bootstrapped and regtested on x86-linux-gnu.

Franz.


        PR bootstrap/6514
        * varasm.c (globalize_decl): Compare DECL_ASSEMBLER_NAME to check
        for duplicates. Always loop over whole list.



[-- Attachment #2: gcc-weaksym-8a.patch --]
[-- Type: text/plain, Size: 728 bytes --]

Index: gcc/varasm.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/varasm.c,v
retrieving revision 1.250.2.8
diff -u -p -r1.250.2.8 varasm.c
--- gcc/varasm.c	28 Apr 2002 18:43:53 -0000	1.250.2.8
+++ gcc/varasm.c	1 May 2002 13:27:13 -0000
@@ -5094,11 +5094,8 @@ globalize_decl (decl)
       /* Remove this function from the pending weak list so that
 	 we do not emit multiple .weak directives for it.  */
       for (p = &weak_decls; (t = *p) ; p = &TREE_CHAIN (t))
-	if (TREE_VALUE (t) == decl)
-	  {
-	    *p = TREE_CHAIN (t);
-	    break;
-	  }
+	if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
+	  *p = TREE_CHAIN (t);
       return;
     }
 #endif

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01  7:49           ` Jason Merrill
@ 2002-05-01  9:58             ` Mark Mitchell
  2002-05-01 10:04               ` Franz Sirl
  0 siblings, 1 reply; 13+ messages in thread
From: Mark Mitchell @ 2002-05-01  9:58 UTC (permalink / raw)
  To: Jason Merrill, Franz Sirl; +Cc: Alexandre Oliva, Reichelt, gcc



--On Wednesday, May 01, 2002 03:49:11 PM +0100 Jason Merrill 
<jason@redhat.com> wrote:

> I can confirm that this patch fixes compilation of misc-inst.cc on
> irix6.5.

Franz, please send me the latest patch so that I can approve it.  Thanks!

--
Mark Mitchell                   mark@codesourcery.com
CodeSourcery, LLC               http://www.codesourcery.com

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01  5:43         ` Franz Sirl
  2002-05-01  6:28           ` Jason Merrill
@ 2002-05-01  7:49           ` Jason Merrill
  2002-05-01  9:58             ` Mark Mitchell
  1 sibling, 1 reply; 13+ messages in thread
From: Jason Merrill @ 2002-05-01  7:49 UTC (permalink / raw)
  To: Franz Sirl; +Cc: Alexandre Oliva, Reichelt, gcc, Mark Mitchell

I can confirm that this patch fixes compilation of misc-inst.cc on irix6.5.

Jason

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01  5:43         ` Franz Sirl
@ 2002-05-01  6:28           ` Jason Merrill
  2002-05-01  7:49           ` Jason Merrill
  1 sibling, 0 replies; 13+ messages in thread
From: Jason Merrill @ 2002-05-01  6:28 UTC (permalink / raw)
  To: Franz Sirl; +Cc: Alexandre Oliva, Reichelt, gcc, Mark Mitchell

>>>>> "Franz" == Franz Sirl <Franz.Sirl-kernel@lauterbach.com> writes:

> So just 

>       if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
>          *p = TREE_CHAIN (t);

> is enough?

Yep.

Jason

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01  5:07       ` Jason Merrill
@ 2002-05-01  5:43         ` Franz Sirl
  2002-05-01  6:28           ` Jason Merrill
  2002-05-01  7:49           ` Jason Merrill
  0 siblings, 2 replies; 13+ messages in thread
From: Franz Sirl @ 2002-05-01  5:43 UTC (permalink / raw)
  To: Jason Merrill; +Cc: Alexandre Oliva, Reichelt, gcc, Mark Mitchell

On Wednesday 01 May 2002 14:07, Jason Merrill wrote:
> >>>>> "Franz" == Franz Sirl <Franz.Sirl-kernel@lauterbach.com> writes:
> >
> > +	if (strcmp (dname,
> > +		    IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (TREE_VALUE (t))))
> > +	    == 0)
> > +	  *p = TREE_CHAIN (t);
>
> Why not just compare against the DECL_ASSEMBLER_NAME of the decl?

So just 

      if (DECL_ASSEMBLER_NAME (decl) == DECL_ASSEMBLER_NAME (TREE_VALUE (t)))
         *p = TREE_CHAIN (t);

is enough? It does what I want in this case, I just didn't know that duplicate 
decls always have the same DECL_ASSEMBLER_NAME. I'm happy with that change 
too, as long as it prevents duplicate .weak* directives to be emitted.

I restarted the bootstrap with this modification.

BTW, anyone knows why the libstdc++ testsuite has regressions now?

FAIL: 21_strings/inserters_extractors.cc execution test
FAIL: 26_numerics/complex_inserters_extractors.cc execution test
FAIL: 27_io/istream_extractor_arith.cc execution test
FAIL: 27_io/istream_sentry.cc execution test
FAIL: 27_io/istringstream_members.cc execution test
FAIL: 27_io/ostream_inserter_arith.cc execution test
FAIL: 27_io/stringstream_members.cc execution test

I see them on both powerpc-linux-gnu and x86-linux-gnu.

Franz.

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-05-01  5:04     ` Franz Sirl
@ 2002-05-01  5:07       ` Jason Merrill
  2002-05-01  5:43         ` Franz Sirl
  0 siblings, 1 reply; 13+ messages in thread
From: Jason Merrill @ 2002-05-01  5:07 UTC (permalink / raw)
  To: Franz Sirl; +Cc: Alexandre Oliva, Reichelt, gcc, Mark Mitchell

>>>>> "Franz" == Franz Sirl <Franz.Sirl-kernel@lauterbach.com> writes:

> +	if (strcmp (dname,
> +		    IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (TREE_VALUE (t))))
> +	    == 0)
> +	  *p = TREE_CHAIN (t);

Why not just compare against the DECL_ASSEMBLER_NAME of the decl?

Jason

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-04-30 19:52   ` Alexandre Oliva
@ 2002-05-01  5:04     ` Franz Sirl
  2002-05-01  5:07       ` Jason Merrill
  0 siblings, 1 reply; 13+ messages in thread
From: Franz Sirl @ 2002-05-01  5:04 UTC (permalink / raw)
  To: Alexandre Oliva; +Cc: Reichelt, gcc, Jason Merrill, Mark Mitchell

[-- Attachment #1: Type: text/plain, Size: 1524 bytes --]

On Wednesday 01 May 2002 03:59, Alexandre Oliva wrote:
> On Apr 30, 2002, Franz Sirl <Franz.Sirl-kernel@lauterbach.com> wrote:
> > Probably related to my patch to merge the weak declarations better. Can
> > you run (if you have tcl/expect/dejagnu installed)
> >
> > 	make check-gcc RUNTESTFLAGS="dg.exp=weak-*.c"
> >
> > in your builddir? Or someone else on this platforms? Please post the
> > resulting gcc.log then.
>
> Here's the only failure I got from weak-*.c tests:
>
> output is:
> /home/aoliva/src/tool/egcs/gcc/testsuite/gcc.dg/weak-5.c:42: warning: weak
> declaration of `vfoo1c' after first use results in unspecified behavior
> /home/aoliva/src/tool/egcs/gcc/testsuite/gcc.dg/weak-5.c:114: warning: only
> weak aliases are supported in this configuration
>
> PASS: gcc.dg/weak-5.c weak declaration (test for warnings, line 42)
> FAIL: gcc.dg/weak-5.c (test for excess errors)
> Excess errors:
> /home/aoliva/src/tool/egcs/gcc/testsuite/gcc.dg/weak-5.c:114: warning: only
> weak aliases are supported in this configuration

Can you try if the attached patch fixes it for you?

Now that more stuff is put on the weak_decls list, the check for duplicates 
needs to be better.

Running a bootstrap now.

BTW, wondering about this assembler error, does this symbol end up as weak in 
misc-inst.o? On linux readelf tells me:

   809: 00000000     4 OBJECT  WEAK   DEFAULT 1410 
_ZNSt15basic_streambufIcSt11char_traitsIcEE13_S_pback_sizeE

Franz.

	* varasm.c (globalize_decl): Compare names to check for duplicates.


[-- Attachment #2: gcc-weaksym-8.patch --]
[-- Type: text/plain, Size: 1037 bytes --]

Index: gcc/varasm.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/varasm.c,v
retrieving revision 1.250.2.8
diff -u -p -r1.250.2.8 varasm.c
--- gcc/varasm.c	28 Apr 2002 18:43:53 -0000	1.250.2.8
+++ gcc/varasm.c	1 May 2002 11:55:33 -0000
@@ -5079,6 +5079,7 @@ globalize_decl (decl)
      tree decl;
 {
   const char *name = XSTR (XEXP (DECL_RTL (decl), 0), 0);
+  const char *dname = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
 
 #if defined (ASM_WEAKEN_LABEL) || defined (ASM_WEAKEN_DECL)
   if (DECL_WEAK (decl))
@@ -5094,11 +5095,10 @@ globalize_decl (decl)
       /* Remove this function from the pending weak list so that
 	 we do not emit multiple .weak directives for it.  */
       for (p = &weak_decls; (t = *p) ; p = &TREE_CHAIN (t))
-	if (TREE_VALUE (t) == decl)
-	  {
-	    *p = TREE_CHAIN (t);
-	    break;
-	  }
+	if (strcmp (dname,
+		    IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (TREE_VALUE (t))))
+	    == 0)
+	  *p = TREE_CHAIN (t);
       return;
     }
 #endif

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-04-30 11:26 ` Franz Sirl
@ 2002-04-30 19:52   ` Alexandre Oliva
  2002-05-01  5:04     ` Franz Sirl
  0 siblings, 1 reply; 13+ messages in thread
From: Alexandre Oliva @ 2002-04-30 19:52 UTC (permalink / raw)
  To: Franz Sirl; +Cc: Reichelt, gcc

On Apr 30, 2002, Franz Sirl <Franz.Sirl-kernel@lauterbach.com> wrote:

> Probably related to my patch to merge the weak declarations better. Can you 
> run (if you have tcl/expect/dejagnu installed)

> 	make check-gcc RUNTESTFLAGS="dg.exp=weak-*.c"

> in your builddir? Or someone else on this platforms? Please post the resulting 
> gcc.log then.

Here's the only failure I got from weak-*.c tests:

output is:
/home/aoliva/src/tool/egcs/gcc/testsuite/gcc.dg/weak-5.c:42: warning: weak declaration of `vfoo1c' after first use results in unspecified behavior
/home/aoliva/src/tool/egcs/gcc/testsuite/gcc.dg/weak-5.c:114: warning: only weak aliases are supported in this configuration

PASS: gcc.dg/weak-5.c weak declaration (test for warnings, line 42)
FAIL: gcc.dg/weak-5.c (test for excess errors)
Excess errors:
/home/aoliva/src/tool/egcs/gcc/testsuite/gcc.dg/weak-5.c:114: warning: only weak aliases are supported in this configuration

All other tests passed.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist                Professional serial bug killer

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

* Re: Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
  2002-04-30  8:22 Reichelt
@ 2002-04-30 11:26 ` Franz Sirl
  2002-04-30 19:52   ` Alexandre Oliva
  0 siblings, 1 reply; 13+ messages in thread
From: Franz Sirl @ 2002-04-30 11:26 UTC (permalink / raw)
  To: Reichelt, gcc

On Tuesday 30 April 2002 17:29, Reichelt wrote:
> Hi,
>
> unfortunately gcc-20020429 won't build on mips-sgi-irix6.5 using
> SGI's native compiler :-(
>
> /gcc-src/build/gcc/xgcc -shared-libgcc -B/gcc-src/build/gcc/ -nostdinc++
> -L/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src
> -L/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src/.libs
> -B/gcc-recent/gcc-20020429/mips-sgi-irix6.5/bin/
> -B/gcc-recent/gcc-20020429/mips-sgi-irix6.5/lib/ -isystem
> /gcc-recent/gcc-20020429/mips-sgi-irix6.5/include -nostdinc++
> -I/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/include/mips-sgi-irix6.5
> -I/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/include
> -I../../../../gcc-20020429/libstdc++-v3/libsupc++
> -I../../../../gcc-20020429/libstdc++-v3/libmath -g -O2
> -fno-implicit-templates -Wall -Wno-format -W -Wwrite-strings -Winline
> -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -c
> ../../../../gcc-20020429/libstdc++-v3/src/misc-inst.cc   -DPIC -o
> .libs/misc-inst.o as: Error: /var/tmp//cc95e5he.s, line 48691: cannot
> redeclare defined symbol as a weak symbol:
> _ZNSt15basic_streambufIcSt11char_traitsIcEE13_S_pback_sizeE .weakext
> _ZNSt15basic_streambufIcSt11char_traitsIcEE13_S_pback_sizeE gmake[4]: ***
> [misc-inst.lo] Error 1
> gmake[4]: Leaving directory
> `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src' gmake[3]: ***
> [all-recursive] Error 1
> gmake[3]: Leaving directory `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3'
> gmake[2]: *** [all-recursive-am] Error 2
> gmake[2]: Leaving directory `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3'
> gmake[1]: *** [all-target-libstdc++-v3] Error 2
> gmake[1]: Leaving directory `/gcc-src/build'
> gmake: *** [bootstrap-lean] Error 2

Probably related to my patch to merge the weak declarations better. Can you 
run (if you have tcl/expect/dejagnu installed)

	make check-gcc RUNTESTFLAGS="dg.exp=weak-*.c"

in your builddir? Or someone else on this platforms? Please post the resulting 
gcc.log then.

Franz.

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

* Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5
@ 2002-04-30  8:22 Reichelt
  2002-04-30 11:26 ` Franz Sirl
  0 siblings, 1 reply; 13+ messages in thread
From: Reichelt @ 2002-04-30  8:22 UTC (permalink / raw)
  To: gcc

Hi,

unfortunately gcc-20020429 won't build on mips-sgi-irix6.5 using
SGI's native compiler :-(

/gcc-src/build/gcc/xgcc -shared-libgcc -B/gcc-src/build/gcc/ -nostdinc++ -L/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src -L/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src/.libs -B/gcc-recent/gcc-20020429/mips-sgi-irix6.5/bin/ -B/gcc-recent/gcc-20020429/mips-sgi-irix6.5/lib/ -isystem /gcc-recent/gcc-20020429/mips-sgi-irix6.5/include -nostdinc++ -I/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/include/mips-sgi-irix6.5 -I/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/include -I../../../../gcc-20020429/libstdc++-v3/libsupc++ -I../../../../gcc-20020429/libstdc++-v3/libmath -g -O2 -fno-implicit-templates -Wall -Wno-format -W -Wwrite-strings -Winline -fdiagnostics-show-location=once -ffunction-sections -fdata-sections -g -c ../../../../gcc-20020429/libstdc++-v3/src/misc-inst.cc   -DPIC -o .libs/misc-inst.o
as: Error: /var/tmp//cc95e5he.s, line 48691: cannot redeclare defined symbol as a weak symbol: _ZNSt15basic_streambufIcSt11char_traitsIcEE13_S_pback_sizeE
      .weakext _ZNSt15basic_streambufIcSt11char_traitsIcEE13_S_pback_sizeE
gmake[4]: *** [misc-inst.lo] Error 1
gmake[4]: Leaving directory `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3/src'
gmake[3]: *** [all-recursive] Error 1
gmake[3]: Leaving directory `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3'
gmake[2]: *** [all-recursive-am] Error 2
gmake[2]: Leaving directory `/gcc-src/build/mips-sgi-irix6.5/libstdc++-v3'
gmake[1]: *** [all-target-libstdc++-v3] Error 2
gmake[1]: Leaving directory `/gcc-src/build'
gmake: *** [bootstrap-lean] Error 2

Greetings,
Volker Reichelt


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

end of thread, other threads:[~2002-05-01 17:22 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-04-30 17:19 Bootstrap error with gcc-20020429 snapshot on mips-sgi-irix6.5 Billinghurst, David (CRTS)
  -- strict thread matches above, loose matches on Subject: below --
2002-04-30  8:22 Reichelt
2002-04-30 11:26 ` Franz Sirl
2002-04-30 19:52   ` Alexandre Oliva
2002-05-01  5:04     ` Franz Sirl
2002-05-01  5:07       ` Jason Merrill
2002-05-01  5:43         ` Franz Sirl
2002-05-01  6:28           ` Jason Merrill
2002-05-01  7:49           ` Jason Merrill
2002-05-01  9:58             ` Mark Mitchell
2002-05-01 10:04               ` Franz Sirl
2002-05-01 10:08                 ` Richard Henderson
2002-05-01 10:22                   ` Mark Mitchell

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).