diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2009-06-23 16:04:33 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2009-06-23 16:04:33 +0000 |
commit | 4f4622807ffb1eb663a76f0809b936f303dbffc0 (patch) | |
tree | 5bfdac3b54d9cd7064145dbc5103c19737ccba3b /newlib | |
parent | fe0dbf69f996cf3d25934f7881828f63c5a590b8 (diff) | |
download | cygnal-4f4622807ffb1eb663a76f0809b936f303dbffc0.tar.gz cygnal-4f4622807ffb1eb663a76f0809b936f303dbffc0.tar.bz2 cygnal-4f4622807ffb1eb663a76f0809b936f303dbffc0.zip |
2009-06-23 Jeff Johnston <jjohnstn@redhat.com>
* Makefile.am (MATHOBJS_IN_LIBC): Add s_fpclassify and
sf_fpclassify as these are now used for infinity testing.
* Makefile.in: Regenerated.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 6 | ||||
-rw-r--r-- | newlib/Makefile.am | 1 | ||||
-rw-r--r-- | newlib/Makefile.in | 1 |
3 files changed, 8 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index cedd4d5a6..aab9fb40e 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,9 @@ +2009-06-23 Jeff Johnston <jjohnstn@redhat.com> + + * Makefile.am (MATHOBJS_IN_LIBC): Add s_fpclassify and + sf_fpclassify as these are now used for infinity testing. + * Makefile.in: Regenerated. + 2009-06-19 Joel Sherrill <joel.sherrill@oarcorp.com> * libc/sys/rtems/machine/param.h: Change ALIGNBYTES diff --git a/newlib/Makefile.am b/newlib/Makefile.am index f9d1eb53a..1740dae6e 100644 --- a/newlib/Makefile.am +++ b/newlib/Makefile.am @@ -90,6 +90,7 @@ toollib_DATA = $(CRT0) $(CRT1) # both libc.a and libm.a. We build them in libm.a and copy them over, # along with some required supporting routines. MATHOBJS_IN_LIBC = \ + $(lpfx)s_fpclassify.$(oext) $(lpfx)sf_fpclassify.$(oext) \ $(lpfx)s_isinf.$(oext) $(lpfx)sf_isinf.$(oext) \ $(lpfx)s_isnan.$(oext) $(lpfx)sf_isnan.$(oext) \ $(lpfx)s_isinfd.$(oext) $(lpfx)sf_isinff.$(oext) \ diff --git a/newlib/Makefile.in b/newlib/Makefile.in index 7274398dd..ef36ae9eb 100644 --- a/newlib/Makefile.in +++ b/newlib/Makefile.in @@ -358,6 +358,7 @@ toollib_DATA = $(CRT0) $(CRT1) # both libc.a and libm.a. We build them in libm.a and copy them over, # along with some required supporting routines. MATHOBJS_IN_LIBC = \ + $(lpfx)s_fpclassify.$(oext) $(lpfx)sf_fpclassify.$(oext) \ $(lpfx)s_isinf.$(oext) $(lpfx)sf_isinf.$(oext) \ $(lpfx)s_isnan.$(oext) $(lpfx)sf_isnan.$(oext) \ $(lpfx)s_isinfd.$(oext) $(lpfx)sf_isinff.$(oext) \ |