summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config/cc/gcc.in5
-rw-r--r--scripts/build/cc/100-gcc.sh4
2 files changed, 0 insertions, 9 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in
index 5feb012..2df2058 100644
--- a/config/cc/gcc.in
+++ b/config/cc/gcc.in
@@ -213,7 +213,6 @@ config CC_GCC_USE_LTO
bool
default y
depends on CC_GCC_HAS_LTO
- select CC_GCC_USE_LIBELF
help
Enable the Link Time Optimisations.
@@ -250,10 +249,6 @@ config CC_GCC_USE_MPC
bool
select MPC_NEEDED
-config CC_GCC_USE_LIBELF
- bool
- select LIBELF_NEEDED
-
config CC_GCC_HAS_LIBQUADMATH
bool
diff --git a/scripts/build/cc/100-gcc.sh b/scripts/build/cc/100-gcc.sh
index 3dfe1f5..427058c 100644
--- a/scripts/build/cc/100-gcc.sh
+++ b/scripts/build/cc/100-gcc.sh
@@ -343,10 +343,8 @@ do_gcc_core_backend() {
extra_config+=("--with-cloog=no")
fi
if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
- extra_config+=("--with-libelf=${complibs}")
extra_config+=("--enable-lto")
elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
- extra_config+=("--with-libelf=no")
extra_config+=("--disable-lto")
fi
@@ -801,10 +799,8 @@ do_gcc_backend() {
extra_config+=("--with-cloog=no")
fi
if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
- extra_config+=("--with-libelf=${complibs}")
extra_config+=("--enable-lto")
elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
- extra_config+=("--with-libelf=no")
extra_config+=("--disable-lto")
fi