Build fails on macOS 15.6.1 / Xcode 26.1.1 due to tree-sitter 0.25.10 incompatibility #1593
Unanswered
dailydaniel
asked this question in
Q&A
Replies: 2 comments
-
|
Have you opened an issue in the tree-sitter repo? |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@zanmato Test 1: tree-sitter 0.25.10 (crates.io) [dependencies]
tree-sitter = "0.25.10"Build fails with Test 2: tree-sitter git master (0.26.0) [dependencies]
tree-sitter = { git = "https://github.com/tree-sitter/tree-sitter.git", branch = "master" }Build succeeds The fix is already in tree-sitter master branch (v0.26.0), but not yet published to crates.io. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Environment
Problem
Build fails when using
gpui-componentdue totree-sitter v0.25.10incompatibility with macOS SDK 26.x.Error
Minimal Reproducer
Run:
cargo build --releaseRoot Cause
tree-sitter 0.25.10is incompatible with the new macOS SDK 26.1. TheCLOCKS_PER_SECmacro is not defined in the SDK headers.Beta Was this translation helpful? Give feedback.
All reactions