summaryrefslogtreecommitdiffhomepage
path: root/sysinfo
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-02-27 09:34:14 -0500
committermidipix <writeonce@midipix.org>2016-02-27 10:58:06 -0500
commitcf557143a79d9f2f5169c8565278e838d4552fc1 (patch)
tree5067dfa4c870ae9d6bad4575b376a2e89c6d4166 /sysinfo
parent4aae4b3a307ec96be4b8a49d0c64efecdae36ed5 (diff)
downloadsofort-cf557143a79d9f2f5169c8565278e838d4552fc1.tar.bz2
sofort-cf557143a79d9f2f5169c8565278e838d4552fc1.tar.xz
build system: added fallback compiler recipe.
Diffstat (limited to 'sysinfo')
-rw-r--r--sysinfo/compiler/any-compiler.mk29
1 files changed, 29 insertions, 0 deletions
diff --git a/sysinfo/compiler/any-compiler.mk b/sysinfo/compiler/any-compiler.mk
new file mode 100644
index 0000000..4c98621
--- /dev/null
+++ b/sysinfo/compiler/any-compiler.mk
@@ -0,0 +1,29 @@
+ifeq ($(CROSS_COMPILE)x,x)
+ CROSS_HOST =
+ CROSS_HOST_SPEC =
+else
+ CROSS_HOST =
+ CROSS_HOST_SPEC =
+endif
+
+
+ifeq ($(USER_CC)x,x)
+ CC = $(NATIVE_CC) $(CROSS_HOST_SPEC)
+else
+ CC = $(USER_CC) $(CROSS_HOST_SPEC)
+endif
+
+ifeq ($(USER_CPP)x,x)
+ CPP = $(NATIVE_CC) $(CROSS_HOST_SPEC) -E
+else
+ CPP = $(USER_CPP) $(CROSS_HOST_SPEC) -E
+endif
+
+ifeq ($(USER_CXX)x,x)
+ CXX = $(NATIVE_CC) $(CROSS_HOST_SPEC) -std=c++
+else
+ CXX = $(USER_CXX) $(CROSS_HOST_SPEC) -std=c++
+endif
+
+
+CFLAGS_PIC = -fPIC