Skip to content

Commit

Permalink
ci: Temporarily disable hexagon-unknown-none-elf build
Browse files Browse the repository at this point in the history
rust-lang/compiler-builtins#577 caused regression on no-std hexagon:

```
  error: symbol 'fma' is already defined

  error: symbol 'fmax' is already defined
```
  • Loading branch information
taiki-e committed Apr 17, 2024
1 parent 9cfffb7 commit a7f14e1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,8 @@ build() {
case "${target}" in
# TODO: LLVM bug: https://github.com/rust-lang/rust/issues/89498
m68k-unknown-linux-gnu) return 0 ;;
# TODO: "error: symbol 'f{ma,max}' is already defined" due to https://github.com/rust-lang/compiler-builtins/pull/577
hexagon-unknown-none-elf) return 0 ;;
esac
RUSTFLAGS="${target_rustflags}" \
x_cargo "${args[@]}" --manifest-path Cargo.toml "$@"
Expand Down

0 comments on commit a7f14e1

Please sign in to comment.