From 15bbd010f6b5c48f6978560ca5e7326519de7b09 Mon Sep 17 00:00:00 2001 From: Raivis Dejus Date: Sat, 30 Aug 2025 10:46:45 +0300 Subject: [PATCH] Fix for Intel macs for whisper.cpp (#1225) --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 12479f81..d3019a02 100644 --- a/Makefile +++ b/Makefile @@ -103,7 +103,8 @@ ifeq ($(shell uname -s), Darwin) ifeq ($(shell uname -m), arm64) cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DWHISPER_COREML=1 else - cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON + # Intel + cmake -S whisper.cpp -B whisper.cpp/build/ -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DGGML_VULKAN=0 -DGGML_METAL=0 endif cmake --build whisper.cpp/build -j --config Release --verbose