]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
build : fix case in dSYMs path for build-macos [no ci] (#19515)
authorDaniel Bevenius <redacted>
Wed, 11 Feb 2026 13:02:29 +0000 (14:02 +0100)
committerGitHub <redacted>
Wed, 11 Feb 2026 13:02:29 +0000 (14:02 +0100)
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

build-xcframework.sh

index 0eec87113980e4832c2c86e60db3df327bf03ffa..e8af16211fdc03031629e454fee09f43d67e3a60 100755 (executable)
@@ -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 \