-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/detached-envs
- Loading branch information
Showing
84 changed files
with
2,818 additions
and
1,896 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 |
---|---|---|
@@ -1,9 +1,20 @@ | ||
[target.x86_64-pc-windows-msvc] | ||
linker = "rust-lld" | ||
|
||
# Statically link the C runtime so the executable does not depend on the MSVC runtime DLLs. | ||
[target.'cfg(all(target_env = "msvc", target_os = "windows"))'] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
|
||
[target.'cfg(all(windows, debug_assertions))'] | ||
rustflags = [ | ||
# increase the stack size to prevent overflowing the stack in debug | ||
"-C", | ||
"link-arg=/STACK:8000000", | ||
] | ||
|
||
# Required for `dist` to work with linux arm targets: https://github.com/axodotdev/cargo-dist/issues/74#issuecomment-2053680080 | ||
[env] | ||
CC_aarch64_unknown_linux_musl = "aarch64-linux-gnu-gcc" | ||
|
||
[target.aarch64-unknown-linux-musl] | ||
linker = "aarch64-linux-gnu-gcc" |
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,10 @@ | ||
self-hosted-runner: | ||
labels: | ||
- 8core_ubuntu_latest_runner | ||
- 16core_windows_latest_runner | ||
|
||
paths: | ||
.github/workflows/release.yml: | ||
# This file is auto-generated so just ignore any error | ||
ignore: | ||
- .* |
Oops, something went wrong.