mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-17 17:56:06 +00:00
In particular, anything that includes `none` in the target tripple, and `nvptx64-nvidia-cuda`
8 lines
170 B
Rust
8 lines
170 B
Rust
//@ needs-target-std
|
|
use run_make_support::{path, rustc};
|
|
|
|
fn main() {
|
|
rustc().input("bar.rs").crate_name("foo").run();
|
|
assert!(path("libfoo.rlib").is_file());
|
|
}
|