summaryrefslogtreecommitdiffhomepage
path: root/sysinfo/compiler/cparser.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-26 08:48:48 -0500
committermidipix <writeonce@midipix.org>2018-12-30 17:57:11 -0500
commit97f8b2393e6e10b6cc3945db0fd0a879bf6be0c8 (patch)
tree8f9771ede93cb0816ad09187197425ad508ac982 /sysinfo/compiler/cparser.mk
parent1411f59550484360e582b1f2aa82d78384eb05ce (diff)
downloadw32lib-97f8b2393e6e10b6cc3945db0fd0a879bf6be0c8.tar.bz2
w32lib-97f8b2393e6e10b6cc3945db0fd0a879bf6be0c8.tar.xz
build system: major overhaul: removed sysinfo, integrated ccenv.
Diffstat (limited to 'sysinfo/compiler/cparser.mk')
-rw-r--r--sysinfo/compiler/cparser.mk31
1 files changed, 0 insertions, 31 deletions
diff --git a/sysinfo/compiler/cparser.mk b/sysinfo/compiler/cparser.mk
deleted file mode 100644
index 6c4dc8e..0000000
--- a/sysinfo/compiler/cparser.mk
+++ /dev/null
@@ -1,31 +0,0 @@
-ifeq ($(CROSS_COMPILE)x,x)
- CROSS_HOST =
- CROSS_HOST_SPEC =
-else ifeq ($(CROSS_HOST)x,x)
- CROSS_HOST = $(HOST)
- CROSS_HOST_SPEC = --target=$(HOST)
-else
- CROSS_HOST_SPEC = --target=$(CROSS_HOST)
-endif
-
-
-ifeq ($(USER_CC)x,x)
- CC = $(NATIVE_CC) $(CROSS_HOST_SPEC) -Wno-experimental -integrated-cpp
-else
- CC = $(USER_CC) $(CROSS_HOST_SPEC) -Wno-experimental -integrated-cpp
-endif
-
-ifeq ($(USER_CPP)x,x)
- CPP = $(NATIVE_CC) $(CROSS_HOST_SPEC) -Wno-experimental -integrated-cpp -E
-else
- CPP = $(USER_CPP) $(CROSS_HOST_SPEC) -Wno-experimental -integrated-cpp -E
-endif
-
-ifeq ($(USER_CXX)x,x)
- CXX = $(NATIVE_CC) $(CROSS_HOST_SPEC) -Wno-experimental -integrated-cpp -std=c++
-else
- CXX = $(USER_CXX) $(CROSS_HOST_SPEC) -Wno-experimental -integrated-cpp -std=c++
-endif
-
-
-CFLAGS_PIC = -fPIC