]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/native.mk
Merge branch 'master'
[qmk_firmware.git] / tmk_core / native.mk
1 CC = gcc
2 OBJCOPY = 
3 OBJDUMP = 
4 SIZE = 
5 AR = 
6 NM = 
7 HEX = 
8 EEP = 
9 BIN =
10
11
12 COMPILEFLAGS += -funsigned-char
13 COMPILEFLAGS += -funsigned-bitfields
14 COMPILEFLAGS += -ffunction-sections
15 COMPILEFLAGS += -fdata-sections
16 COMPILEFLAGS += -fshort-enums
17
18 CFLAGS += $(COMPILEFLAGS)
19 CFLAGS += -fno-inline-small-functions
20 CFLAGS += -fno-strict-aliasing
21
22 CPPFLAGS += $(COMPILEFLAGS)
23 CPPFLAGS += -fno-exceptions
24 CPPFLAGS += -std=gnu++11