IcBench: Makefile

This commit is contained in:
x
2019-10-22 16:32:58 +02:00
parent c9f7d558dc
commit f2ed108186

View File

@ -50,14 +50,14 @@ endif
else
UNAMEA := $(shell uname -a)
ifneq (,$(findstring ppc64le, $(UNAMEA)))
MARCH=-march=power9, -mtune=power9
#MSSE=-mtune=power9
CFLAGS+=-DNO_WARN_X86_INTRINSICS
else
#Minimum SSE = Sandy Bridge, AVX2 = haswell
MSSE=-march=corei7-avx -mtune=corei7-avx
# -mno-avx -mno-aes (add for Pentium based Sandy bridge)
MAVX2=-march=haswell
else
MARCH=-mcpu=power9, -mtune=power9
#MSSE=-mtune=power9
CFLAGS+=-DNO_WARN_X86_INTRINSICS
endif
endif