summaryrefslogtreecommitdiff
path: root/math/sage/files/gcc.in
diff options
context:
space:
mode:
Diffstat (limited to 'math/sage/files/gcc.in')
-rw-r--r--math/sage/files/gcc.in14
1 files changed, 0 insertions, 14 deletions
diff --git a/math/sage/files/gcc.in b/math/sage/files/gcc.in
deleted file mode 100644
index 1aa66417a30d..000000000000
--- a/math/sage/files/gcc.in
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# This is a wrapper to redirect compiler invokations to the port of gcc that
-# contains fortran. LDFLAGS needs to be added so that the linker knows where
-# to find the dynamic libraries.
-
-# If the compiler is invoked with the argument "-v", adding LDFLAGS to the
-# arguments results in an error which stops some packages being built.
-
-if [ "x$*" = "x-v" ]; then
- exec %%CC%% "$@"
-else
- exec %%CC%% %%LDFLAGS%% -Wl,--copy-dt-needed-entries "$@"
-fi