Skip to content

Commit

Permalink
Merge pull request #7204 from lpy4105/issue/backport-all_sh-do-not-li…
Browse files Browse the repository at this point in the history
…st-unsupported-cases

Backport 2.28: all.sh: Do not list unsupported cases
  • Loading branch information
gilles-peskine-arm authored Mar 14, 2023
2 parents 39987eb + d216c04 commit a93b06d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions tests/scripts/all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3181,6 +3181,11 @@ component_build_armcc () {
# ARM Compiler 6 - Target ARMv8-A - AArch64
armc6_build_test "--target=aarch64-arm-none-eabi -march=armv8.2-a"
}
support_build_armcc () {
armc5_cc="$ARMC5_BIN_DIR/armcc"
armc6_cc="$ARMC6_BIN_DIR/armclang"
(check_tools "$armc5_cc" "$armc6_cc" > /dev/null 2>&1)
}

component_build_ssl_hw_record_accel() {
msg "build: default config with MBEDTLS_SSL_HW_RECORD_ACCEL enabled"
Expand Down Expand Up @@ -3211,8 +3216,8 @@ component_build_mingw () {
make WINDOWS_BUILD=1 clean
}
support_build_mingw() {
case $(i686-w64-mingw32-gcc -dumpversion) in
[0-5]*) false;;
case $(i686-w64-mingw32-gcc -dumpversion 2>/dev/null) in
[0-5]*|"") false;;
*) true;;
esac
}
Expand Down

0 comments on commit a93b06d

Please sign in to comment.