From: Rich Felker Date: Tue, 1 Mar 2011 17:04:36 +0000 (-0500) Subject: use -L/...../ -lgcc instead of /...../libgcc.a in musl-gcc wrapper X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=commitdiff_plain;h=71df8b2760348c55b1c0d04aeebcae372d9760d3 use -L/...../ -lgcc instead of /...../libgcc.a in musl-gcc wrapper this should avoid warnings about unused libs when not linking, and might fix some other obscure issues too. i might replace this approach with a completely different one soon though. --- diff --git a/tools/gen-musl-gcc.sh b/tools/gen-musl-gcc.sh index 89f7f4d9..bf20c1f6 100644 --- a/tools/gen-musl-gcc.sh +++ b/tools/gen-musl-gcc.sh @@ -11,6 +11,7 @@ libc_end="$libc_lib/crtn.o" gcc_inc=$libc_inc libgcc="`gcc \"$@\" -print-file-name=libgcc.a`" +libgcc=${libgcc%libgcc.a} gcc -wrapper sh,-c,' x= ; y= ; z= ; s= ; for i ; do @@ -26,5 +27,5 @@ done exec "$0" "$@" ' -std=gnu99 -nostdinc -nostdlib \ -isystem "$libc_inc" -isystem "$gcc_inc" \ - -Wl,-xxxxxx "$@" -L"$libc_lib" -lc "$libgcc" -Lxxxxxx -Wl,-nostdlib + -Wl,-xxxxxx "$@" -L"$libc_lib" -lc -L"$libgcc" -lgcc -Lxxxxxx -Wl,-nostdlib EOF