Skip to content

Commit 7964a88

Browse files
Rollup merge of rust-lang#136339 - veera-sivarajan:ignore-arm-unknown-headers, r=jieyouxu
CompileTest: Add Directives to Ignore `arm-unknown-*` Targets In rust-lang#134626, I want to ignore `arm-unknown-*` targets because the LLVM IR for those looks very different compared to other targets: https://rust.godbolt.org/z/ssYMhdv4x. I can use `ignore-arm` but, I think, it would exclude large number of Apple devices. So this PR adds a few directives to ignore `arm-unknown-*` targets specifically.
2 parents 63b329f + 4d42046 commit 7964a88

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/tools/compiletest/src/directive-list.rs

+4
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ const KNOWN_DIRECTIVE_NAMES: &[&str] = &[
3939
"ignore-android",
4040
"ignore-apple",
4141
"ignore-arm",
42+
"ignore-arm-unknown-linux-gnueabi",
43+
"ignore-arm-unknown-linux-gnueabihf",
44+
"ignore-arm-unknown-linux-musleabi",
45+
"ignore-arm-unknown-linux-musleabihf",
4246
"ignore-avr",
4347
"ignore-beta",
4448
"ignore-cdb",

0 commit comments

Comments
 (0)