-
Notifications
You must be signed in to change notification settings - Fork 61
WIP: statically linked build for non Alpine Linux x86_64 #33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
82f033c
056d8bf
b46bb45
c7c0e8b
1b23e97
8a50669
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,10 +22,10 @@ tree-sitter-bash = "0.20" | |
tree-sitter-c = "0.20" | ||
tree-sitter-cpp = "0.20" | ||
tree-sitter-c-sharp = "0.20" | ||
tree-sitter-elixir = "0.1" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What happened here? 😄 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As mentioned in the PR description, this version of the module used C++, so I changed it to use the git repository, where the module is rewritten in C, so that it can compile with musl. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is why the current musl version does not work -- it requires There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably should leave a comment above each of these tree-sitter dependencies to state why they are pulling in a specific version from github. |
||
tree-sitter-elixir = { git = "https://github.com/elixir-lang/tree-sitter-elixir.git", rev = "a2861e88a730287a60c11ea9299c033c7d076e30", version = "0.1.0" } | ||
tree-sitter-erlang = "0.2" | ||
tree-sitter-go = "0.20" | ||
tree-sitter-html = "0.19" | ||
tree-sitter-html = { git = "https://github.com/tree-sitter/tree-sitter-html.git", rev = "d742025fa2d8e6100f134a6ea990443aa1f074b3", version = "0.20.0" } | ||
tree-sitter-java = "0.20" | ||
tree-sitter-javascript = "0.20" | ||
tree-sitter-json = "0.20" | ||
|
@@ -34,7 +34,6 @@ tree-sitter-md = "0.1" | |
tree-sitter-objc = "3" | ||
tree-sitter-python = "0.20" | ||
tree-sitter-r = "0.19" | ||
tree-sitter-ruby = "0.20" | ||
tree-sitter-rust = "0.20" | ||
tree-sitter-scala = "0.20" | ||
tree-sitter-swift = "0.3" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you add this target?