rewrite mixing-deps in rmake
This commit is contained in:
parent
d9d013bec0
commit
634270e8da
@ -156,7 +156,6 @@ run-make/min-global-align/Makefile
|
||||
run-make/mingw-export-call-convention/Makefile
|
||||
run-make/mismatching-target-triples/Makefile
|
||||
run-make/missing-crate-dependency/Makefile
|
||||
run-make/mixing-deps/Makefile
|
||||
run-make/mixing-formats/Makefile
|
||||
run-make/mixing-libs/Makefile
|
||||
run-make/msvc-opt-minsize/Makefile
|
||||
|
@ -4,6 +4,8 @@
|
||||
|
||||
//@ ignore-cross-compile
|
||||
|
||||
use run_make_support::rustc;
|
||||
|
||||
fn main() {
|
||||
let lto_flags = ["-Clto", "-Clto=yes", "-Clto=off", "-Clto=thin", "-Clto=fat"];
|
||||
for flag in lto_flags {
|
||||
|
@ -1,8 +0,0 @@
|
||||
# ignore-cross-compile
|
||||
include ../tools.mk
|
||||
|
||||
all:
|
||||
$(RUSTC) both.rs -C prefer-dynamic
|
||||
$(RUSTC) dylib.rs -C prefer-dynamic
|
||||
$(RUSTC) prog.rs
|
||||
$(call RUN,prog)
|
13
tests/run-make/mixing-formats/rmake.rs
Normal file
13
tests/run-make/mixing-formats/rmake.rs
Normal file
@ -0,0 +1,13 @@
|
||||
// This test invokes the main function in prog.rs, which has dependencies
|
||||
// in both an rlib and a dylib. This test checks that these different library
|
||||
// types can be successfully mixed.
|
||||
//@ ignore-cross-compile
|
||||
|
||||
use run_make_support::{run, rustc};
|
||||
|
||||
fn main() {
|
||||
rustc().input("both.rs").arg("-Cprefer-dynamic").run();
|
||||
rustc().input("dylib.rs").arg("-Cprefer-dynamic").run();
|
||||
rustc().input("prog.rs").run();
|
||||
run("prog");
|
||||
}
|
Loading…
Reference in New Issue
Block a user