-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump: llvm 14 * fix: reentrancy issue * fix: use correct linker per flavor * fix: link with xar * fix: always add name of linker * fix: use llvm-sys
- Loading branch information
1 parent
acc3ec6
commit ec1e334
Showing
4 changed files
with
199 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
BasedOnStyle: Google | ||
IndentWidth: 4 | ||
IndentAccessModifiers: false | ||
AccessModifierOffset: -4 | ||
ColumnLimit: 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "lld_rs" | ||
version = "130.0.0" | ||
version = "140.0.0" | ||
authors = ["The Mun Team <[email protected]>"] | ||
edition = "2021" | ||
description = "Bindings for LLD" | ||
|
@@ -12,10 +12,10 @@ keywords = ["lld", "llvm"] | |
categories = ["linkers", "compilers"] | ||
|
||
[dependencies] | ||
libc = "0.2.65" | ||
libc = "0.2.138" | ||
llvm-sys = "140.0.3" | ||
|
||
[build-dependencies] | ||
cc = "1.0" | ||
lazy_static = "1.4" | ||
regex = "1.3" | ||
semver = "0.9" | ||
semver = "1.0" |
Oops, something went wrong.