https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63547
Andrew Pinski <pinskia at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|lto |bootstrap
Last reconfirmed| |2021-08-26
Ever confirmed|0 |1
Status|UNCONFIRMED |NEW
Keywords| |lto
--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
Confirmed.
The toplevel configure does:
ACX_ELF_TARGET_IFELSE([# ELF platforms build the lto-plugin always.
build_lto_plugin=yes
],[....
Maybe it should do:
ACX_ELF_TARGET_IFELSE([# ELF platforms build the lto-plugin always.
if test x"$enable_lto" = x"yes"; then
build_lto_plugin=yes
fi
],[....