diff options
author | Daniel Friesel <derf@finalrewind.org> | 2016-02-16 18:40:42 +0100 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2016-02-16 18:40:42 +0100 |
commit | 3a8a2ed58f61cd5f2913e8a71458208eaaf7e76e (patch) | |
tree | 9b9e5dc05cd187eca75ffb79f0af96443af636e9 /Makefile | |
parent | cc23ccbec8bb37ed78567410b60b23e8cd2603a9 (diff) |
Makefile: Remove useless -fwhole-program compiler flag
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -12,7 +12,7 @@ MCU_FLAGS = -mmcu=attiny88 -DF_CPU=8000000UL SHARED_FLAGS = ${MCU_FLAGS} -I. -Os -Wall -Wextra -pedantic SHARED_FLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -SHARED_FLAGS += -fwhole-program -flto -mstrict-X +SHARED_FLAGS += -flto -mstrict-X CFLAGS += ${SHARED_FLAGS} -std=c11 CXXFLAGS += ${SHARED_FLAGS} -std=c++11 -fno-rtti -fno-exceptions |