vcpkg/ports/isal/osx-asm-sysroot.patch
Kai Pastor 1b0252ca70
[isal] Update port to 2.30.0 (#26198)
* CI test isal, not spdk-isal

* Update to 2.30.0

* The nmake build uses only nasm

The autotools build chooses the tool by feature level.
It even requires yasm for mingw.

* Relax platform restriction

* Fix mingw builds

* Fixup pkgconfig

* Rewrite CMake config, move to unofficial namespace

* Update versions
2022-08-22 13:02:53 -07:00

33 lines
770 B
Diff

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"