Commit 0ad57470 authored by Vowstar's avatar Vowstar
Browse files

Merge pull request #414 from robertfoss/master

Add -Os flag to release and debug builds
parents 92c98c52 4c2ad0f5
......@@ -53,11 +53,11 @@ TARGET_LDFLAGS = \
--text-section-literals
ifeq ($(FLAVOR),debug)
TARGET_LDFLAGS += -g -O2
TARGET_LDFLAGS += -g -Os
endif
ifeq ($(FLAVOR),release)
TARGET_LDFLAGS += -g -O0
TARGET_LDFLAGS += -Os
endif
LD_FILE = $(LDDIR)/eagle.app.v6.ld
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment