diff options
author | Nick Brassel <nick@tzarc.org> | 2020-01-04 12:21:08 +1100 |
---|---|---|
committer | Nick Brassel <nick@tzarc.org> | 2020-01-31 15:29:23 +1100 |
commit | b28ee6b039841c387685ea54c8206cc6c2a6cb8a (patch) | |
tree | c8105304d97114b279c81465b4d4d923a731432e /tmk_core/native.mk | |
parent | 6544bd2e65664307f9572cc8110b55df250b0302 (diff) | |
download | qmk_firmware-b28ee6b039841c387685ea54c8206cc6c2a6cb8a.tar.gz qmk_firmware-b28ee6b039841c387685ea54c8206cc6c2a6cb8a.zip |
Fix misunderstanding of CPPFLAGS and CXXFLAGS.
Diffstat (limited to 'tmk_core/native.mk')
-rw-r--r-- | tmk_core/native.mk | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/tmk_core/native.mk b/tmk_core/native.mk index 530b50b84..3caf64454 100644 --- a/tmk_core/native.mk +++ b/tmk_core/native.mk | |||
@@ -1,13 +1,13 @@ | |||
1 | SYSTEM_TYPE := $(shell gcc -dumpmachine) | 1 | SYSTEM_TYPE := $(shell gcc -dumpmachine) |
2 | 2 | ||
3 | CC = gcc | 3 | CC = gcc |
4 | OBJCOPY = | 4 | OBJCOPY = |
5 | OBJDUMP = | 5 | OBJDUMP = |
6 | SIZE = | 6 | SIZE = |
7 | AR = | 7 | AR = |
8 | NM = | 8 | NM = |
9 | HEX = | 9 | HEX = |
10 | EEP = | 10 | EEP = |
11 | BIN = | 11 | BIN = |
12 | 12 | ||
13 | 13 | ||
@@ -24,6 +24,6 @@ CFLAGS += $(COMPILEFLAGS) | |||
24 | CFLAGS += -fno-inline-small-functions | 24 | CFLAGS += -fno-inline-small-functions |
25 | CFLAGS += -fno-strict-aliasing | 25 | CFLAGS += -fno-strict-aliasing |
26 | 26 | ||
27 | CPPFLAGS += $(COMPILEFLAGS) | 27 | CXXFLAGS += $(COMPILEFLAGS) |
28 | CPPFLAGS += -fno-exceptions | 28 | CXXFLAGS += -fno-exceptions |
29 | CPPFLAGS += -std=gnu++11 \ No newline at end of file | 29 | CXXFLAGS += -std=gnu++11 |