We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a64880b commit 9f64368Copy full SHA for 9f64368
tests/run-make/same-lib-two-locations-no-panic/rmake.rs
@@ -14,9 +14,9 @@ fn main() {
14
let tmp_dir_other = tmp_dir().join("other");
15
16
fs::create_dir(&tmp_dir_other);
17
- rustc().input("foo.rs").crate_type("dylib").prefer_dynamic().run();
+ rustc().input("foo.rs").crate_type("dylib").arg("-Cprefer-dynamic").run();
18
fs::rename(dynamic_lib("foo"), &tmp_dir_other);
19
20
rustc().input("bar.rs").library_search_path(&tmp_dir_other).run();
21
fs::remove_dir_all(tmp_dir());
22
0 commit comments