Add a test case for #131164

This commit is contained in:
DianQK 2024-10-22 10:46:10 +08:00
parent 916e9ced40
commit 6570a6fe92
No known key found for this signature in database
3 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#[no_mangle]
fn foo() {}
#[no_mangle]
fn bar() {}
fn main() {}

View File

@ -0,0 +1,18 @@
// This test ensures that the “symbol not found” error does not occur
// when the symbols in the `PROVIDE` of the link script can be eliminated.
// This is a regression test for #131164.
//@ needs-rust-lld
//@ only-x86_64-unknown-linux-gnu
use run_make_support::rustc;
fn main() {
rustc()
.input("main.rs")
.arg("-Zlinker-features=+lld")
.arg("-Clink-self-contained=+linker")
.arg("-Zunstable-options")
.link_arg("-Tscript.t")
.run();
}

View File

@ -0,0 +1 @@
PROVIDE(foo = bar);