mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-05-08 03:02:21 +00:00
Add a build on ARMv5TE in ARM mode
Non-regression test for "bn_mul.h: require at least ARMv6 to enable the ARM DSP code"
This commit is contained in:
parent
9ff53ffbda
commit
0bd284dc51
|
@ -1080,6 +1080,12 @@ component_build_arm_none_eabi_gcc () {
|
||||||
make CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld CFLAGS='-Werror -Wall -Wextra' lib
|
make CC=arm-none-eabi-gcc AR=arm-none-eabi-ar LD=arm-none-eabi-ld CFLAGS='-Werror -Wall -Wextra' lib
|
||||||
}
|
}
|
||||||
|
|
||||||
|
component_build_arm_none_eabi_gcc_armel () {
|
||||||
|
msg "build: arm-none-eabi-gcc, make" # ~ 10s
|
||||||
|
scripts/config.pl baremetal
|
||||||
|
make CC=arm-none-eabi-gcc AR=arm-none-eabi-ar CFLAGS='-Werror -Wall -Wextra -march=armv5te' LDFLAGS='-march=armv5te' SHELL='sh -x' lib
|
||||||
|
}
|
||||||
|
|
||||||
component_build_arm_none_eabi_gcc_no_udbl_division () {
|
component_build_arm_none_eabi_gcc_no_udbl_division () {
|
||||||
msg "build: arm-none-eabi-gcc -DMBEDTLS_NO_UDBL_DIVISION, make" # ~ 10s
|
msg "build: arm-none-eabi-gcc -DMBEDTLS_NO_UDBL_DIVISION, make" # ~ 10s
|
||||||
scripts/config.pl baremetal
|
scripts/config.pl baremetal
|
||||||
|
|
Loading…
Reference in a new issue