lpc17xx: Optimize for size by default.

This single family had optimization disabled completely, unlike all
other families.  No reason for this.
This commit is contained in:
Karl Palsson 2015-04-30 16:05:12 +00:00
parent aac78ba464
commit a21da3aebf

View File

@ -24,7 +24,7 @@ PREFIX ?= arm-none-eabi
CC = $(PREFIX)-gcc CC = $(PREFIX)-gcc
AR = $(PREFIX)-ar AR = $(PREFIX)-ar
CFLAGS = -O0 -g \ CFLAGS = -Os -g \
-Wall -Wextra -Wimplicit-function-declaration \ -Wall -Wextra -Wimplicit-function-declaration \
-Wredundant-decls -Wmissing-prototypes -Wstrict-prototypes \ -Wredundant-decls -Wmissing-prototypes -Wstrict-prototypes \
-Wundef -Wshadow \ -Wundef -Wshadow \