In particular, anything that includes `none` in the target tripple, and `nvptx64-nvidia-cuda`
7 lines
212 B
Rust
7 lines
212 B
Rust
//@ needs-target-std
|
|
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();
|
|
}
|