File: strip_fPIC.sh

package info (click to toggle)
libsdl2 2.0.0%2Bdfsg1-2~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 55,664 kB
  • sloc: ansic: 124,626; sh: 10,893; objc: 3,400; cpp: 2,314; perl: 1,002; makefile: 396; python: 49
file content (21 lines) | stat: -rwxr-xr-x 454 bytes parent folder | download | duplicates (15)
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
        -?PIC)
            # Ignore -fPIC and -DPIC options
            ;;
        -fno-common)
            # Ignore -fPIC and -DPIC options
            ;;
        *)
            command="$command $1"
            ;;
    esac
    shift
done
echo $command
exec $command