@@ -13,6 +13,7 @@ Compiler
1313 `rustc` whether to link its own C runtime and libraries or to rely on a external
1414 linker to find them. (Supported only on `windows-gnu`, `linux-musl`, and `wasi` platforms.)
1515- [You can now use `-C target-feature=+crt-static` on `linux-gnu` targets.][77386]
16+ Note: If you're using cargo you must explicitly pass the `--target` flag.
1617- [Added tier 2\* support for `aarch64-unknown-linux-musl`.][76420]
1718
1819\* Refer to Rust's [platform support page][forge-platform-support] for more
@@ -79,8 +80,10 @@ Compatibility Notes
7980 disallow zero-initialization.][71274]
8081- [`#[target_feature]` will now error if used in a place where it has no effect.][78143]
8182- [Foreign exceptions are now caught by `catch_unwind` and will cause an abort.][70212]
83+ Note: This behaviour is not guaranteed and is still considered undefined behaviour,
84+ see the [`catch_unwind`] documentation for further information.
85+
8286
83- [78143]: https://github.com/rust-lang/rust/issues/78143
8487
8588Internal Only
8689-------------
@@ -94,6 +97,7 @@ related tools.
9497- [cg_llvm: `fewer_names` in `uncached_llvm_type`][76030]
9598- [Made `ensure_sufficient_stack()` non-generic][76680]
9699
100+ [78143]: https://github.com/rust-lang/rust/issues/78143
97101[76680]: https://github.com/rust-lang/rust/pull/76680/
98102[76030]: https://github.com/rust-lang/rust/pull/76030/
99103[70212]: https://github.com/rust-lang/rust/pull/70212/
@@ -118,6 +122,7 @@ related tools.
118122[73461]: https://github.com/rust-lang/rust/pull/73461/
119123[73166]: https://github.com/rust-lang/rust/pull/73166/
120124[intradoc-links]: https://doc.rust-lang.org/rustdoc/linking-to-items-by-name.html
125+ [`catch_unwind`]: https://doc.rust-lang.org/std/panic/fn.catch_unwind.html
121126[`Option::is_some`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.is_some
122127[`Option::is_none`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.is_none
123128[`Option::as_ref`]: https://doc.rust-lang.org/std/option/enum.Option.html#method.as_ref
0 commit comments