* configure.ac (build_lto_plugin): New shell variable.
(--enable-lto): Turn on by default for all non-ELF platforms that have had LTO support added so far. Set build_lto_plugin appropriately for both ELF and non-ELF. (configdirs): Add lto-plugin or not based on build_lto_plugin. * configure: Regenerate.
This commit is contained in:
parent
327e1afced
commit
1a91b8c0ac
|
@ -1,3 +1,12 @@
|
||||||
|
2010-10-07 Dave Korn <dave.korn.cygwin@gmail.com>
|
||||||
|
|
||||||
|
* configure.ac (build_lto_plugin): New shell variable.
|
||||||
|
(--enable-lto): Turn on by default for all non-ELF platforms that
|
||||||
|
have had LTO support added so far. Set build_lto_plugin appropriately
|
||||||
|
for both ELF and non-ELF.
|
||||||
|
(configdirs): Add lto-plugin or not based on build_lto_plugin.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
2010-10-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
PR bootstrap/45326
|
PR bootstrap/45326
|
||||||
|
|
|
@ -6676,11 +6676,13 @@ to specify its location." "$LINENO" 5
|
||||||
# Flags needed for libelf.
|
# Flags needed for libelf.
|
||||||
|
|
||||||
|
|
||||||
|
# ELF platforms build the lto-plugin when GOLD is in use.
|
||||||
|
build_lto_plugin=${ENABLE_GOLD}
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if test x"$default_enable_lto" = x"yes" ; then
|
if test x"$default_enable_lto" = x"yes" ; then
|
||||||
case $target in
|
case $target in
|
||||||
*-apple-darwin*) ;;
|
*-apple-darwin* | *-cygwin* | *-mingw*) ;;
|
||||||
# On other non-ELF platforms, LTO must be explicitly enabled.
|
# On other non-ELF platforms, LTO must be explicitly enabled.
|
||||||
*) enable_lto=no ;;
|
*) enable_lto=no ;;
|
||||||
esac
|
esac
|
||||||
|
@ -6691,13 +6693,18 @@ else
|
||||||
# warn during gcc/ subconfigure; unless you're bootstrapping with
|
# warn during gcc/ subconfigure; unless you're bootstrapping with
|
||||||
# -flto it won't be needed until after installation anyway.
|
# -flto it won't be needed until after installation anyway.
|
||||||
case $target in
|
case $target in
|
||||||
*-cygwin*|*-mingw* | *-apple-darwin*) ;;
|
*-cygwin* | *-mingw* | *-apple-darwin*) ;;
|
||||||
*) if test x"$enable_lto" = x"yes"; then
|
*) if test x"$enable_lto" = x"yes"; then
|
||||||
as_fn_error "LTO support is not enabled for this target." "$LINENO" 5
|
as_fn_error "LTO support is not enabled for this target." "$LINENO" 5
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
# Among non-ELF, only Windows platforms support the lto-plugin so far.
|
||||||
|
case $target in
|
||||||
|
*-cygwin* | *-mingw*) build_lto_plugin=yes ;;
|
||||||
|
*) ;;
|
||||||
|
esac
|
||||||
default_enable_lto=no
|
default_enable_lto=no
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -6778,7 +6785,7 @@ if test -d ${srcdir}/gcc; then
|
||||||
*,lto,*) ;;
|
*,lto,*) ;;
|
||||||
*) enable_languages="${enable_languages},lto" ;;
|
*) enable_languages="${enable_languages},lto" ;;
|
||||||
esac
|
esac
|
||||||
if test "${ENABLE_GOLD}" = "yes" ; then
|
if test "${build_lto_plugin}" = "yes" ; then
|
||||||
configdirs="$configdirs lto-plugin"
|
configdirs="$configdirs lto-plugin"
|
||||||
extra_host_libiberty_configure_flags=--enable-shared
|
extra_host_libiberty_configure_flags=--enable-shared
|
||||||
fi
|
fi
|
||||||
|
|
13
configure.ac
13
configure.ac
|
@ -1786,9 +1786,11 @@ to specify its location.])
|
||||||
# Flags needed for libelf.
|
# Flags needed for libelf.
|
||||||
AC_SUBST(libelflibs)
|
AC_SUBST(libelflibs)
|
||||||
AC_SUBST(libelfinc)
|
AC_SUBST(libelfinc)
|
||||||
|
# ELF platforms build the lto-plugin when GOLD is in use.
|
||||||
|
build_lto_plugin=${ENABLE_GOLD}
|
||||||
fi],[if test x"$default_enable_lto" = x"yes" ; then
|
fi],[if test x"$default_enable_lto" = x"yes" ; then
|
||||||
case $target in
|
case $target in
|
||||||
*-apple-darwin*) ;;
|
*-apple-darwin* | *-cygwin* | *-mingw*) ;;
|
||||||
# On other non-ELF platforms, LTO must be explicitly enabled.
|
# On other non-ELF platforms, LTO must be explicitly enabled.
|
||||||
*) enable_lto=no ;;
|
*) enable_lto=no ;;
|
||||||
esac
|
esac
|
||||||
|
@ -1799,13 +1801,18 @@ fi],[if test x"$default_enable_lto" = x"yes" ; then
|
||||||
# warn during gcc/ subconfigure; unless you're bootstrapping with
|
# warn during gcc/ subconfigure; unless you're bootstrapping with
|
||||||
# -flto it won't be needed until after installation anyway.
|
# -flto it won't be needed until after installation anyway.
|
||||||
case $target in
|
case $target in
|
||||||
*-cygwin*|*-mingw* | *-apple-darwin*) ;;
|
*-cygwin* | *-mingw* | *-apple-darwin*) ;;
|
||||||
*) if test x"$enable_lto" = x"yes"; then
|
*) if test x"$enable_lto" = x"yes"; then
|
||||||
AC_MSG_ERROR([LTO support is not enabled for this target.])
|
AC_MSG_ERROR([LTO support is not enabled for this target.])
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
# Among non-ELF, only Windows platforms support the lto-plugin so far.
|
||||||
|
case $target in
|
||||||
|
*-cygwin* | *-mingw*) build_lto_plugin=yes ;;
|
||||||
|
*) ;;
|
||||||
|
esac
|
||||||
default_enable_lto=no])
|
default_enable_lto=no])
|
||||||
|
|
||||||
|
|
||||||
|
@ -1884,7 +1891,7 @@ if test -d ${srcdir}/gcc; then
|
||||||
*,lto,*) ;;
|
*,lto,*) ;;
|
||||||
*) enable_languages="${enable_languages},lto" ;;
|
*) enable_languages="${enable_languages},lto" ;;
|
||||||
esac
|
esac
|
||||||
if test "${ENABLE_GOLD}" = "yes" ; then
|
if test "${build_lto_plugin}" = "yes" ; then
|
||||||
configdirs="$configdirs lto-plugin"
|
configdirs="$configdirs lto-plugin"
|
||||||
extra_host_libiberty_configure_flags=--enable-shared
|
extra_host_libiberty_configure_flags=--enable-shared
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue