Browse Source

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.
Rich Felker 14 years ago
parent
commit
71df8b2760
1 changed files with 2 additions and 1 deletions
  1. 2 1
      tools/gen-musl-gcc.sh

+ 2 - 1
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