From ed93e45cfe7121ddf078063803846a6e12925e1b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 26 Nov 2001 02:09:49 +0000 Subject: My adjusted 'make install' was missing include/linux subdirs. Try just using 'cp -a' and see if anyone complains and makes me use tar or something. Check libm for undefined non-libc symbols. --- libm/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libm/Makefile') diff --git a/libm/Makefile b/libm/Makefile index 41159aced..209ebcb6c 100644 --- a/libm/Makefile +++ b/libm/Makefile @@ -81,7 +81,8 @@ $(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) -lc; \ + -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBM) \ + -Wl,--no-undefined -Wl,--allow-shlib-undefined -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; \ -- cgit v1.2.3