Switch armel build to -Os
Without any -O option, the default is -O0, and then the assembly code is not used, so this would not be a non-regression test for the assembly code that doesn't build.
This commit is contained in:
parent
0bd284dc51
commit
e07b9ff2d9
1 changed files with 2 additions and 2 deletions
|
@ -1081,9 +1081,9 @@ component_build_arm_none_eabi_gcc () {
|
||||||
}
|
}
|
||||||
|
|
||||||
component_build_arm_none_eabi_gcc_armel () {
|
component_build_arm_none_eabi_gcc_armel () {
|
||||||
msg "build: arm-none-eabi-gcc, make" # ~ 10s
|
msg "build: arm-none-eabi-gcc -march=arm5vte, make" # ~ 10s
|
||||||
scripts/config.pl baremetal
|
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
|
make CC=arm-none-eabi-gcc AR=arm-none-eabi-ar CFLAGS='-Werror -Wall -Wextra -march=armv5te -O1' 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 () {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue