8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aef02fb commit 4c1595aCopy full SHA for 4c1595a
tests/run-make-cargo/panic-immediate-abort-works/rmake.rs
@@ -4,7 +4,12 @@
4
// cleaner and more portable). So this test ensures that we didn't mix up a cfg or a compiler
5
// implementation detail in a way that makes panic=immediate-abort encounter errors at link time.
6
7
+// Ideally this test would be run for most targets, but unfortunately:
8
+// This test is currently written using `fn main() {}` which requires std.
9
+// And since the default linker is only a linker for the host, we can't handle cross-compilation.
10
+// Both of these shortcomings could be addressed at the cost of making the test more complicated.
11
//@ needs-target-std
12
+//@ ignore-cross-compile
13
14
#![deny(warnings)]
15
0 commit comments