diff options
author | midipix <writeonce@midipix.org> | 2018-12-26 08:48:48 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2018-12-30 17:55:42 -0500 |
commit | 352ae66d81ad9c6f1bad1f72425635150a4e9ec7 (patch) | |
tree | 5039f80b6d15b013d61c66bfce6ddc5ef1c5e456 /sysinfo/compiler/any-compiler.mk | |
parent | 5a4c0683c14004a51b9ad3cded0791e46cd1e5bb (diff) | |
download | bcparser-352ae66d81ad9c6f1bad1f72425635150a4e9ec7.tar.bz2 bcparser-352ae66d81ad9c6f1bad1f72425635150a4e9ec7.tar.xz |
build system: major overhaul: removed sysinfo, integrated ccenv.
Diffstat (limited to 'sysinfo/compiler/any-compiler.mk')
-rw-r--r-- | sysinfo/compiler/any-compiler.mk | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/sysinfo/compiler/any-compiler.mk b/sysinfo/compiler/any-compiler.mk deleted file mode 100644 index 4c98621..0000000 --- a/sysinfo/compiler/any-compiler.mk +++ /dev/null @@ -1,29 +0,0 @@ -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 |