Merge pull request #1802 from martin-frbg/issue1801

Use avx512 workaround with msys2/mingw64 as well
This commit is contained in:
Martin Kroeker 2018-10-10 08:52:53 +02:00 committed by GitHub
commit 8f7e986184
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,11 @@ FCOMMON_OPT += -march=skylake-avx512
ifeq ($(OSNAME), CYGWIN_NT)
CCOMMON_OPT += -fno-asynchronous-unwind-tables
endif
ifeq ($(OSNAME), WINNT)
ifeq ($(C_COMPILER), GCC)
CCOMMON_OPT += -fno-asynchronous-unwind-tables
endif
endif
endif
endif