]> wimlib.net Git - wimlib/blobdiff - build-aux/strip_fPIC.sh
Build system / directory cleanups
[wimlib] / build-aux / strip_fPIC.sh
diff --git a/build-aux/strip_fPIC.sh b/build-aux/strip_fPIC.sh
new file mode 100755 (executable)
index 0000000..45d34ba
--- /dev/null
@@ -0,0 +1,21 @@
+#!/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
+        -fPIC)
+            # Ignore -fPIC option
+            ;;
+        -fno-common)
+            # Ignore -fPIC and -DPIC options
+            ;;
+        *)
+            command="$command $1"
+            ;;
+    esac
+    shift
+done
+echo $command
+exec $command