[Bug bootstrap/63547] --disable-lto with configure creates and installs lto-wrapper

pinskia at gcc dot gnu.org gcc-bugzilla@gcc.gnu.org
Thu Aug 26 00:15:11 GMT 2021


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
],[....


More information about the Gcc-bugs mailing list