Files
Folkert de Vries efaf3eb8a0 ignore run-make tests that need std on no_std targets
In particular, anything that includes `none` in the target tripple, and `nvptx64-nvidia-cuda`
2025-06-12 15:10:12 +02:00

18 lines
631 B
Rust

//@ needs-target-std
//
// If a library is compiled with -C extra-filename, the rust compiler
// will take this into account when searching for libraries. However,
// if that library is then renamed, the rust compiler should fall back
// to its regular library location logic and not immediately fail to find
// the renamed library.
// See https://github.com/rust-lang/rust/pull/49253
use run_make_support::{rfs, rustc};
fn main() {
rustc().extra_filename("-hash").input("foo.rs").run();
rustc().input("bar.rs").run();
rfs::rename("libfoo-hash.rlib", "libfoo-another-hash.rlib");
rustc().input("baz.rs").run();
}