summaryrefslogtreecommitdiff
path: root/sysinfo/compiler/gcc.mk
diff options
context:
space:
mode:
Diffstat (limited to 'sysinfo/compiler/gcc.mk')
-rw-r--r--sysinfo/compiler/gcc.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/sysinfo/compiler/gcc.mk b/sysinfo/compiler/gcc.mk
new file mode 100644
index 0000000..d14d8dc
--- /dev/null
+++ b/sysinfo/compiler/gcc.mk
@@ -0,0 +1,24 @@
+ifeq ($(USER_CC)x,x)
+ ifeq ($(CROSS_COMPILE)x,x)
+ CC = $(CROSS_COMPILE)$(NATIVE_CC)
+ else
+ CC = $(CROSS_COMPILE)gcc
+ endif
+else
+ CC = $(USER_CC)
+endif
+
+ifeq ($(USER_CPP)x,x)
+ CPP = $(CROSS_COMPILE)cpp
+else
+ CPP = $(USER_CPP)
+endif
+
+ifeq ($(USER_CXX)x,x)
+ CXX = $(CROSS_COMPILE)c++
+else
+ CXX = $(USER_CXX)
+endif
+
+
+CFLAGS_PIC = -fPIC