diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:34:14 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 16:16:53 -0500 |
commit | feafa6ac4042f38e2fcf4975e3e4f44161d19040 (patch) | |
tree | bb4df8186a7130169c29676b62c0ddedf07ddae1 /sysinfo | |
parent | 5bb8672ccded7cae695a3753a14733125f8a0aee (diff) | |
download | pemagine-feafa6ac4042f38e2fcf4975e3e4f44161d19040.tar.bz2 pemagine-feafa6ac4042f38e2fcf4975e3e4f44161d19040.tar.xz |
build system: added fallback compiler recipe.
Diffstat (limited to 'sysinfo')
-rw-r--r-- | sysinfo/compiler/any-compiler.mk | 29 |
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 |