diff options
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 550e9d6c50..7665fb97e5 100644 --- a/math/Makefile +++ b/math/Makefile @@ -98,3 +98,8 @@ override CFLAGS += -Wno-uninitialized -Wno-write-strings $(objpfx)libieee.a: $(objpfx)ieee-math.o rm -f $@ ln $< $@ + +# Depend on libc.so so a DT_NEEDED is generated in the shared objects. +# This ensures they will load libc.so for needed symbols if loaded by +# a statically-linked program that hasn't already loaded it. +$(objpfx)libm.so: $(common-objpfx)libc.so |