summaryrefslogtreecommitdiff
path: root/aclocal.m4
diff options
context:
space:
mode:
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m433
1 files changed, 0 insertions, 33 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 2ab4ad5ddb..0283206d67 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -535,18 +535,6 @@ AC_DEFUN([FPTOOLS_SET_C_LD_FLAGS],
$2="$$2 -fno-stack-protector"
fi
- # Reduce memory usage when linking. See trac #5240.
- if test -n "$LdHashSize31"
- then
- $3="$$3 -Wl,$LdHashSize31"
- $4="$$4 $LdHashSize31"
- fi
- if test -n "$LdReduceMemoryOverheads"
- then
- $3="$$3 -Wl,$LdReduceMemoryOverheads"
- $4="$$4 $LdReduceMemoryOverheads"
- fi
-
rm -f conftest.c conftest.o
AC_MSG_RESULT([done])
])
@@ -921,27 +909,6 @@ $2=$fp_cv_$2
])# FP_PROG_LD_FLAG
-# FP_PROG_LD_HashSize31
-# ------------
-# Sets the output variable LdHashSize31 to --hash-size=31 if ld supports
-# this flag. Otherwise the variable's value is empty.
-AC_DEFUN([FP_PROG_LD_HashSize31],
-[
-FP_PROG_LD_FLAG([--hash-size=31],[LdHashSize31])
-])# FP_PROG_LD_HashSize31
-
-
-# FP_PROG_LD_ReduceMemoryOverheads
-# ------------
-# Sets the output variable LdReduceMemoryOverheads to
-# --reduce-memory-overheads if ld supports this flag.
-# Otherwise the variable's value is empty.
-AC_DEFUN([FP_PROG_LD_ReduceMemoryOverheads],
-[
-FP_PROG_LD_FLAG([--reduce-memory-overheads],[LdReduceMemoryOverheads])
-])# FP_PROG_LD_ReduceMemoryOverheads
-
-
# FP_PROG_LD_BUILD_ID
# ------------