mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 20:18:12 +00:00
Fixes test for MBEDTLS_NO_UDBL_DIVISION
The test for MBEDTLS_NO_UDBL_DIVISION wasn't preserving it's own config.h for the next test. Also added comments to ARM Compiler 6 tests to better explain them.
This commit is contained in:
parent
256da0f0d8
commit
2c4d558873
1 changed files with 11 additions and 1 deletions
|
@ -486,6 +486,7 @@ CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld CFLAGS='-Werror -Wa
|
||||||
|
|
||||||
msg "build: arm-none-eabi-gcc -DMBEDTLS_NO_UDBL_DIVISION, make" # ~ 10s
|
msg "build: arm-none-eabi-gcc -DMBEDTLS_NO_UDBL_DIVISION, make" # ~ 10s
|
||||||
cleanup
|
cleanup
|
||||||
|
cp "$CONFIG_H" "$CONFIG_BAK"
|
||||||
scripts/config.pl full
|
scripts/config.pl full
|
||||||
scripts/config.pl unset MBEDTLS_NET_C
|
scripts/config.pl unset MBEDTLS_NET_C
|
||||||
scripts/config.pl unset MBEDTLS_TIMING_C
|
scripts/config.pl unset MBEDTLS_TIMING_C
|
||||||
|
@ -526,11 +527,20 @@ scripts/config.pl unset MBEDTLS_PLATFORM_TIME_ALT # depends on MBEDTLS_HAVE_TIME
|
||||||
CC="$ARMC5_CC" AR="$ARMC5_AR" WARNING_CFLAGS='--strict --c99' make lib
|
CC="$ARMC5_CC" AR="$ARMC5_AR" WARNING_CFLAGS='--strict --c99' make lib
|
||||||
make clean
|
make clean
|
||||||
|
|
||||||
|
# ARM Compiler 6 - Target ARMv7-A
|
||||||
armc6_build_test "--target=arm-arm-none-eabi -march=armv7-a"
|
armc6_build_test "--target=arm-arm-none-eabi -march=armv7-a"
|
||||||
|
|
||||||
|
# ARM Compiler 6 - Target ARMv7-M
|
||||||
armc6_build_test "--target=arm-arm-none-eabi -march=armv7-m"
|
armc6_build_test "--target=arm-arm-none-eabi -march=armv7-m"
|
||||||
|
|
||||||
|
# ARM Compiler 6 - Target ARMv8-A - AArch32
|
||||||
armc6_build_test "--target=arm-arm-none-eabi -march=armv8.2-a"
|
armc6_build_test "--target=arm-arm-none-eabi -march=armv8.2-a"
|
||||||
|
|
||||||
|
# ARM Compiler 6 - Target ARMv8-M
|
||||||
armc6_build_test "--target=arm-arm-none-eabi -march=armv8-m.main"
|
armc6_build_test "--target=arm-arm-none-eabi -march=armv8-m.main"
|
||||||
armc6_build_test "--target=aarch64-arm-none-eabi"
|
|
||||||
|
# ARM Compiler 6 - Target ARMv8-A - AArch64
|
||||||
|
armc6_build_test "--target=aarch64-arm-none-eabi -march=armv8.2-a"
|
||||||
|
|
||||||
msg "build: allow SHA1 in certificates by default"
|
msg "build: allow SHA1 in certificates by default"
|
||||||
cleanup
|
cleanup
|
||||||
|
|
Loading…
Reference in a new issue