Skip to content

Commit 0e859e4

Browse files
committed
Auto merge of rust-lang#125702 - workingjubilee:tell-tidy-about-csky, r=Kobzol,lqd
Give tidy the good news about C-SKY It seems this was overlooked in rust-lang#125472 because we don't test C-SKY much yet. Fixes rust-lang#125697 r? `@erikdesjardins`
2 parents 5870f1c + 81bc4d0 commit 0e859e4

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/tools/tidy/src/target_specific_tests.rs

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ const KNOWN_LLVM_COMPONENTS: &[&str] = &[
1515
"arm",
1616
"avr",
1717
"bpf",
18+
"csky",
1819
"hexagon",
1920
"loongarch",
2021
"m68k",

tests/ui/abi/compatibility.rs

+4-5
Original file line numberDiff line numberDiff line change
@@ -52,17 +52,16 @@
5252
//@ revisions: m68k
5353
//@[m68k] compile-flags: --target m68k-unknown-linux-gnu
5454
//@[m68k] needs-llvm-components: m68k
55+
//@ revisions: csky
56+
//@[csky] compile-flags: --target csky-unknown-linux-gnuabiv2
57+
//@[csky] needs-llvm-components: csky
58+
5559
// FIXME: disabled on nvptx64 since the target ABI fails the sanity check
5660
// see https://github.com/rust-lang/rust/issues/117480
5761
/* revisions: nvptx64
5862
[nvptx64] compile-flags: --target nvptx64-nvidia-cuda
5963
[nvptx64] needs-llvm-components: nvptx
6064
*/
61-
// FIXME: disabled since it fails on CI saying the csky component is missing
62-
/* revisions: csky
63-
[csky] compile-flags: --target csky-unknown-linux-gnuabiv2
64-
[csky] needs-llvm-components: csky
65-
*/
6665
#![feature(rustc_attrs, unsized_fn_params, transparent_unions)]
6766
#![cfg_attr(not(host), feature(no_core, lang_items), no_std, no_core)]
6867
#![allow(unused, improper_ctypes_definitions, internal_features)]

0 commit comments

Comments
 (0)