Skip to content

Commit fd1fe1c

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

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
target: aarch64-unknown-linux-gnu
6767
- rust: nightly
6868
target: aarch64-unknown-linux-gnu
69-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
69+
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
7070
- rust: nightly-2023-05-12
7171
target: aarch64_be-unknown-linux-gnu
7272
- rust: '1.59'

tools/build.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ default_targets=(
3131
# rustc --print target-list | grep -E '^(aarch64|arm64)'
3232
aarch64-unknown-linux-gnu
3333
# aarch64 big endian
34-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
34+
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
3535
# aarch64_be-unknown-linux-gnu
3636
# aarch64 ILP32 ABI
3737
aarch64-unknown-linux-gnu_ilp32
3838
# aarch64 ILP32 ABI big endian
39-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
39+
# TODO: compiler-builtins bug https://github.com/rust-lang/compiler-builtins/pull/539
4040
# aarch64_be-unknown-linux-gnu_ilp32
4141
# aarch64 always support lse
4242
aarch64-apple-darwin
@@ -53,17 +53,15 @@ default_targets=(
5353
# armv8-a
5454
armv8a-none-eabi # custom target
5555
# armv8-a big endian
56-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
57-
# armeb-unknown-linux-gnueabi
56+
armeb-unknown-linux-gnueabi
5857
# armv7-r
5958
armv7r-none-eabi
6059
# armv7-r big endian
6160
armebv7r-none-eabi
6261
# armv8-r
6362
armv8r-none-eabi # custom target
6463
# armv8-r big endian
65-
# TODO: core_simd bug https://github.com/rust-lang/portable-simd/pull/348
66-
# armebv8r-none-eabi # custom target
64+
armebv8r-none-eabi # custom target
6765
# armv6-m
6866
thumbv6m-none-eabi
6967
# armv7-m

0 commit comments

Comments
 (0)