forked from extern/whisper.cpp
Fix Darwin flags - was incorrectly always using the Linux else clause
This commit is contained in:
parent
4698dcdb52
commit
e7f09a0a61
3
Makefile
3
Makefile
@ -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…
Reference in New Issue
Block a user