about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJulien <96022417+Oneirical@users.noreply.github.com>2024-05-14 16:43:39 -0400
committerGitHub <noreply@github.com>2024-05-14 16:43:39 -0400
commitb1e5e5161a2ef27852aab40cf3472187bdda5fee (patch)
tree87d2f736914910d527ee5e384c6b32544da0650c
parent1f5837ae2506d5439b31195b7fcf784b9ee90d2b (diff)
downloadrust-b1e5e5161a2ef27852aab40cf3472187bdda5fee.tar.gz
rust-b1e5e5161a2ef27852aab40cf3472187bdda5fee.zip
remove cxx_flags
-rw-r--r--tests/run-make/c-link-to-rust-staticlib/rmake.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/run-make/c-link-to-rust-staticlib/rmake.rs b/tests/run-make/c-link-to-rust-staticlib/rmake.rs
index d73ca413777..762d7953a9a 100644
--- a/tests/run-make/c-link-to-rust-staticlib/rmake.rs
+++ b/tests/run-make/c-link-to-rust-staticlib/rmake.rs
@@ -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() {
@@ -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"));