forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of rust-lang#128896 - bjorn3:sync_cg_clif-2024-08-09, r=bj…
…orn3 Subtree sync for rustc_codegen_cranelift The main highlight this time is support for raw-dylib on Windows thanks to `@dpaoliello.` Compiling the ring crate for arm64 macOS has been fixed too. r? `@ghost` `@rustbot` label +A-codegen +A-cranelift +T-compiler
- Loading branch information
Showing
30 changed files
with
390 additions
and
850 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
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
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
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,68 @@ | ||
{ | ||
"format_on_save": "on", | ||
"lsp": { | ||
"rust-analyzer": { | ||
"initialization_options": { | ||
"diagnostics": { | ||
// in case rustc.source is disabled for performance reasons; disable the errors about this | ||
"disabled": ["unresolved-extern-crate", "unresolved-macro-call"] | ||
}, | ||
"rustc": { | ||
"source": "discover" | ||
}, | ||
"imports": { | ||
"granularity": { | ||
"enforce": true, | ||
"group": "module" | ||
}, | ||
"prefix": "crate" | ||
}, | ||
"cargo": { | ||
"features": ["unstable-features"] | ||
}, | ||
"linkedProjects": [ | ||
"./Cargo.toml", | ||
"./build_system/Cargo.toml", | ||
{ | ||
"crates": [ | ||
{ | ||
"root_module": "./example/mini_core.rs", | ||
"edition": "2018", | ||
"deps": [], | ||
"cfg": [] | ||
}, | ||
{ | ||
"root_module": "./example/mini_core_hello_world.rs", | ||
"edition": "2018", | ||
"deps": [ | ||
{ | ||
"crate": 0, | ||
"name": "mini_core" | ||
} | ||
], | ||
"cfg": [] | ||
}, | ||
{ | ||
"root_module": "./example/mod_bench.rs", | ||
"edition": "2018", | ||
"deps": [], | ||
"cfg": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"sysroot_src": "./build/stdlib/library", | ||
"crates": [ | ||
{ | ||
"root_module": "./example/std_example.rs", | ||
"edition": "2015", | ||
"deps": [], | ||
"cfg": [] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
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
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
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
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
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
Oops, something went wrong.