Mercurial > sdl-ios-xcode
annotate strip_fPIC.sh @ 0:74212992fb08
Initial revision
author | Sam Lantinga <slouken@lokigames.com> |
---|---|
date | Thu, 26 Apr 2001 16:45:43 +0000 |
parents | |
children | cf2af46e9e2a |
rev | line source |
---|---|
0 | 1 #!/bin/sh |
2 # | |
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 command="" | |
6 while [ $1 ]; do | |
7 if [ "$1" != "-fPIC" ]; then | |
8 if [ "$1" != "-DPIC" ]; then | |
9 command="$command $1" | |
10 fi | |
11 fi | |
12 shift | |
13 done | |
14 echo $command | |
15 exec $command |