aboutsummaryrefslogtreecommitdiff
path: root/strip_fPIC.sh
diff options
context:
space:
mode:
authorPCSX* teams2010-11-16 14:15:22 +0200
committerGrazvydas Ignotas2010-11-16 14:15:22 +0200
commitef79bbde537d6b9c745a7d86cb9df1d04c35590d (patch)
treeef8d2520dbb9e1e345b41b12c9959f300ca8fd10 /strip_fPIC.sh
downloadpcsx_rearmed-ef79bbde537d6b9c745a7d86cb9df1d04c35590d.tar.gz
pcsx_rearmed-ef79bbde537d6b9c745a7d86cb9df1d04c35590d.tar.bz2
pcsx_rearmed-ef79bbde537d6b9c745a7d86cb9df1d04c35590d.zip
pcsxr-1.9.92
Diffstat (limited to 'strip_fPIC.sh')
-rw-r--r--strip_fPIC.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/strip_fPIC.sh b/strip_fPIC.sh
new file mode 100644
index 0000000..6edacd2
--- /dev/null
+++ b/strip_fPIC.sh
@@ -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