Fix Darwin flags - was incorrectly always using the Linux else clause

pull/201/head
Tienshiao Ma 3 years ago
parent 4698dcdb52
commit 79e1eba5e9

@ -60,8 +60,7 @@ ifeq ($(UNAME_M),x86_64)
ifneq (,$(findstring AVX2,$(AVX2_M))) ifneq (,$(findstring AVX2,$(AVX2_M)))
CFLAGS += -mavx2 CFLAGS += -mavx2
endif endif
endif else ifeq ($(UNAME_S),Linux)
ifeq ($(UNAME_S),Linux)
AVX1_M := $(shell grep "avx " /proc/cpuinfo) AVX1_M := $(shell grep "avx " /proc/cpuinfo)
ifneq (,$(findstring avx,$(AVX1_M))) ifneq (,$(findstring avx,$(AVX1_M)))
CFLAGS += -mavx CFLAGS += -mavx

Loading…
Cancel
Save