Skip to content

Commit fe4692f

Browse files
committed
ci: core_simd bug has been fixed
However, aarch64_be linux is still broken due to compiler-builtins bug: rust-lang/compiler-builtins#539
1 parent 06ba9b8 commit fe4692f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
target: aarch64-unknown-linux-gnu
9292
- rust: nightly
9393
target: aarch64-unknown-linux-gnu
94-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
94+
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
9595
- rust: nightly-2023-05-12
9696
target: aarch64_be-unknown-linux-gnu
9797
- rust: stable

tools/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ default_targets=(
7474
# aarch64 always support lse & lse2
7575
aarch64-apple-darwin
7676
# aarch64 big endian
77-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
77+
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
7878
# aarch64_be-unknown-linux-gnu
7979
# aarch64 ILP32 ABI
8080
aarch64-unknown-linux-gnu_ilp32
8181
# aarch64 ILP32 ABI big endian
82-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
82+
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
8383
# aarch64_be-unknown-linux-gnu_ilp32
8484

8585
# pre-v6 arm linux-like
@@ -396,8 +396,8 @@ build() {
396396
case "${target}" in
397397
# TODO: LLVM bug: https://github.com/rust-lang/rust/issues/89498
398398
m68k-unknown-linux-gnu) return 0 ;;
399-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
400-
armeb* | aarch64_be*) return 0 ;;
399+
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
400+
aarch64_be*) return 0 ;;
401401
esac
402402
RUSTFLAGS="${target_rustflags}" \
403403
x_cargo "${args[@]}" --manifest-path Cargo.toml "$@"

0 commit comments

Comments
 (0)