public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s
@ 2004-03-23 17:50 hjl at lucon dot org
  2004-03-23 18:28 ` [Bug libstdc++/14697] " pcarlini at suse dot de
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-03-23 17:50 UTC (permalink / raw)
  To: gcc-bugs

When building 32bit libstdc++, I got

checking for shared libgcc... no
configure: WARNING: === You have requested some kind of symbol versioning, but
configure: WARNING: === either you are not using a supported linker, or you are
configure: WARNING: === not building a shared libgcc_s (which is required).
configure: WARNING: === Symbol versioning will be disabled.
configure: versioning on shared library symbols is no 

It is caused by
configure:63426: checking for shared libgcc configure:63452:
/export/build/gnu/gcc-3.4/build-x86_64-linux/gcc/xgcc
-B/export/build/gnu/gcc-3.4/build-x86_64-linux/gcc/
-B/usr/gcc-3.4/x86_64-unknown-linux-gnu/bin/
-B/usr/gcc-3.4/x86_64-unknown-linux-gnu/lib/ -isystem
/usr/gcc-3.4/x86_64-unknown-linux-gnu/include -isystem
/usr/gcc-3.4/x86_64-unknown-linux-gnu/sys-include  -m32 -o conftest  -lgcc_s -O2
-g -O2  conftest.c -lm  >&5 /usr/local/bin/ld: skipping incompatible
/export/build/gnu/gcc-3.4/build-x86_64-linux/gcc/libgcc_s.so when searching for
-lgcc_s /usr/local/bin/ld: cannot find -lgcc_s
collect2: ld returned 1 exit status

-- 
           Summary: libstdc++ couldn't find 32bit libgcc_s
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libstdc++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: hjl at lucon dot org
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
@ 2004-03-23 18:28 ` pcarlini at suse dot de
  2004-03-23 18:33 ` hjl at lucon dot org
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pcarlini at suse dot de @ 2004-03-23 18:28 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-03-23 18:28 -------
Hi. I cannot reproduce this in a normal (multilibed) build (c,c++)
(ld version 2.14.90.0.5 20030722)

How did you configure?

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
  2004-03-23 18:28 ` [Bug libstdc++/14697] " pcarlini at suse dot de
@ 2004-03-23 18:33 ` hjl at lucon dot org
  2004-03-23 18:49 ` hjl at lucon dot org
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-03-23 18:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-03-23 18:33 -------
I used

.../gcc-3.4/gcc/configure \
        x86_64-linux \
        --enable-clocale=gnu --with-system-zlib \
         \
        --enable-shared \
        --enable-threads=posix \
        --enable-haifa \
        --disable-checking \
        --prefix=/usr/gcc-3.4 \
        --with-local-prefix=/usr/local


-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
  2004-03-23 18:28 ` [Bug libstdc++/14697] " pcarlini at suse dot de
  2004-03-23 18:33 ` hjl at lucon dot org
@ 2004-03-23 18:49 ` hjl at lucon dot org
  2004-03-23 18:50 ` pcarlini at suse dot de
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-03-23 18:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-03-23 18:49 -------
In libstdc++-v3/acinclude.m4, there are

# Check to see if libgcc_s exists, indicating that shared libgcc is possible.
if test $enable_symvers != no; then
  AC_MSG_CHECKING([for shared libgcc])
  ac_save_CFLAGS="$CFLAGS"
  CFLAGS=' -lgcc_s'
  AC_TRY_LINK(, [return 0;], glibcxx_shared_libgcc=yes, glibcxx_shared_libgcc=no)
  CFLAGS="$ac_save_CFLAGS"
  AC_MSG_RESULT($glibcxx_shared_libgcc)
fi
                                                                                
It won't work with multilib when the name of the shared libgcc is not
libgcc_s.so. On x86_64, it is libgcc_s_32.so. It should use -shared-libgcc
instead of -lgcc_s.

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (2 preceding siblings ...)
  2004-03-23 18:49 ` hjl at lucon dot org
@ 2004-03-23 18:50 ` pcarlini at suse dot de
  2004-03-23 18:58 ` pcarlini at suse dot de
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pcarlini at suse dot de @ 2004-03-23 18:50 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-03-23 18:50 -------
Possibly, but the fact is, I'm on x86_64 and works!

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (3 preceding siblings ...)
  2004-03-23 18:50 ` pcarlini at suse dot de
@ 2004-03-23 18:58 ` pcarlini at suse dot de
  2004-03-23 19:05 ` hjl at lucon dot org
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pcarlini at suse dot de @ 2004-03-23 18:58 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-03-23 18:58 -------
Indeed, /gcc/*/32/libgcc_s.so.1 !

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (4 preceding siblings ...)
  2004-03-23 18:58 ` pcarlini at suse dot de
@ 2004-03-23 19:05 ` hjl at lucon dot org
  2004-03-23 19:15 ` pcarlini at suse dot de
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-03-23 19:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-03-23 19:05 -------
Linker won't even look at libgcc_s.so.1 when -lgcc_s is passed down to
it. You must have a 32bit libgcc_s.so somewhere else. Could you please
find out where your 32bit libgcc_s.so comes from? It doesn't exist on
my machine. There is only libgcc_s_32.so. You can add -Wl,--verbose to
CFLAGS in libstdc++-v3/configure and config.log should tell you where
your 32bit libgcc_s.so is.

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (5 preceding siblings ...)
  2004-03-23 19:05 ` hjl at lucon dot org
@ 2004-03-23 19:15 ` pcarlini at suse dot de
  2004-03-23 19:22 ` pcarlini at suse dot de
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pcarlini at suse dot de @ 2004-03-23 19:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-03-23 19:15 -------
Ok, that would explain it: in my system I have both a /lib/libgcc_s.so.1
and a /lib64/libgcc_s.so.1

If you are sure about the source of problem (indeed, your explanation makes
perfect sense to me!) and its fix, please go ahead, test the patch and post it! 

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (6 preceding siblings ...)
  2004-03-23 19:15 ` pcarlini at suse dot de
@ 2004-03-23 19:22 ` pcarlini at suse dot de
  2004-03-23 19:37 ` hjl at lucon dot org
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pcarlini at suse dot de @ 2004-03-23 19:22 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pcarlini at suse dot de  2004-03-23 19:22 -------
> Ok, that would explain it: in my system I have both a /lib/libgcc_s.so.1
>and a /lib64/libgcc_s.so.1

... and a /lib64/libgcc_s.so ;)

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (7 preceding siblings ...)
  2004-03-23 19:22 ` pcarlini at suse dot de
@ 2004-03-23 19:37 ` hjl at lucon dot org
  2004-03-23 20:02 ` hjl at lucon dot org
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-03-23 19:37 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-03-23 19:37 -------
I do have /lib/libgcc_s.so.1 and /lib64/libgcc_s.so.1. I just
don't have "the 32bit libgcc_s.so", by which I mean a file called
"libgcc_s.so" which contains 32bit shared libgcc.

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (8 preceding siblings ...)
  2004-03-23 19:37 ` hjl at lucon dot org
@ 2004-03-23 20:02 ` hjl at lucon dot org
  2004-03-24  1:12 ` aoliva at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-03-23 20:02 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-03-23 20:02 -------
Created an attachment (id=5982)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=5982&action=view)
A patch to use -shared-libgcc instead of -lgcc_s


-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (9 preceding siblings ...)
  2004-03-23 20:02 ` hjl at lucon dot org
@ 2004-03-24  1:12 ` aoliva at gcc dot gnu dot org
  2004-03-24 17:45 ` hjl at lucon dot org
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: aoliva at gcc dot gnu dot org @ 2004-03-24  1:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From aoliva at gcc dot gnu dot org  2004-03-24 01:12 -------
-shared-libgcc is a no-op if GCC is configured with --disable-shared, in which
case the test at hand is meant to fail, but will pass, so the patch is incorrect.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2004-03-24 01:12:47
               date|                            |


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (10 preceding siblings ...)
  2004-03-24  1:12 ` aoliva at gcc dot gnu dot org
@ 2004-03-24 17:45 ` hjl at lucon dot org
  2004-03-24 21:17 ` aoliva at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-03-24 17:45 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-03-24 17:45 -------
If gcc is configured with --disable-shared, I don't believe shared libstdc++
will work very well. Symbol versioning will only work with shared library.
There is no poing to check -lgcc_s if gcc is configured with --disable-shared.

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (11 preceding siblings ...)
  2004-03-24 17:45 ` hjl at lucon dot org
@ 2004-03-24 21:17 ` aoliva at gcc dot gnu dot org
  2004-05-14 15:32 ` bkoz at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: aoliva at gcc dot gnu dot org @ 2004-03-24 21:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From aoliva at gcc dot gnu dot org  2004-03-24 21:17 -------
--enable/disable-shared is not all-or-nothing.  You can pass a list of packages
to --enable-shared for which you want shared libraries to be enabled. 
--enable-shared=libgcc will get you a shared libgcc, but static libstdc++. 
--enable-shared=libstdc++ will get you a shared libstdc++ while building static
libgcc only.

One of the points of the test at hand is to tell whether libgcc was built as a
shared library.  If it wasn't, enabling symbol versioning would be wrong, since
it doesn't have symbol versions.  After your patch, the test would pass instead
of failing, since gcc will be a do-nothing.  Therefore, your patch breaks the
test.  It's wrong.

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (12 preceding siblings ...)
  2004-03-24 21:17 ` aoliva at gcc dot gnu dot org
@ 2004-05-14 15:32 ` bkoz at gcc dot gnu dot org
  2004-05-19 17:21 ` hjl at lucon dot org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: bkoz at gcc dot gnu dot org @ 2004-05-14 15:32 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From bkoz at gcc dot gnu dot org  2004-05-13 21:50 -------

H.J., what's the status on this? And, just out of curosity, what linux distro
are you using on x86_64?

-benjamin

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (13 preceding siblings ...)
  2004-05-14 15:32 ` bkoz at gcc dot gnu dot org
@ 2004-05-19 17:21 ` hjl at lucon dot org
  2004-07-15 17:38 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: hjl at lucon dot org @ 2004-05-19 17:21 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From hjl at lucon dot org  2004-05-18 23:19 -------
I haven't got the time to work on it. I am running RHEL 3 U2 and Fedora Core 2.

-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (14 preceding siblings ...)
  2004-05-19 17:21 ` hjl at lucon dot org
@ 2004-07-15 17:38 ` cvs-commit at gcc dot gnu dot org
  2004-07-15 17:43 ` cvs-commit at gcc dot gnu dot org
  2004-07-15 19:12 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-07-15 17:38 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-07-15 17:38 -------
Subject: Bug 14697

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	jakub@gcc.gnu.org	2004-07-15 17:38:46

Modified files:
	libstdc++-v3   : ChangeLog acinclude.m4 configure 

Log message:
	PR libstdc++/14697
	* acinclude.m4 (glibcxx_shared_libgcc): Correct
	glibcxx_shared_libgcc test for multilibs.
	* configure: Rebuilt.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&r1=1.2577&r2=1.2578
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/acinclude.m4.diff?cvsroot=gcc&r1=1.293&r2=1.294
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/configure.diff?cvsroot=gcc&r1=1.400&r2=1.401



-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (15 preceding siblings ...)
  2004-07-15 17:38 ` cvs-commit at gcc dot gnu dot org
@ 2004-07-15 17:43 ` cvs-commit at gcc dot gnu dot org
  2004-07-15 19:12 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-07-15 17:43 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-07-15 17:43 -------
Subject: Bug 14697

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-branch
Changes by:	jakub@gcc.gnu.org	2004-07-15 17:43:05

Modified files:
	libstdc++-v3   : ChangeLog acinclude.m4 configure 

Log message:
	PR libstdc++/14697
	* acinclude.m4 (glibcxx_shared_libgcc): Correct
	glibcxx_shared_libgcc test for multilibs.
	* configure: Rebuilt.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.2224.2.143&r2=1.2224.2.144
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/acinclude.m4.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.280.4.5&r2=1.280.4.6
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/libstdc++-v3/configure.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.373.4.16&r2=1.373.4.17



-- 


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


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

* [Bug libstdc++/14697] libstdc++ couldn't find 32bit libgcc_s
  2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
                   ` (16 preceding siblings ...)
  2004-07-15 17:43 ` cvs-commit at gcc dot gnu dot org
@ 2004-07-15 19:12 ` pinskia at gcc dot gnu dot org
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-15 19:12 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-07-15 19:12 -------
Fixed for 3.4.2.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |3.4.2


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


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

end of thread, other threads:[~2004-07-15 19:12 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-03-23 17:50 [Bug libstdc++/14697] New: libstdc++ couldn't find 32bit libgcc_s hjl at lucon dot org
2004-03-23 18:28 ` [Bug libstdc++/14697] " pcarlini at suse dot de
2004-03-23 18:33 ` hjl at lucon dot org
2004-03-23 18:49 ` hjl at lucon dot org
2004-03-23 18:50 ` pcarlini at suse dot de
2004-03-23 18:58 ` pcarlini at suse dot de
2004-03-23 19:05 ` hjl at lucon dot org
2004-03-23 19:15 ` pcarlini at suse dot de
2004-03-23 19:22 ` pcarlini at suse dot de
2004-03-23 19:37 ` hjl at lucon dot org
2004-03-23 20:02 ` hjl at lucon dot org
2004-03-24  1:12 ` aoliva at gcc dot gnu dot org
2004-03-24 17:45 ` hjl at lucon dot org
2004-03-24 21:17 ` aoliva at gcc dot gnu dot org
2004-05-14 15:32 ` bkoz at gcc dot gnu dot org
2004-05-19 17:21 ` hjl at lucon dot org
2004-07-15 17:38 ` cvs-commit at gcc dot gnu dot org
2004-07-15 17:43 ` cvs-commit at gcc dot gnu dot org
2004-07-15 19:12 ` pinskia at gcc dot gnu dot 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).