unix/Makefile: Always enable -f*-sections regardless of DEBUG setting.

pull/6405/head
Jim Mussared 2020-08-14 16:40:55 +10:00 zatwierdzone przez Damien George
rodzic aa18ab7db2
commit feed69aa5c
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -47,10 +47,12 @@ ifdef DEBUG
COPT ?= -O0
else
COPT ?= -Os
COPT += -fdata-sections -ffunction-sections
COPT += -DNDEBUG
endif
# Remove unused sections.
COPT += -fdata-sections -ffunction-sections
# Always enable symbols -- They're occasionally useful, and don't make it into the
# final .bin/.hex/.dfu so the extra size doesn't matter.
CFLAGS += -g