Mercurial > sdl-ios-xcode
view build-scripts/strip_fPIC.sh @ 4416:06be4b33029d SDL-1.3
Closing obsolete SDL-1.3 named branch
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 28 Feb 2010 00:21:37 -0500 |
parents | 865ba39fc96d |
children | 27fe0dd48269 |
line wrap: on
line source
#!/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