f9micro / f9-kernel

An efficient and secure microkernel built for ARM Cortex-M cores, inspired by L4
Other
679 stars 145 forks source link

Remove CFLAGS -fshort-double #120

Closed louisom closed 7 years ago

louisom commented 7 years ago

According to gcc mailing list [PATCH 1/2] Remove -fshort-double (https://gcc.gnu.org/ml/gcc-patches/2014-09/msg02464.html)

CFLAGS -fshort-double has been remove from gcc, testing on aam-none-eabi-gcc version 6.2.0, CFLAGS -fshort-double report error:

arm-none-eabi-gcc: error: unrecognized command line
option '-fshort-double'; did you mean '-fshort-enums'?

So, this patch remove -fshort-double from platform/build.mk. Compile success @ stm32f429.

jserv commented 7 years ago

Thanks again for your contributions.