summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-01-09 08:06:15 +0000
committerEric Andersen <andersen@codepoet.org>2002-01-09 08:06:15 +0000
commit2d503e1611cb990077c363b885118b4ccb3d67ef (patch)
tree73e41a733fc8c9f90c468c5d53e74bdd4c04c63a
parent351727917b49ddd9e5b7924e8cb7d95c126e4200 (diff)
Remove "-Wl,--no-undefined"
-rw-r--r--libm/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/libm/Makefile b/libm/Makefile
index ef86ab672..4eef46bd3 100644
--- a/libm/Makefile
+++ b/libm/Makefile
@@ -93,8 +93,7 @@ $(LIBM): ar-target
shared: all
if [ -f $(LIBM) ] ; then \
$(TARGET_CC) $(TARGET_LDFLAGS) -nostdlib -shared -o $(LIBM_SHARED_FULLNAME) \
- -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive \
- $(LIBM) -Wl,--no-undefined -lc; \
+ -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBM) -lc; \
install -d $(TOPDIR)lib; \
rm -f $(TOPDIR)lib/$(LIBM_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBM_SHARED).$(MAJOR_VERSION); \
install -m 644 $(LIBM_SHARED_FULLNAME) $(TOPDIR)lib; \