diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2004-01-16 18:52:54 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2004-01-16 18:52:54 +0000 |
commit | d8c8b456f45c773d0adac99f2997cbb0cab4c911 (patch) | |
tree | f4112b6f99e0b264701feba735e79a20bd6990c9 /ldso | |
parent | 338237994ac93ca58f6024ef0f7932ab770735d1 (diff) |
We need to link with libgcc.a when creating shared libs, in order to
avoid problems 'hidden symbol' problems. Also handle -lfloat for the
soft-float arm case.
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/libdl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile index fa7d7129d..6e4d6a242 100644 --- a/ldso/libdl/Makefile +++ b/ldso/libdl/Makefile @@ -75,7 +75,7 @@ shared: $(LD) $(LDFLAGS) -soname=$(LIBDL_SHARED).$(MAJOR_VERSION) \ -o $(LIBDL_SHARED_FULLNAME) --whole-archive $(LIBDL_PIC) \ --no-whole-archive $(TOPDIR)/libc/misc/internals/interp.o \ - -L$(TOPDIR)/lib -lc; + -L$(TOPDIR)/lib -lc $(LDADD_LIBFLOAT) $(LIBGCC); $(INSTALL) -d $(TOPDIR)lib $(RM) $(TOPDIR)lib/$(LIBDL_SHARED_FULLNAME) $(TOPDIR)lib/$(LIBDL_SHARED).$(MAJOR_VERSION) $(INSTALL) -m 644 $(LIBDL_SHARED_FULLNAME) $(TOPDIR)lib |