We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
needs-ar
1 parent 62a5acc commit 22cac46Copy full SHA for 22cac46
src/tools/compiletest/src/header/needs.rs
@@ -144,6 +144,11 @@ pub(super) fn handle_needs(
144
condition: config.runner.as_ref().is_some_and(|r| r.contains("wasmtime")),
145
ignore_reason: "ignored when wasmtime runner is not available",
146
},
147
+ Need {
148
+ name: "needs-ar",
149
+ condition: !config.target.contains("msvc"),
150
+ ignore_reason: "ignored when ar command is not available",
151
+ },
152
Need {
153
name: "needs-symlink",
154
condition: cache.symlinks,
tests/run-make/invalid-library/rmake.rs
@@ -1,3 +1,5 @@
1
+//@ needs-ar
2
+
3
use run_make_support::fs_wrapper::create_file;
4
use run_make_support::{ar_command, rustc};
5
0 commit comments