mirror of git://gcc.gnu.org/git/gcc.git
Fix toplevel 'config.status --recheck' for --enable-lto.
/: * configure.ac: Add 'lto' to enable_languages, not new_enable_languages, and only if not already present. * configure: Regenerate. From-SVN: r152697
This commit is contained in:
parent
4e70743f83
commit
e4c5bd489f
|
@ -1,3 +1,9 @@
|
||||||
|
2009-10-13 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||||
|
|
||||||
|
* configure.ac: Add 'lto' to enable_languages, not
|
||||||
|
new_enable_languages, and only if not already present.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2009-10-10 Gerald Pfeifer <gerald@pfeifer.com>
|
2009-10-10 Gerald Pfeifer <gerald@pfeifer.com>
|
||||||
|
|
||||||
* README: Refer to the various COPYING* files instead of just
|
* README: Refer to the various COPYING* files instead of just
|
||||||
|
|
|
@ -6593,7 +6593,10 @@ if test -d ${srcdir}/gcc; then
|
||||||
# If LTO is enabled, add the LTO front end.
|
# If LTO is enabled, add the LTO front end.
|
||||||
extra_host_libiberty_configure_flags=
|
extra_host_libiberty_configure_flags=
|
||||||
if test "$enable_lto" = "yes" ; then
|
if test "$enable_lto" = "yes" ; then
|
||||||
new_enable_languages="${new_enable_languages}lto,"
|
case ,${enable_languages}, in
|
||||||
|
*,lto,*) ;;
|
||||||
|
*) enable_languages="${enable_languages},lto" ;;
|
||||||
|
esac
|
||||||
if test "${ENABLE_GOLD}" = "yes" ; then
|
if test "${ENABLE_GOLD}" = "yes" ; then
|
||||||
configdirs="$configdirs lto-plugin"
|
configdirs="$configdirs lto-plugin"
|
||||||
extra_host_libiberty_configure_flags=--enable-shared
|
extra_host_libiberty_configure_flags=--enable-shared
|
||||||
|
|
|
@ -1811,7 +1811,10 @@ if test -d ${srcdir}/gcc; then
|
||||||
# If LTO is enabled, add the LTO front end.
|
# If LTO is enabled, add the LTO front end.
|
||||||
extra_host_libiberty_configure_flags=
|
extra_host_libiberty_configure_flags=
|
||||||
if test "$enable_lto" = "yes" ; then
|
if test "$enable_lto" = "yes" ; then
|
||||||
new_enable_languages="${new_enable_languages}lto,"
|
case ,${enable_languages}, in
|
||||||
|
*,lto,*) ;;
|
||||||
|
*) enable_languages="${enable_languages},lto" ;;
|
||||||
|
esac
|
||||||
if test "${ENABLE_GOLD}" = "yes" ; then
|
if test "${ENABLE_GOLD}" = "yes" ; then
|
||||||
configdirs="$configdirs lto-plugin"
|
configdirs="$configdirs lto-plugin"
|
||||||
extra_host_libiberty_configure_flags=--enable-shared
|
extra_host_libiberty_configure_flags=--enable-shared
|
||||||
|
|
Loading…
Reference in New Issue