rust/tests/run-make/c-link-to-rust-staticlib/rmake.rs

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

17 lines
534 B
Rust
Raw Normal View History

2024-05-11 16:20:31 -05:00
// This test checks that C linking with Rust does not encounter any errors, with a static library.
// See https://github.com/rust-lang/rust/issues/10434
//@ ignore-cross-compile
use run_make_support::fs_wrapper::remove_file;
use run_make_support::{cc, extra_c_flags, run, rustc, static_lib_name};
2024-05-11 16:20:31 -05:00
use std::fs;
fn main() {
rustc().input("foo.rs").run();
cc().input("bar.c").input(static_lib_name("foo")).out_exe("bar").args(&extra_c_flags()).run();
2024-05-11 16:20:31 -05:00
run("bar");
remove_file(static_lib_name("foo"));
2024-05-11 16:20:31 -05:00
run("bar");
}