mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-24 00:41:02 +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
a5cb7d48f3
commit
93e4e03f94
|
@ -1088,6 +1088,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