K2.6 patches and update.
[tomato.git] / release / src / router / flac / strip_non_asm_libtool_args.sh
blobd5a61f15179e55896e404a7895de8fd30b49102a
1 #!/bin/sh
3 # libtool assumes that the compiler can handle the -fPIC flag.
4 # This isn't always true (for example, nasm can't handle it).
5 # Also, on some versions of OS X it tries to pass -fno-common
6 # to 'as' which causes problems.
7 command=""
8 while [ $1 ]; do
9 if [ "$1" != "-fPIC" ]; then
10 if [ "$1" != "-DPIC" ]; then
11 if [ "$1" != "-fno-common" ]; then
12 command="$command $1"
16 shift
17 done
18 echo $command
19 exec $command