ceph/src/yasm-wrapper
Nathan Cutler c7eba2aa3d src/yasm-wrapper: ignore parameters starting with ggc-min
When the "with lowmem_builder" bcond is active, the string "--param
ggc-min-expand=20 --param ggc-min-heapsize=32768" is added to
RPM_OPT_FLAGS. In the course of the build, these parameters get passed on
to yasm-wrapper, making it unhappy.

http://tracker.ceph.com/issues/14811 Fixes: #14811

Signed-off-by: Nathan Cutler <ncutler@suse.com>
2016-02-19 15:36:21 +01:00

45 lines
640 B
Bash
Executable File

#!/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* | --param* | -O* | -m* | -pipe | ggc-min* )
shift
;;
-I )
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