Files
rust/tests/run-make/export/simple/rmake.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
313 B
Rust
Raw Normal View History

//@ ignore-cross-compile
// NOTE: `sdylib`'s platform support is basically that of `dylib`.
//@ needs-crate-type: dylib
use run_make_support::rustc;
fn main() {
rustc().env("RUSTC_FORCE_RUSTC_VERSION", "1").input("libr.rs").run();
rustc().env("RUSTC_FORCE_RUSTC_VERSION", "2").input("app.rs").run();
}