mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
Merge pull request #322 from modbw/libelf
Remove GCC dependency to libelf
This commit is contained in:
commit
1cfc160f9d
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user