Skip to content

Commit

Permalink
remove cxx_flags
Browse files Browse the repository at this point in the history
  • Loading branch information
Oneirical committed May 14, 2024
1 parent 1f5837a commit b1e5e51
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/run-make/c-link-to-rust-staticlib/rmake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

//@ ignore-cross-compile

use run_make_support::{cc, extra_c_flags, extra_cxx_flags, run, rustc, static_lib};
use run_make_support::{cc, extra_c_flags, run, rustc, static_lib};
use std::fs;

fn main() {
Expand All @@ -12,7 +12,6 @@ fn main() {
.input(static_lib("foo"))
.out_exe("bar")
.args(&extra_c_flags())
.args(&extra_cxx_flags())
.run();
run("bar");
fs::remove_file(static_lib("foo"));
Expand Down

0 comments on commit b1e5e51

Please sign in to comment.