summaryrefslogtreecommitdiff
path: root/tmk_core/native.mk
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2020-01-04 12:21:08 +1100
committerFlorian Didron <fdidron@users.noreply.github.com>2020-02-26 10:15:12 +0900
commit02f0f0811da6cd394ef4d84d2e1f74065a119160 (patch)
treee1e3e10c10468c96c4eb10edf18d61ea77b46dd3 /tmk_core/native.mk
parent67d285a1a1d4e3b85b4c07bf5c55f936aa567c52 (diff)
Fix misunderstanding of CPPFLAGS and CXXFLAGS.
Diffstat (limited to 'tmk_core/native.mk')
-rw-r--r--tmk_core/native.mk20
1 files changed, 10 insertions, 10 deletions
diff --git a/tmk_core/native.mk b/tmk_core/native.mk
index 530b50b84a..3caf644546 100644
--- a/tmk_core/native.mk
+++ b/tmk_core/native.mk
@@ -1,13 +1,13 @@
SYSTEM_TYPE := $(shell gcc -dumpmachine)
CC = gcc
-OBJCOPY =
-OBJDUMP =
-SIZE =
-AR =
-NM =
-HEX =
-EEP =
+OBJCOPY =
+OBJDUMP =
+SIZE =
+AR =
+NM =
+HEX =
+EEP =
BIN =
@@ -24,6 +24,6 @@ CFLAGS += $(COMPILEFLAGS)
CFLAGS += -fno-inline-small-functions
CFLAGS += -fno-strict-aliasing
-CPPFLAGS += $(COMPILEFLAGS)
-CPPFLAGS += -fno-exceptions
-CPPFLAGS += -std=gnu++11 \ No newline at end of file
+CXXFLAGS += $(COMPILEFLAGS)
+CXXFLAGS += -fno-exceptions
+CXXFLAGS += -std=gnu++11