Skip to content

Commit 30a3068

Browse files
committed
Auto merge of #132905 - xingxue-ibm:link-unwind, r=<try>
[AIX] Add crate "unwind" to link with libunwind The Rust on IBM AIX uses LLVM's `libunwind`. Since crate `unwind` is a dependency of crate `std` and `#![no_std]` is specified in the test case, `libunwind` is not included in the link command by default. As a result, the test case fails to link with the error "Undefined symbol: ._Unwind_Resume" on AIX. This PR explicitly adds crate `unwind` for AIX, along with feature `panic_unwind`, which is required to include the `unwind` crate. try-job: test-various
2 parents 22bcb81 + fc1c3d9 commit 30a3068

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

tests/ui/extern-flag/auxiliary/panic_handler.rs

+5-9
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
#![feature(lang_items)]
1+
#![feature(lang_items, panic_unwind)]
22
#![no_std]
33

4-
// Since `rustc` generally passes `-nodefaultlibs` to the linker,
5-
// Rust programs link necessary system libraries via `#[link()]`
6-
// attributes in the `libc` crate. `libc` is a dependency of `std`,
7-
// but as we are `#![no_std]`, we need to include it manually.
8-
// Except on windows-msvc.
9-
#![feature(rustc_private)]
10-
#[cfg(not(all(windows, target_env = "msvc")))]
11-
extern crate libc;
4+
// Since the `unwind` crate is a dependency of the `std` crate, and we have
5+
// `#![no_std]`, the unwinder is not included in the link command by default.
6+
// We need to include crate `unwind` manually.
7+
extern crate unwind;
128

139
#[panic_handler]
1410
pub fn begin_panic_handler(_info: &core::panic::PanicInfo<'_>) -> ! {

0 commit comments

Comments
 (0)