summaryrefslogtreecommitdiffhomepage
path: root/sysinfo/toolchain/gcc.mk
diff options
context:
space:
mode:
Diffstat (limited to 'sysinfo/toolchain/gcc.mk')
-rw-r--r--sysinfo/toolchain/gcc.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/sysinfo/toolchain/gcc.mk b/sysinfo/toolchain/gcc.mk
index e0ad0d2..52a2545 100644
--- a/sysinfo/toolchain/gcc.mk
+++ b/sysinfo/toolchain/gcc.mk
@@ -1,5 +1,9 @@
ifeq ($(USER_CC)x,x)
- CC = $(CROSS_COMPILE)$(NATIVE_CC)
+ ifeq ($(CROSS_COMPILE)x,x)
+ CC = $(CROSS_COMPILE)$(NATIVE_CC)
+ else
+ CC = $(CROSS_COMPILE)gcc
+ endif
else
CC = $(USER_CC)
endif