Browse Source

Merge pull request #1802 from martin-frbg/issue1801

Use avx512 workaround with msys2/mingw64 as well
tags/v0.3.4
Martin Kroeker GitHub 7 years ago
parent
commit
8f7e986184
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      Makefile.x86_64

+ 5
- 0
Makefile.x86_64 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



Loading…
Cancel
Save