X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Fyasm-wrapper;fp=src%2Fceph%2Fsrc%2Fyasm-wrapper;h=c3c14b130ebc6faaa88c67fd81a7a2428e6dc281;hb=812ff6ca9fcd3e629e49d4328905f33eee8ca3f5;hp=0000000000000000000000000000000000000000;hpb=15280273faafb77777eab341909a3f495cf248d9;p=stor4nfv.git diff --git a/src/ceph/src/yasm-wrapper b/src/ceph/src/yasm-wrapper new file mode 100755 index 0000000..c3c14b1 --- /dev/null +++ b/src/ceph/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