From a7988227899ee7720b530c8bb31a6ae486905f8f Mon Sep 17 00:00:00 2001 From: Manuel Novoa III Date: Wed, 17 Jan 2001 16:19:28 +0000 Subject: Set dynamic linker used to /lib/ld-linux.so.1. Changeable in Makefile. --- extra/gcc-uClibc/Makefile | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'extra/gcc-uClibc/Makefile') diff --git a/extra/gcc-uClibc/Makefile b/extra/gcc-uClibc/Makefile index a1a5c21df..b54c5eadc 100644 --- a/extra/gcc-uClibc/Makefile +++ b/extra/gcc-uClibc/Makefile @@ -2,6 +2,10 @@ TOPDIR = ../../ include $(TOPDIR)Rules.mak +# NOTE: This may need to be modified on each system. +# If your default dynamic linker works, comment this out. +DYNAMIC_LINKER = /lib/ld-linux.so.1 + UCLIBC_DIR = $(shell (cd ../.. ; /bin/pwd)) GCC_BIN = $(CC) GCC_LIB = $(shell $(CC) -print-libgcc-file-name ) @@ -25,6 +29,7 @@ gcc-uClibc.h: clean echo "#define GCC_LIB " \"$(GCC_LIB)\" >> gcc-uClibc.h echo "#define GCC_INCDIR " \"-I$(GCCINCDIR)/\" >> gcc-uClibc.h echo "#define TARGET_ARCH " \"$(TARGET_ARCH)\" >> gcc-uClibc.h + echo "#define DYNAMIC_LINKER " \"$(DYNAMIC_LINKER)\" >> gcc-uClibc.h gcc-uClibc-native: gcc-uClibc.h gcc-uClibc.c # uClibc built for native environment, so why not use it ;-) -- cgit v1.2.3