diff 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
line wrap: on
line diff
--- /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