-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mem_zero_detect_avx512.s:70: error: unknown preprocessor directive `%use' #305
Comments
Hi @brechtsanders. Is NASM installed in your system? |
Yes (version 2.16.01) |
Can you remove YASM from the system? |
Then I would get: |
Could you share the commands you used? |
I tried a dirty patch forcing nasm and that does seem to build: patch -ulbf configure.ac << EOF
@@ -249,7 +249,3 @@
if test x"\$arch" = x"mingw"; then
- AS=yasm
- as_feature_level=\$yasm_feature_level
- if test \$as_feature_level -lt 2 ; then
- AC_MSG_ERROR([Mingw build requires Yasm 1.2.0 or later.])
- fi
+ AS=nasm
fi
EOF |
Could you test #309? |
YASM support should be fixed now in mainline. |
Tested #309 and it builds. Why did I get the If both nasm and yasm are available on Windows build, wouldn't it be wiser to select the one supporting the broadest feature set? |
Thanks for your confirmation. From past comments, Windows needed YASM: Fix for nasm missing windows featuresif test x"$arch" = x"mingw"; then This looks like it is not the case anymore, so it should work for both YASM and NASM. |
We are removing YASM support in the next major release, so I'll close this issue now and switch to NASM only after the minor 2.31.1 release, thanks! |
When building isa-l 2.31.1 on Windows (64-bit) using MinGW-w64 the build fails with the following output:
The text was updated successfully, but these errors were encountered: