From a089bb71f9c0b1bc6be82ee1ab9c24285389390f Mon Sep 17 00:00:00 2001 From: Zero Date: Sun, 14 May 2023 14:01:38 -0600 Subject: [PATCH] fix broken things from update --- sys/build.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/build.rs b/sys/build.rs index e10e32f..4d63555 100644 --- a/sys/build.rs +++ b/sys/build.rs @@ -95,7 +95,8 @@ fn main() { .arg("-DWHISPER_BUILD_EXAMPLES=OFF"); #[cfg(feature = "coreml")] - cmd.arg("-DWHISPER_COREML=ON"); + cmd.arg("-DWHISPER_COREML=ON") + .arg("-DWHISPER_COREML_ALLOW_FALLBACK=1"); #[cfg(feature = "cuda")] cmd.arg("-DWHISPER_CUBLAS=ON");