Skip to content

Commit 001ff20

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 1535c72 + 870e8a0 commit 001ff20

File tree

1,153 files changed

+804648
-14538
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,153 files changed

+804648
-14538
lines changed

Cargo.lock

Lines changed: 51 additions & 76 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
cargo-features = ["profile-rustflags"]
2+
13
[workspace]
24
resolver = "1"
35
members = [
@@ -44,9 +46,17 @@ object.debug = 0
4446
rustc-demangle.debug = 0
4547
rustc-demangle.opt-level = "s"
4648

49+
# panic_abort must always be compiled with panic=abort, even when the rest of the
50+
# sysroot is panic=unwind.
51+
[profile.dev.package.panic_abort]
52+
rustflags = ["-Cpanic=abort"]
53+
54+
[profile.release.package.panic_abort]
55+
rustflags = ["-Cpanic=abort"]
56+
4757
[patch.crates-io]
48-
# See comments in `library/rustc-std-workspace-core/README.md` for what's going on
49-
# here
58+
# See comments in `library/rustc-std-workspace-core/README.md` for what's going on here
5059
rustc-std-workspace-core = { path = 'rustc-std-workspace-core' }
5160
rustc-std-workspace-alloc = { path = 'rustc-std-workspace-alloc' }
5261
rustc-std-workspace-std = { path = 'rustc-std-workspace-std' }
62+
compiler_builtins = { path = "compiler-builtins/compiler-builtins" }

0 commit comments

Comments
 (0)