mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-18 20:27:53 +00:00
Fix Makefile for MacBook Intel
This commit is contained in:
parent
2ca8cc77b2
commit
5e563ef635
11
Makefile
11
Makefile
@ -24,15 +24,16 @@ ifeq ($(UNAME_S),Darwin)
|
||||
endif
|
||||
|
||||
# Architecture specific
|
||||
ifeq ($(UNAME_P),x86_64)
|
||||
# TODO: probably these flags need to be tweaked on some architectures
|
||||
ifeq ($(UNAME_M),x86_64)
|
||||
CFLAGS += -mavx -mavx2 -mfma -mf16c
|
||||
endif
|
||||
ifneq ($(filter arm%,$(UNAME_P)),)
|
||||
ifneq ($(filter arm%,$(UNAME_M)),)
|
||||
# Mac M1
|
||||
endif
|
||||
ifneq ($(filter aarch64%,$(UNAME_P)),)
|
||||
endif
|
||||
ifneq ($(filter armv6%,$(UNAME_M)),)
|
||||
ifneq ($(filter aarch64%,$(UNAME_M)),)
|
||||
endif
|
||||
ifneq ($(filter armv6%,$(UNAME_M)),)
|
||||
# Raspberry Pi 1, 2, 3
|
||||
CFLAGS += -mfpu=neon-fp-armv8 -mfp16-format=ieee -mno-unaligned-access
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user