From: Daniel Bevenius Date: Wed, 11 Feb 2026 13:02:29 +0000 (+0100) Subject: build : fix case in dSYMs path for build-macos [no ci] (#19515) X-Git-Tag: upstream/0.0.8067~65 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=53de59f67dfd17fe9df32bf48e0df757e833419f;p=pkg%2Fggml%2Fsources%2Fllama.cpp build : fix case in dSYMs path for build-macos [no ci] (#19515) This commit updates an incorrect dSYMs where the the 's' was uppercase by mistake. The motivation for fixing this is that this can cause issues on case sensitive operating systems. Refs: https://github.com/ggml-org/whisper.cpp/pull/3630 --- diff --git a/build-xcframework.sh b/build-xcframework.sh index 0eec87113..e8af16211 100755 --- a/build-xcframework.sh +++ b/build-xcframework.sh @@ -534,7 +534,7 @@ xcodebuild -create-xcframework \ -framework $(pwd)/build-ios-device/framework/llama.framework \ -debug-symbols $(pwd)/build-ios-device/dSYMs/llama.dSYM \ -framework $(pwd)/build-macos/framework/llama.framework \ - -debug-symbols $(pwd)/build-macos/dSYMS/llama.dSYM \ + -debug-symbols $(pwd)/build-macos/dSYMs/llama.dSYM \ -framework $(pwd)/build-visionos/framework/llama.framework \ -debug-symbols $(pwd)/build-visionos/dSYMs/llama.dSYM \ -framework $(pwd)/build-visionos-sim/framework/llama.framework \