mirror of
https://github.com/intel/isa-l.git
synced 2024-12-13 09:52:56 +01:00
Strip -isysroot and related flags from asm-filter
This helps python-isal compatibility. Change-Id: I8a2540e330f229f65903bdb2cc47aceeb0724dc5 Signed-off-by: Taiju Yamada <tyamada@bi.a.u-tokyo.ac.jp>
This commit is contained in:
parent
066940a9a7
commit
998e03bf95
@ -22,6 +22,11 @@ while [ -n "$*" ]; do
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
-isysroot | -iframeworkwithsysroot | -iwithsysroot | -framework )
|
||||
# Unsupported options with arg
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
--prefix* )
|
||||
# Supported options without arg
|
||||
options="$options $1"
|
||||
|
@ -15,6 +15,11 @@ while [ -n "$*" ]; do
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
-isysroot | -iframeworkwithsysroot | -iwithsysroot | -framework )
|
||||
# Unsupported options with arg
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
--prefix* )
|
||||
# Supported options without arg
|
||||
options="$options $1"
|
||||
|
@ -17,6 +17,11 @@ while [ -n "$*" ]; do
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
-isysroot | -iframeworkwithsysroot | -iwithsysroot | -framework )
|
||||
# Unsupported options with arg
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
-I* | -i* | --prefix* )
|
||||
# Supported options without arg
|
||||
options="$options $1"
|
||||
|
@ -10,6 +10,11 @@ while [ -n "$*" ]; do
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
-isysroot | -iframeworkwithsysroot | -iwithsysroot | -framework )
|
||||
# Unsupported options with arg
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
-I* | -i* | --prefix* )
|
||||
# Supported options without arg
|
||||
options="$options $1"
|
||||
|
Loading…
Reference in New Issue
Block a user