aboutsummaryrefslogtreecommitdiffstats
path: root/distrib/sdl-1.2.15/build-scripts/strip_fPIC.sh
blob: 45d34ba478d4bd8a9550e4d70fc86bfd82953cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/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 [ $# -gt 0 ]; do
    case "$1" in
        -fPIC)
            # Ignore -fPIC option
            ;;
        -fno-common)
            # Ignore -fPIC and -DPIC options
            ;;
        *)
            command="$command $1"
            ;;
    esac
    shift
done
echo $command
exec $command