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. --- tools/gen-musl-gcc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/gen-musl-gcc.sh b/tools/gen-musl-gcc.sh index 6a35c71f..42fdaec7 100644 --- a/tools/gen-musl-gcc.sh +++ b/tools/gen-musl-gcc.sh @@ -1,6 +1,6 @@ #!/bin/sh -printf '#!/bin/sh\n\nlibc_prefix="%s"\narch="%s"\n' "$1" "$2" +printf '#!/bin/sh\n\nlibc_prefix="%s"\nldso_pathname="%s"\n' "$1" "$2" cat <<"EOF" libc_lib=$libc_prefix/lib @@ -28,5 +28,5 @@ exec "$0" "$@" ' -std=gnu99 -nostdinc -nostdlib \ -isystem "$libc_inc" -isystem "$gcc_inc" \ -Wl,-xxxxxx "$@" -L"$libc_lib" -lc -L"$libgcc" -lgcc -Lxxxxxx \ - -Wl,-dynamic-linker,/lib/ld-musl-"$arch".so.1 -Wl,-nostdlib + -Wl,-dynamic-linker,"$ldso_pathname" -Wl,-nostdlib EOF -- cgit v1.2.1