From bb3cc40b516ffe9b59dafc6690615bac5f36d2d6 Mon Sep 17 00:00:00 2001 From: jess Date: Mon, 6 Apr 2026 15:04:02 -0700 Subject: [PATCH] set deployment target for tree-sitter C compilation --- build.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build.sh b/build.sh index 5001eb8..1f4ea27 100755 --- a/build.sh +++ b/build.sh @@ -11,6 +11,7 @@ RESOURCES="$CONTENTS/Resources" SDK=$(xcrun --show-sdk-path) RUST_LIB="$ROOT/core/target/release" +export MACOSX_DEPLOYMENT_TARGET=14.0 echo "Building Rust core (release)..." cd "$ROOT/core" && cargo build --release if [ $? -ne 0 ]; then