Browse Source

Add SKYLAKEX to DYNAMIC_CORE list only if AVX512 is available

tags/v0.3.1
Martin Kroeker GitHub 7 years ago
parent
commit
a7d0f49cec
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      Makefile.system

+ 6
- 1
Makefile.system View File

@@ -477,7 +477,12 @@ ifneq ($(NO_AVX), 1)
DYNAMIC_CORE += SANDYBRIDGE BULLDOZER PILEDRIVER STEAMROLLER EXCAVATOR
endif
ifneq ($(NO_AVX2), 1)
DYNAMIC_CORE += HASWELL ZEN SKYLAKEX
DYNAMIC_CORE += HASWELL ZEN
endif
ifneq ($(NO_AVX512), 1)
ifneq ($(NO_AVX2), 1)
DYNAMIC_CORE += SKYLAKEX
endif
endif
endif



Loading…
Cancel
Save