Skip to content

Commit

Permalink
ci: core_simd bug has been fixed
Browse files Browse the repository at this point in the history
However, aarch64_be linux is still broken due to compiler-builtins bug:
rust-lang/compiler-builtins#539
  • Loading branch information
taiki-e committed Jul 8, 2023
1 parent 06ba9b8 commit fe4692f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
target: aarch64-unknown-linux-gnu
- rust: nightly
target: aarch64-unknown-linux-gnu
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
- rust: nightly-2023-05-12
target: aarch64_be-unknown-linux-gnu
- rust: stable
Expand Down
8 changes: 4 additions & 4 deletions tools/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ default_targets=(
# aarch64 always support lse & lse2
aarch64-apple-darwin
# aarch64 big endian
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
# aarch64_be-unknown-linux-gnu
# aarch64 ILP32 ABI
aarch64-unknown-linux-gnu_ilp32
# aarch64 ILP32 ABI big endian
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
# aarch64_be-unknown-linux-gnu_ilp32

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

0 comments on commit fe4692f

Please sign in to comment.