diff options
author | midipix <writeonce@midipix.org> | 2016-02-27 09:34:14 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-02-27 16:13:46 -0500 |
commit | 9f5cabad3dcc57ed6b5c658af121ff90baa99e1b (patch) | |
tree | fe75399f41e9ca6331dfb55756a10f285b00c5f4 /sysinfo/compiler | |
parent | 449ff0b2d36993216e168efe1dc6f8aef827a503 (diff) | |
download | dalist-9f5cabad3dcc57ed6b5c658af121ff90baa99e1b.tar.bz2 dalist-9f5cabad3dcc57ed6b5c658af121ff90baa99e1b.tar.xz |
build system: added fallback compiler recipe.
Diffstat (limited to 'sysinfo/compiler')
-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 |