Skip to content

Commit

Permalink
Merge branch 'main' into fix/detached-envs
Browse files Browse the repository at this point in the history
  • Loading branch information
ruben-arts authored Dec 3, 2024
2 parents c772b10 + 73a95a5 commit c8ce680
Show file tree
Hide file tree
Showing 84 changed files with 2,818 additions and 1,896 deletions.
11 changes: 11 additions & 0 deletions .cargo/config.toml
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"
10 changes: 10 additions & 0 deletions .github/actionlint.yml
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:
- .*
Loading

0 comments on commit c8ce680

Please sign in to comment.