diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-07-03 06:22:20 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-07-03 06:22:20 +0000 |
commit | 4836768df76d3919451aa9f847182c8f5f4068e7 (patch) | |
tree | 54feed2e3b0b50e8933bf74486060caa9a134502 /Rules.mak | |
parent | 094983cd14c21fe112a5ef09bbd347b938349e86 (diff) |
Allow the shared lib loader to fallback on the builddir if everything
else fails. Let <arch>-uclibc-gcc --uclibc-use-build-dir set the
shared lib loader to the one in the builddir's path.
-Erik
Diffstat (limited to 'Rules.mak')
-rw-r--r-- | Rules.mak | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -91,6 +91,7 @@ endif ifeq ($(LDSO_PRESENT), $(TARGET_ARCH)) LDSO=$(TOPDIR)lib/$(UCLIBC_LDSO) DYNAMIC_LINKER=$(ROOT_DIR)/lib/$(UCLIBC_LDSO) + BUILD_DYNAMIC_LINKER=$(shell cd $(TOPDIR)lib; pwd)/$(UCLIBC_LDSO) else LDSO=$(SYSTEM_LDSO) DYNAMIC_LINKER=$(SYSTEM_LDSO) |