author | Ryan C. Gordon |
Wed, 24 Dec 2014 12:49:35 -0500 | |
changeset 9283 | 6723e3e133ea |
parent 1889 | 5225a9cc25a2 |
child 4297 | 27fe0dd48269 |
permissions | -rwxr-xr-x |
slouken@1361 | 1 |
#!/bin/sh |
slouken@1361 | 2 |
# |
slouken@1361 | 3 |
# libtool assumes that the compiler can handle the -fPIC flag |
slouken@1361 | 4 |
# This isn't always true (for example, nasm can't handle it) |
slouken@1361 | 5 |
command="" |
slouken@1361 | 6 |
while [ $# -gt 0 ]; do |
slouken@1361 | 7 |
case "$1" in |
slouken@1361 | 8 |
-?PIC) |
slouken@1361 | 9 |
# Ignore -fPIC and -DPIC options |
slouken@1361 | 10 |
;; |
slouken@1889 | 11 |
-fno-common) |
slouken@1889 | 12 |
# Ignore -fPIC and -DPIC options |
slouken@1889 | 13 |
;; |
slouken@1361 | 14 |
*) |
slouken@1361 | 15 |
command="$command $1" |
slouken@1361 | 16 |
;; |
slouken@1361 | 17 |
esac |
slouken@1361 | 18 |
shift |
slouken@1361 | 19 |
done |
slouken@1361 | 20 |
echo $command |
slouken@1361 | 21 |
exec $command |