summaryrefslogtreecommitdiffhomepage
path: root/sysinfo/compiler/gcc.mk
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2018-12-30 18:18:26 -0500
committermidipix <writeonce@midipix.org>2018-12-30 18:24:34 -0500
commitdee5eebcc15e8cb374498a5aa8b2dc4d25c34cb4 (patch)
treeb6afc44d7cdd7e0c2ea6cf724e12459e437e0b2b /sysinfo/compiler/gcc.mk
parent80edc73c18ca1d4b6e69d78d61e17f062734449d (diff)
downloadntux-dee5eebcc15e8cb374498a5aa8b2dc4d25c34cb4.tar.bz2
ntux-dee5eebcc15e8cb374498a5aa8b2dc4d25c34cb4.tar.xz
build system: major overhaul: removed sysinfo, integrated ccenv.
Diffstat (limited to 'sysinfo/compiler/gcc.mk')
-rw-r--r--sysinfo/compiler/gcc.mk24
1 files changed, 0 insertions, 24 deletions
diff --git a/sysinfo/compiler/gcc.mk b/sysinfo/compiler/gcc.mk
deleted file mode 100644
index d14d8dc..0000000
--- a/sysinfo/compiler/gcc.mk
+++ /dev/null
@@ -1,24 +0,0 @@
-ifeq ($(USER_CC)x,x)
- ifeq ($(CROSS_COMPILE)x,x)
- CC = $(CROSS_COMPILE)$(NATIVE_CC)
- else
- CC = $(CROSS_COMPILE)gcc
- endif
-else
- CC = $(USER_CC)
-endif
-
-ifeq ($(USER_CPP)x,x)
- CPP = $(CROSS_COMPILE)cpp
-else
- CPP = $(USER_CPP)
-endif
-
-ifeq ($(USER_CXX)x,x)
- CXX = $(CROSS_COMPILE)c++
-else
- CXX = $(USER_CXX)
-endif
-
-
-CFLAGS_PIC = -fPIC