summaryrefslogtreecommitdiffhomepage
path: root/sysinfo/compiler/any-compiler.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-11-18 03:27:43 +0000
committermidipix <writeonce@midipix.org>2017-11-18 18:16:36 -0500
commitea5470e0a34f7154531b857413b39b25588193e8 (patch)
tree1e78107234842510f439a7ca1c9efbc36072cca2 /sysinfo/compiler/any-compiler.mk
parentb6c684b4f6323104fac9c8f8ec9be6f6856e904e (diff)
downloadw32lib-ea5470e0a34f7154531b857413b39b25588193e8.tar.bz2
w32lib-ea5470e0a34f7154531b857413b39b25588193e8.tar.xz
created skeleton.
Diffstat (limited to 'sysinfo/compiler/any-compiler.mk')
-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