aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/isal/osx-asm-sysroot.patch
diff options
context:
space:
mode:
Diffstat (limited to 'vcpkg/ports/isal/osx-asm-sysroot.patch')
-rw-r--r--vcpkg/ports/isal/osx-asm-sysroot.patch32
1 files changed, 32 insertions, 0 deletions
diff --git a/vcpkg/ports/isal/osx-asm-sysroot.patch b/vcpkg/ports/isal/osx-asm-sysroot.patch
new file mode 100644
index 0000000..ece55e8
--- /dev/null
+++ b/vcpkg/ports/isal/osx-asm-sysroot.patch
@@ -0,0 +1,32 @@
+diff --git a/tools/nasm-filter.sh b/tools/nasm-filter.sh
+index 5ec9ba3..fcc4971 100755
+--- a/tools/nasm-filter.sh
++++ b/tools/nasm-filter.sh
+@@ -15,6 +15,11 @@ while [ -n "$*" ]; do
+ shift
+ shift
+ ;;
++ -isysroot )
++ # Unsupported options with arg
++ shift
++ shift
++ ;;
+ --prefix* )
+ # Supported options without arg
+ options="$options $1"
+diff --git a/tools/yasm-filter.sh b/tools/yasm-filter.sh
+index c33952a..b99bfc3 100755
+--- a/tools/yasm-filter.sh
++++ b/tools/yasm-filter.sh
+@@ -10,6 +10,11 @@ while [ -n "$*" ]; do
+ shift
+ shift
+ ;;
++ -isysroot )
++ # Unsupported options with arg
++ shift
++ shift
++ ;;
+ -I* | -i* | --prefix* )
+ # Supported options without arg
+ options="$options $1"