Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-19 | DO_XSI_MATH: add config knob | Bernhard Reutner-Fischer | |
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-11-14 | Revert "libm: fix C99_MATH on __NO_LONG_DOUBLE_MATH hosts" | Bernhard Reutner-Fischer | |
This reverts commit 73d6e5c41b61633e22ea74e3aa2df721512dca57. barking up the wrong tree Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-11-14 | libm: fix C99_MATH on __NO_LONG_DOUBLE_MATH hosts | Bernhard Reutner-Fischer | |
alias l to their normal double counterparts. Works around problems with libgcc blindly calling __finitel on e.g. ppc32 Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-08-17 | support building out-of-tree | Bernhard Reutner-Fischer | |
Handle O= Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | |||
2009-02-17 | libm/Makefile.in: reformat the list of wrappers | Denis Vlasenko | |
so that it is easier to modify, sort, etc; use __ in filenames of wrappers which wrap __functions (it may be useful to have function and file names ALWAYS match); remove names of not implemented wrappers (it was generating useless empty .o files). libm/ldouble_wrappers.c: comment out the wrapper which is not compiled anyway test/math/compile_test.c: improve this test, it was optimizing out some calls, and we don't want that. No actual code changes. | |||
2009-02-17 | test/math/compile_test.c: "are long double functions even compile/link?" test | Denis Vlasenko | |
*: fix everything which prevents above from building | |||
2009-02-09 | ldouble_wrappers.c: fix __signbitl, it was calling itself by mistake. | Denis Vlasenko | |
remove wrong casts to long double of long return values. remove lots of empty lines. | |||
2009-02-06 | fix nextafterf. by Jie Zhang (jie.zhang AT analog.com) | Denis Vlasenko | |
2009-02-05 | libm: add scalbf, gammaf, significandf wrappers. | Denis Vlasenko | |
This makes in possible to enable test/math (not it compiles, but has lots of test failures). | |||
2009-01-14 | libm_sh: fix libm build for sh | Carmelo Amoroso | |
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> | |||
2009-01-03 | libm: remove scalbln implementation, it seems to be less correct than scalbn. | Denis Vlasenko | |
instead, either alias scalbln to scalbn if int == long on this arch, or just call scalbn form scalbln. text data bss dec hex filename - 45297 180 4 45481 b1a9 lib/libm.so + 44969 180 4 45153 b061 lib/libm.so | |||
2008-12-29 | libm/*: delete many incarnations of logarithmic gamma function, | Denis Vlasenko | |
aliasing them instead af appropriate. Also alias drem to remainder. text data bss dec hex filename - 43568 176 4 43748 aae4 lib/libm.so + 43444 176 4 43624 aa68 lib/libm.so | |||
2008-12-28 | remove many functions which just call __ieee754_<function>, | Denis Vlasenko | |
define them as aliases instead. text data bss dec hex filename - 45402 180 4 45586 b212 lib/libm-0.9.30-svn.so + 45302 180 4 45486 b1ae lib/libm-0.9.30-svn.so | |||
2008-12-22 | - fix fpclassify, signbit, isfinite, isnan, isinf macros for long double ↵ | Bernhard Reutner-Fischer | |
math support - add rule to create preprocessor output for float- and long double math wrapper | |||
2008-11-07 | - less verbose make clean | Bernhard Reutner-Fischer | |
2008-10-06 | - implement log2() | Bernhard Reutner-Fischer | |
2008-10-03 | - add long double math wrappers (Ned Ludd) | Bernhard Reutner-Fischer | |
2008-09-26 | - move libm_hidden_proto to the corresponding headers. Remove from callsites. | Bernhard Reutner-Fischer | |
Note that gamma_r is not provided by glibc, perhaps add a SUN specific knob later | |||
2008-09-25 | - add some more math functions (patch from gentoo/solar) | Bernhard Reutner-Fischer | |
2008-09-25 | - add __ieee754_log2() | Bernhard Reutner-Fischer | |
2008-09-25 | - fix typo | Bernhard Reutner-Fischer | |
2008-09-25 | - remove files that are not either LGPL or Public Domain. | Bernhard Reutner-Fischer | |
- pull replacement funcs for fpmacros.c from glibc This removes the powerpc/classic implementation which did not state any license but read: Copyright © 1991 Apple Computer, Inc. All rights reserved. and thus was dubious (and not needed). | |||
2008-06-17 | - move stripping into do_ar resp compile-m for the sake of simplicity | Bernhard Reutner-Fischer | |
2008-06-04 | - strip the targets and not prerequisites | Bernhard Reutner-Fischer | |
- tidy up PTHREADS_DEBUG_SUPPORT by using per-target STRIP_FLAGS for the few This fixes the spurious rebuilds bernd and vda were seeing with libpthreads. | |||
2008-06-01 | A slight improvement over my previous commit which ensured we always rebuild | Bernd Schmidt | |
libc when one of the source files changes. Since there are more places which want to depend on $(libc), fix them all to use a new variable $(libc.depend), which contains the filename for which we have a rule. | |||
2008-01-17 | - use libm_DIR and libm_OUT | Bernhard Reutner-Fischer | |
2007-12-08 | import trunc()/truncf() for ISO C requirements, otherwise fortran can hit ↵ | Mike Frysinger | |
infinite loops when it generates builtins+trunc() substitutes | |||
2007-04-12 | remove __* symbols and enable llrintf() | Mike Frysinger | |
2007-04-03 | import llrint() from glibc | Mike Frysinger | |
2007-04-02 | implement carg | Mike Frysinger | |
2007-03-31 | From Steve Papacharalambous: | Joakim Tjernlund | |
Add math support for PowerPC e500. | |||
2007-03-19 | #1273 if EXTRAVERSION is set, make sure we respect it | Mike Frysinger | |
2006-09-23 | grab s_lrint from glibc for C99 | Mike Frysinger | |
2006-03-22 | Guard matherr/__kernel_standard w/ _IEEE_LIBM, we do not use them, save 7,6k | Peter S. Mazinger | |
2006-02-25 | rename generic variables to avoid conflict with libc subdirs | Mike Frysinger | |
2006-02-18 | we use _GNU_SOURCE for all of uClibc now | Mike Frysinger | |
2006-02-18 | add infrastructure for fenv | Mike Frysinger | |
2006-02-15 | DOMULTI may be used for libc, the excluded files need work, ↵ | Peter S. Mazinger | |
linuxthreads[_db] as well, don't try on slow box | |||
2006-02-13 | Do not default to _POSIX_MODE | Peter S. Mazinger | |
2006-01-20 | Use libm_ARCH_DIR and cleanup all possible archs | Peter S. Mazinger | |
2006-01-20 | move some generic arch rules up a level to remove duplication | Mike Frysinger | |
2006-01-19 | no need for libm_DEF | Peter S. Mazinger | |
2006-01-19 | Add multi support to libm, remove lib*-multi-y, unneeded | Peter S. Mazinger | |
2006-01-18 | change HAS_FPU to UCLIBC_HAS_FPU since the define will be exported into C ↵ | Mike Frysinger | |
namespace | |||
2005-11-22 | Depedencies corrected (less make oldconfig/headers), rerunning make remakes ↵ | Peter S. Mazinger | |
only headers | |||
2005-11-22 | rework depends and stripping so that libraries arent rebuilt all the time in ↵ | Mike Frysinger | |
a loop | |||
2005-11-18 | Add info to CFLAGS about lib we are building | Peter S. Mazinger | |
2005-11-17 | Include all lib*/Makefile.in in top_srcdir/Makefile.in, allows adding ↵ | Peter S. Mazinger | |
foreign objects to a lib | |||
2005-11-03 | add implementations from glibc for the round functions | Mike Frysinger | |
2005-11-02 | Clean up DOMULTI for libm and add more files blocked earlier by syscall ↵ | Peter S. Mazinger | |
problem to libpthread |