diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-06-27 21:38:11 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-06-27 21:38:11 -0400 |
commit | 207c45d7abdf7a4bd93973f195deb4d8e202c3e3 (patch) | |
tree | 87dbe7fe45e66c912d4e5c320318be7d1bbf2fc7 /dist | |
parent | 230f1813ad8264f09d5247fa0ed1e8e361c21e0e (diff) | |
download | musl-207c45d7abdf7a4bd93973f195deb4d8e202c3e3.tar.gz musl-207c45d7abdf7a4bd93973f195deb4d8e202c3e3.tar.xz musl-207c45d7abdf7a4bd93973f195deb4d8e202c3e3.zip |
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.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/config.mak | 5 |
1 files changed, 4 insertions, 1 deletions
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 = |