We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4700b4f commit 4a6030aCopy full SHA for 4a6030a
run-tests.sh
@@ -107,6 +107,10 @@ set_native() {
107
if [ -n "$winbuild" ] && [ "$winbuild" -ge 22000 ]; then
108
# Since Windows 11, x86_64 binaries can also be emulated.
109
RUN_X86_64=true
110
+ # arm64ec can also be executed (as it is part of being able to
111
+ # execute x86_64).
112
+ RUN_ARM64EC=true
113
+ NATIVE_ARM64EC=1
114
fi
115
if [ -n "$winbuild" ] && [ "$winbuild" -lt 26100 ]; then
116
# Since Windows 11 24H2 armv7 binaries can no longer be
@@ -206,7 +210,9 @@ for arch in $ARCHS; do
206
210
arm64ec)
207
211
unset HAVE_UBSAN
208
212
unset HAVE_OPENMP
209
- unset RUN
213
+ RUN="$RUN_ARM64EC"
214
+ COPY="$COPY_ARM64EC"
215
+ NATIVE="$NATIVE_ARM64EC"
216
;;
217
esac
218
0 commit comments