From 207c45d7abdf7a4bd93973f195deb4d8e202c3e3 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 27 Jun 2011 21:38:11 -0400 Subject: cleanup shared library build system to be more $HOME-local-install friendly the path for the dynamic linker is now configurable, and failure to install the symlink for it will not stop the build. --- dist/config.mak | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'dist') diff --git a/dist/config.mak b/dist/config.mak index f0b8fd8f..5429582c 100644 --- a/dist/config.mak +++ b/dist/config.mak @@ -11,6 +11,9 @@ prefix = /usr/local/musl # Installation prefix for musl-gcc compiler wrapper. exec_prefix = /usr/local +# Location for the dynamic linker ld-musl-$(ARCH).so.1 +syslibdir = /lib + # Uncomment if you want to build i386 musl on a 64-bit host #CFLAGS += -m32 @@ -21,4 +24,4 @@ exec_prefix = /usr/local #CFLAGS += -Werror -Wall -Wpointer-arith -Wcast-align -Wno-parentheses -Wno-char-subscripts -Wno-uninitialized -Wno-sequence-point -Wno-missing-braces -Wno-unused-value -Wno-overflow -Wno-int-to-pointer-cast # Uncomment if you want to disable building the shared library. -#ALL_LDSO = +#SHARED_LIBS = -- cgit v1.2.1