Bug#211469: Missing symlink in libgcc1

2003-09-18 Thread Daniel Jacobowitz
On Wed, Sep 17, 2003 at 05:27:49PM -0500, Michael Schultheiss wrote: Package: libgcc1 Version: 1:3.3.2-0pre3 Severity: important libgcc1 package installs /lib/libgcc_s.so.1 but does not establish a symlink /lib/libgcc_s.so to /lib/libgcc_s.so.1. This causes an app that tries to link with

[Bug target/11959] [3.4 regression] bootstrap error in libstdc++

2003-09-18 Thread rsandifo at gcc dot gnu dot org
PLEASE REPLY TO [EMAIL PROTECTED] ONLY, *NOT* [EMAIL PROTECTED] http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11959 rsandifo at gcc dot gnu dot org changed: What|Removed |Added

Bug#166255: [Bug optimization/323] optimized code gives strange floating point results

2003-09-18 Thread pinskia at gcc dot gnu dot org
PLEASE REPLY TO [EMAIL PROTECTED] ONLY, *NOT* [EMAIL PROTECTED] http://gcc.gnu.org/bugzilla/show_bug.cgi?id=323 pinskia at gcc dot gnu dot org changed: What|Removed |Added

Bug#211586: complex.h misunderstood by g++

2003-09-18 Thread Josh Stern
Package: g++ Version: 3.3 Use of the C99 header complex.h in a C library header that is then used within a C++ program causes compile/linkage problems. This problem was discovered via failing to compile small examples using the m_get function in the meschach library version included in Debian.

Bug#211586: complex.h misunderstood by g++

2003-09-18 Thread Martin v. Löwis
Josh Stern wrote: Use of the C99 header complex.h in a C library header that is then used within a C++ program causes compile/linkage problems. This problem was discovered via failing to compile small examples using the m_get function in the meschach library version included in Debian. This is

Bug#211586: complex.h misunderstood by g++

2003-09-18 Thread Josh Stern
On Thursday 18 September 2003 15:57, Martin v. Löwis wrote: Josh Stern wrote: Use of the C99 header complex.h in a C library header that is then used within a C++ program causes compile/linkage problems. This problem was discovered via failing to compile small examples using the m_get

Bug#211610: gcc-3.3: Simple TLS code segfaults

2003-09-18 Thread Andrés Roldán
Package: gcc-3.3 Version: 1:3.3.2-0pre3 Severity: normal Tags: upstream When trying to executing a binary with the __thread keywork, the program segfaults. Below is the output. [pts/0] [EMAIL PROTECTED]:~$ cat tls.c __thread int a; int main (void) { return a; } [pts/0] [EMAIL