summaryrefslogtreecommitdiffhomepage
path: root/sysinfo
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-10-31 15:24:44 -0400
committermidipix <writeonce@midipix.org>2015-10-31 15:24:44 -0400
commited04a410c277827afa351f5e58e397f8ace211c8 (patch)
tree8f6b2a60a72b32574501d8d0f0d657bbfaf7f5ee /sysinfo
parent4977e2f190ba6bae5ad00ff0c24958e9094225b3 (diff)
downloadntapi-ed04a410c277827afa351f5e58e397f8ace211c8.tar.bz2
ntapi-ed04a410c277827afa351f5e58e397f8ace211c8.tar.xz
build system: include host definitions prior to toolchain definitions
and fix CC accordingly.
Diffstat (limited to 'sysinfo')
-rw-r--r--sysinfo/host/native.mk1
-rw-r--r--sysinfo/toolchain/gcc.mk2
2 files changed, 1 insertions, 2 deletions
diff --git a/sysinfo/host/native.mk b/sysinfo/host/native.mk
index 465a01b..08b02b6 100644
--- a/sysinfo/host/native.mk
+++ b/sysinfo/host/native.mk
@@ -1,6 +1,5 @@
include $(PROJECT_DIR)/sysinfo/os/$(NATIVE_OS).mk
-CC = $(CROSS_COMPILE)$(NATIVE_CC)
OS = $(NATIVE_OS)
HOST_BITS = $(NATIVE_OS_BITS)
HOST_UNDERSCORE = $(NATIVE_OS_UNDERSCORE)
diff --git a/sysinfo/toolchain/gcc.mk b/sysinfo/toolchain/gcc.mk
index 441a2ca..933fb48 100644
--- a/sysinfo/toolchain/gcc.mk
+++ b/sysinfo/toolchain/gcc.mk
@@ -1,4 +1,4 @@
-CC = $(CROSS_COMPILE)gcc
+CC = $(CROSS_COMPILE)$(NATIVE_CC)
CPP = $(CROSS_COMPILE)cpp
CXX = $(CROSS_COMPILE)c++