From 6a461519b91a521a98e0be1bf272bcdac48c6f7e Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 11 Jan 2002 13:27:37 +0000 Subject: Scrub the way libraries are linked. Use ld, not gcc, to avoid chicken-and-egg problems when building gcc toolchains. -Erik --- libm/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'libm') diff --git a/libm/Makefile b/libm/Makefile index bc5d857c4..51d7be8f7 100644 --- a/libm/Makefile +++ b/libm/Makefile @@ -94,8 +94,9 @@ $(LIBM): ar-target shared: all @if [ -f $(LIBM) ] ; then \ set -x -e; \ - $(TARGET_CC) $(TARGET_LDFLAGS) -nostdlib -shared -o $(LIBM_SHARED_FULLNAME) \ - -Wl,-soname,$(LIBM_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBM) -lc; \ + $(LD) $(LDFLAGS) -o $(LIBM_SHARED_FULLNAME) \ + -soname=$(LIBM_SHARED).$(MAJOR_VERSION) \ + --whole-archive $(LIBM); \ 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