Skip to content
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

Do not force MinGW compilation to use YASM #307

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,6 @@ int main(int argc, char **argv)
*) arch=unknown yasm_args="-f elf64";;
esac

# Fix for nasm missing windows features
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
fi

AC_DEFINE_UNQUOTED(AS_FEATURE_LEVEL, [$as_feature_level], [Assembler feature level.])
if test $as_feature_level -ge 6 ; then
AC_DEFINE(HAVE_AS_KNOWS_AVX512, [1], [Assembler can do AVX512.])
Expand Down
Loading