Mercurial > sdl-ios-xcode
view build-scripts/strip_fPIC.sh @ 1580:dc4bcfeb927e
I'm dumping the old Xcode support, since it's too hard to maintain,
and SDL no longer builds on MacOS X 10.3 natively, as of the 7.0.4
QuickTime update.
MacOS X 10.4 is the new build baseline for the SDL MacOS X packages.
... it would shore be nice if I had it. :)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 22 Mar 2006 05:59:28 +0000 |
parents | 19418e4422cb |
children | 865ba39fc96d |
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 ;; *) command="$command $1" ;; esac shift done echo $command exec $command