changeset 0 | 74212992fb08 |
child 1 | cf2af46e9e2a |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/strip_fPIC.sh Thu Apr 26 16:45:43 2001 +0000 @@ -0,0 +1,15 @@ +#!/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 [ $1 ]; do + if [ "$1" != "-fPIC" ]; then + if [ "$1" != "-DPIC" ]; then + command="$command $1" + fi + fi + shift +done +echo $command +exec $command