summaryrefslogtreecommitdiffhomepage
path: root/sysinfo/compiler/any-compiler.mk
diff options
context:
space:
mode:
Diffstat (limited to 'sysinfo/compiler/any-compiler.mk')
-rw-r--r--sysinfo/compiler/any-compiler.mk29
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