mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00

In particular, anything that includes `none` in the target tripple, and `nvptx64-nvidia-cuda`
8 lines
178 B
Rust
8 lines
178 B
Rust
//@ needs-target-std
|
|
use run_make_support::rustc;
|
|
|
|
fn main() {
|
|
rustc().input("foo.rs").crate_type("rlib").run();
|
|
rustc().input("foo.rs").crate_type("rlib,rlib").run();
|
|
}
|