diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-01-16 06:35:26 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-01-16 06:35:26 +0000 |
commit | 54fd5bd31bba892a56bebeb3bd64797a76d80336 (patch) | |
tree | 5365e03bc66db6c1083b85efd276daf531b5ddc1 /ldso | |
parent | 92fa28346ab95b8f956365b1540a8458af286697 (diff) |
Tell ld explicitly when stuff is supposed to by dynamically linked
-Erik
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/Makefile b/ldso/ldso/Makefile index dca099787..8a320c4e1 100644 --- a/ldso/ldso/Makefile +++ b/ldso/ldso/Makefile @@ -45,7 +45,7 @@ all: lib lib:: ldso.h $(OBJS) $(DLINK_OBJS) $(LD) -e _dl_boot $(LDFLAGS) -nostdlib -shared -o $(LDSO_FULLNAME) \ - -soname=$(UCLIBC_LDSO) $(OBJS) + -soname=$(UCLIBC_LDSO) -Bstatic $(OBJS) install -d $(TOPDIR)lib install -m 755 $(LDSO_FULLNAME) $(TOPDIR)lib (cd $(TOPDIR)lib && ln -sf $(LDSO_FULLNAME) $(UCLIBC_LDSO)) |