https://gcc.gnu.org/bugzilla/show_bug.cgi?id=117396
Bug ID: 117396
Summary: gcc/configure --help should print --disable-multilib
instead of --enable-multilib
Product: gcc
Version: 14.2.1
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: bootstrap
Assignee: unassigned at gcc dot gnu.org
Reporter: dilyan.palauzov at aegee dot org
Target Milestone: ---
gcc-14.2.0/gcc/configure.ac contains:
AC_ARG_ENABLE(multilib,
[AS_HELP_STRING([--enable-multilib],
[enable library support for multiple ABIs])],
[], [enable_multilib=yes])
That is, if --enable-multilib , --disable-multilib , --enable-multilib=yes or
--enable-multilib=no are not passed, multilib is enabled.
Adjust the output of gcc/configure --help from
--enable-multilib enable library support for multiple ABIs
to
--disable-multilib disable library support for multiple ABIs
to indicate, that by default this option is enabled.