Skip to content

Commit 45cc780

Browse files
authored
Merge branch 'master' into feat/disallow-debug-format
2 parents 706ca5e + eb2041f commit 45cc780

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/labels.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,3 +209,7 @@
209209
- name: research
210210
color: "6F42C1"
211211
description: Benchmarks, load tests, operational analysis, or proof of concepts
212+
213+
- name: no-track
214+
color: "000000"
215+
description: Used to skip tracking in Swarmia analytics, etc.

earthly/rust/stdcfgs/cargo_config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
linker = "clang"
1515
rustflags = [
1616
"-C", "link-arg=-fuse-ld=/usr/bin/mold",
17-
"-C", "target-feature=-crt-static"
17+
"-C", "target-feature=+crt-static"
1818
]
1919

2020
# Should be the default to have fully static rust programs in CI
2121
[target.aarch64-unknown-linux-musl]
2222
linker = "clang"
2323
rustflags = [
2424
"-C", "link-arg=-fuse-ld=/usr/bin/mold",
25-
"-C", "target-feature=-crt-static"
25+
"-C", "target-feature=+crt-static"
2626
]
2727

2828
[build]

examples/rust/.cargo/config.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
linker = "clang"
1515
rustflags = [
1616
"-C", "link-arg=-fuse-ld=/usr/bin/mold",
17-
"-C", "target-feature=-crt-static"
17+
"-C", "target-feature=+crt-static"
1818
]
1919

2020
# Should be the default to have fully static rust programs in CI
2121
[target.aarch64-unknown-linux-musl]
2222
linker = "clang"
2323
rustflags = [
2424
"-C", "link-arg=-fuse-ld=/usr/bin/mold",
25-
"-C", "target-feature=-crt-static"
25+
"-C", "target-feature=+crt-static"
2626
]
2727

2828
[build]

0 commit comments

Comments
 (0)