X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=tools%2Fgen-musl-gcc.sh;h=42fdaec70f9d8f016228ba6f69dcbdf8414c2902;hp=6a35c71ff6a90dcdfe697b4f3b3838f812d481f7;hb=207c45d7abdf7a4bd93973f195deb4d8e202c3e3;hpb=230f1813ad8264f09d5247fa0ed1e8e361c21e0e 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