2024-05-28 14:37:08 -04:00
|
|
|
// 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
|
|
|
|
|
2024-06-06 21:34:34 +02:00
|
|
|
use run_make_support::{rfs, rustc};
|
2024-06-06 20:47:00 +02:00
|
|
|
|
2024-05-28 14:37:08 -04:00
|
|
|
fn main() {
|
|
|
|
rustc().extra_filename("-hash").input("foo.rs").run();
|
|
|
|
rustc().input("bar.rs").run();
|
2024-07-17 12:42:06 +00:00
|
|
|
rfs::rename("libfoo-hash.rlib", "libfoo-another-hash.rlib");
|
2024-05-28 14:37:08 -04:00
|
|
|
rustc().input("baz.rs").run();
|
|
|
|
}
|