Makefile-ARM: disable Link Time Optimisation (-flto).

LTO makes generated assembly unreadable and also produces, despite
its intention, bigger binaries, currently by 90 bytes.
This commit is contained in:
Markus Hitter 2015-08-06 20:11:25 +02:00
parent 1a2973a2de
commit 6b6aa84124
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ endif
CFLAGS += -Wall
CFLAGS += -Wstrict-prototypes
CFLAGS += -Os
CFLAGS += -flto
#CFLAGS += -flto
CFLAGS += -ffunction-sections
CFLAGS += -fdata-sections
#CFLAGS += -dM -E # To list all predefined macros into the .o file.