Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Jul 28, 2023
1 parent df20689 commit c70eeea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/.cspell/project-dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ isellt
ishld
isync
kuser
lclang
ldar
ldaxp
ldxp
Expand Down
11 changes: 6 additions & 5 deletions tools/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -168,11 +168,6 @@ if [[ -n "${target}" ]]; then
fi
fi
fi
args+=(--features "${test_features}")
case "${cmd}" in
build) ;;
*) args+=(--workspace --exclude bench --exclude portable-atomic-internal-codegen) ;;
esac
target="${target:-"${host}"}"
target_lower="${target//-/_}"
target_lower="${target_lower//./_}"
Expand All @@ -184,10 +179,16 @@ case "${target}" in
hexagon-unknown-linux-musl)
release=(--release)
build_std+=(-Z build-std-features=llvm-libunwind)
test_features="std"
export RUSTFLAGS="${RUSTFLAGS:-} -C link-args=-lclang_rt.builtins-hexagon"
export RUSTDOCFLAGS="${RUSTDOCFLAGS:-} -C link-args=-lclang_rt.builtins-hexagon"
;;
esac
args+=(--features "${test_features}")
case "${cmd}" in
build) ;;
*) args+=(--workspace --exclude bench --exclude portable-atomic-internal-codegen) ;;
esac

case "${cmd}" in
build)
Expand Down

0 comments on commit c70eeea

Please sign in to comment.