Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Yano <takashi.yano@nifty.ne.jp>2021-11-29 15:56:46 +0300
committerTakashi Yano <takashi.yano@nifty.ne.jp>2021-11-29 16:51:16 +0300
commit48f6c59332ee2970cd4b172278176dcfe32a328d (patch)
tree958c95110c5543b1e8f04b9b662fc21b4dcf706d /newlib/Makefile.in
parent3502a6ff2e2740afb6cce71a95c715e80edadff5 (diff)
stdio: Fix issue of printing "%La" format with large exp part.
- Currently, printf("%La\n", 1e1000L) crashes with segv due to lack of frexpl() function. With this patch, frexpl() function has been implemented in libm to solve this issue. Addresses: https://sourceware.org/pipermail/newlib/2021/018718.html
Diffstat (limited to 'newlib/Makefile.in')
-rw-r--r--newlib/Makefile.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/Makefile.in b/newlib/Makefile.in
index bf15dfea3..68417953d 100644
--- a/newlib/Makefile.in
+++ b/newlib/Makefile.in
@@ -312,6 +312,7 @@ pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
+runstatedir = @runstatedir@
sbindir = @sbindir@
shared_machine_dir = @shared_machine_dir@
sharedstatedir = @sharedstatedir@
@@ -415,7 +416,7 @@ MATHOBJS_IN_LIBC = \
$(lpfx)s_isnand.$(oext) $(lpfx)sf_isnanf.$(oext) \
$(lpfx)s_nan.$(oext) $(lpfx)sf_nan.$(oext) \
$(lpfx)s_ldexp.$(oext) $(lpfx)sf_ldexp.$(oext) \
- $(lpfx)s_frexp.$(oext) $(lpfx)sf_frexp.$(oext) \
+ $(lpfx)s_frexp.$(oext) $(lpfx)sf_frexp.$(oext) $(lpfx)frexpl.$(oext) \
$(lpfx)s_modf.$(oext) \
$(lpfx)sf_modf.$(oext) $(lpfx)s_scalbn.$(oext) \
$(lpfx)sf_scalbn.$(oext) \