Bug 999 - PPC Floating point symbols defined both in libgcc and glibc
Summary: PPC Floating point symbols defined both in libgcc and glibc
Status: RESOLVED WONTFIX
Alias: None
Product: glibc
Classification: Unclassified
Component: libc (show other bugs)
Version: 2.3.2
: P2 normal
Target Milestone: ---
Assignee: GOTO Masanori
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-06-08 22:54 UTC by Ranjani
Modified: 2005-09-27 15:21 UTC (History)
1 user (show)

See Also:
Host:
Target:
Build:
Last reconfirmed:


Attachments
Proposed Patch (186 bytes, patch)
2005-06-08 23:25 UTC, Ranjani
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Ranjani 2005-06-08 22:54:12 UTC
Some floating point symbols are defined in both libgcc and libc and
they produce mulitple definition errors while compiling. This patch
removes them from the libc library.  Test case is below:

Test case to reproduce the problem:

#include <stdio.h>

extern int __ledf2(double, double);

int main()
{
       return __ledf2(0, 0);
}
Comment 1 Ranjani 2005-06-08 23:25:51 UTC
Created attachment 512 [details]
Proposed Patch
Comment 2 Ulrich Drepper 2005-09-27 15:21:59 UTC
That's no support configuration.