This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: source code for math functions


richard lee wrote:

> Does anyone know how to retrieve the source code
> for the math functions for gcc?  I am particularly
> interested in the long double functions.  I am
> using mingw running under windows xp, and the version
> I have is very buggy when it comes to the long double
> routines.
> 
> I looked on the gcc.gnu.org web site, but I can't
> find the forest for the trees.

gcc doesn't include a math library.  It is just the compiler, not the C
library.  In the case of MinGW the C library is MSVCRT.DLL.  And yes,
MSVCRT support for long double is incomplete, however it is somewhat
augmented by libmingwex which provides some missing long double support.

If you mean the C library used with linux, then you want to look at
glibc not gcc.  But I'm not sure how that will help you when using
MinGW.

Brian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]