Add SKYLAKEX to DYNAMIC_CORE list only if AVX512 is available

This commit is contained in:
Martin Kroeker
2018-06-03 23:13:25 +02:00
committed by GitHub
parent f1fb9a4745
commit a7d0f49cec

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