diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-11 13:27:37 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-11 13:27:37 +0000 |
commit | 6a461519b91a521a98e0be1bf272bcdac48c6f7e (patch) | |
tree | e59f02dba9eaf3bb7bcb86444c2765b10e0a9450 /libutil/Makefile | |
parent | 072938a98d1f5d454476c218a253daddfa59e2dc (diff) | |
download | uClibc-alpine-6a461519b91a521a98e0be1bf272bcdac48c6f7e.tar.bz2 uClibc-alpine-6a461519b91a521a98e0be1bf272bcdac48c6f7e.tar.xz |
Scrub the way libraries are linked. Use ld, not gcc, to avoid
chicken-and-egg problems when building gcc toolchains.
-Erik
Diffstat (limited to 'libutil/Makefile')
-rw-r--r-- | libutil/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libutil/Makefile b/libutil/Makefile index 705f89fa1..f86f7c8f5 100644 --- a/libutil/Makefile +++ b/libutil/Makefile @@ -50,8 +50,9 @@ $(OBJS): %.o : %.c $(STRIPTOOL) -x -R .note -R .comment $*.o shared: all - $(TARGET_CC) $(TARGET_LDFLAGS) -nostdlib -shared -o $(LIBUTIL_SHARED_FULLNAME) \ - -Wl,-soname,$(LIBUTIL_SHARED).$(MAJOR_VERSION) -Wl,--whole-archive $(LIBUTIL) -lc + $(LD) $(LDFLAGS) -o $(LIBUTIL_SHARED_FULLNAME) \ + -soname=$(LIBUTIL_SHARED).$(MAJOR_VERSION) \ + --whole-archive $(LIBUTIL); install -d $(TOPDIR)lib rm -f $(TOPDIR)lib/$(LIBUTIL_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBUTIL_SHARED).$(MAJOR_VERSION) install -m 644 $(LIBUTIL_SHARED_FULLNAME) $(TOPDIR)lib/; |