File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ jobs:
110
110
- rust : nightly
111
111
target : aarch64-unknown-linux-gnu
112
112
flags : -Z codegen-backend=cranelift
113
- - rust : nightly
113
+ - rust : nightly-2024-02-05 # TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/396
114
114
target : aarch64_be-unknown-linux-gnu
115
115
- rust : stable
116
116
target : aarch64-unknown-linux-musl
Original file line number Diff line number Diff line change @@ -75,12 +75,15 @@ default_targets=(
75
75
# aarch64 with FEAT_LSE & FEAT_LSE2
76
76
aarch64-apple-darwin
77
77
# aarch64 big endian
78
- aarch64_be-unknown-linux-gnu
79
- aarch64_be-unknown-netbsd
78
+ # TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/396
79
+ # aarch64_be-unknown-linux-gnu
80
+ # TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/396
81
+ # aarch64_be-unknown-netbsd
80
82
# aarch64 ILP32 ABI
81
83
aarch64-unknown-linux-gnu_ilp32
82
84
# aarch64 ILP32 ABI big endian
83
- aarch64_be-unknown-linux-gnu_ilp32
85
+ # TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/396
86
+ # aarch64_be-unknown-linux-gnu_ilp32
84
87
85
88
# pre-v6 arm linux-like
86
89
armv4t-unknown-linux-gnueabi
@@ -391,6 +394,8 @@ build() {
391
394
case " ${target} " in
392
395
# TODO: LLVM bug: https://github.com/rust-lang/rust/issues/89498
393
396
m68k-unknown-linux-gnu) return 0 ;;
397
+ # TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/396
398
+ aarch64_be-* ) return 0 ;;
394
399
esac
395
400
RUSTFLAGS=" ${target_rustflags} " \
396
401
x_cargo " ${args[@]} " --manifest-path Cargo.toml " $@ "
You can’t perform that action at this time.
0 commit comments