summaryrefslogtreecommitdiffstats
path: root/src/yasm-wrapper
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 18:24:20 +0000
commit483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch)
treee5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/yasm-wrapper
parentInitial commit. (diff)
downloadceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.tar.xz
ceph-483eb2f56657e8e7f419ab1a4fab8dce9ade8609.zip
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/yasm-wrapper')
-rwxr-xr-xsrc/yasm-wrapper44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/yasm-wrapper b/src/yasm-wrapper
new file mode 100755
index 00000000..c3c14b13
--- /dev/null
+++ b/src/yasm-wrapper
@@ -0,0 +1,44 @@
+#!/bin/sh -e
+
+# libtool and yasm do not get along.
+# filter out any crap that libtool feeds us that yasm does not understand.
+#echo $0: got $*
+new=""
+touch=""
+while [ -n "$*" ]; do
+ case "$1" in
+ -f )
+ shift
+ new="$new -f $1"
+ shift
+ ;;
+ -g* | -f* | -W* | -MD | -MP | -fPIC | -c | -D* | -E | --param* | -O* | -m* | -pipe | ggc-min* | -pthread )
+ shift
+ ;;
+ -I | -isystem )
+ shift
+ new="$new -i $1"
+ shift
+ ;;
+ -MT )
+ shift
+ shift
+ ;;
+ -MF )
+ shift
+ touch="$1"
+ shift
+ ;;
+ * )
+ new="$new $1"
+ shift
+ ;;
+ esac
+done
+
+#echo $0: yasm $new
+yasm $new
+
+[ -n "$touch" ] && touch $touch
+
+true