aboutsummaryrefslogtreecommitdiff
path: root/strip_fPIC.sh
blob: 6edacd2d5ffda1c7f1816f0eb676c87d65bdf4d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
#
# libtool assumes that the compiler can handle the -fPIC flag
# This isn't always true (for example, nasm can't handle it)
command=""
while [ $1 ]; do
    if [ "$1" != "-fPIC" ]; then
        if [ "$1" != "-DPIC" ]; then
            command="$command $1"
        fi
    fi
    shift
done
echo $command
exec $command