diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-23 21:23:19 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-23 21:23:19 +0000 |
commit | b9c667b7c2eff4799172d94159cd8a72af5a7a9e (patch) | |
tree | 451ac08e8392bb536fc8bf05d7bde327b13d93da /extra | |
parent | 4a479b9f2398aecd0e72db720c01266961a948c3 (diff) |
Define where the shared lib loader now lives...
-Erik
Diffstat (limited to 'extra')
-rw-r--r-- | extra/gcc-uClibc/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/extra/gcc-uClibc/Makefile b/extra/gcc-uClibc/Makefile index 30935392f..13a4e04c3 100644 --- a/extra/gcc-uClibc/Makefile +++ b/extra/gcc-uClibc/Makefile @@ -1,15 +1,8 @@ TOPDIR = ../../ include $(TOPDIR)Rules.mak -# NOTE: This may need to be modified on each system. -ifeq ($(TARGET_ARCH), i386) -# Right now, I'm using .1 since .2 pulls in libc6 on my system. Manuel -DYNAMIC_LINKER = /lib/ld-linux.so.1 -#DYNAMIC_LINKER = /lib/ld-linux-uclibc.so.1 -else -# For Erik's arm case. -DYNAMIC_LINKER = $(shell ls /lib/ld*.so.[0-9] | sort | tail -n 1) -endif +# NOTE: This may need to be modified for your system +DYNAMIC_LINKER = /usr/$(TARGET_ARCH)-linux-uclibc/lib/ld-linux-uclibc.so.1 UCLIBC_DIR = $(shell (cd ../.. ; /bin/pwd)) GCC_BIN = $(CC) |