Fix toplevel configure --enable-multilib handling.
/: PR bootstrap/43328 * configure.ac: Do not pass --enable-multilib nor --disable-multilib in baseargs. Accept explicitly passed --enable_multilib. * configure: Regenerate.
This commit is contained in:
11
configure
vendored
11
configure
vendored
@ -7778,6 +7778,9 @@ do
|
||||
skip_next=$separate_arg
|
||||
continue
|
||||
;;
|
||||
--enable-multilib | --disable-multilib)
|
||||
continue
|
||||
;;
|
||||
-*)
|
||||
# An option. Add it.
|
||||
case $ac_arg in
|
||||
@ -7846,10 +7849,12 @@ if test x${is_cross_compiler} = xyes ; then
|
||||
target_configargs="--with-cross-host=${host_noncanonical} ${target_configargs}"
|
||||
fi
|
||||
|
||||
# Default to --enable-multilib.
|
||||
if test x${enable_multilib} = x ; then
|
||||
# Pass --enable-multilib to target dirs; default to --enable-multilib.
|
||||
case $enable_multilib in
|
||||
'' | yes)
|
||||
target_configargs="--enable-multilib ${target_configargs}"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
# Pass --with-newlib if appropriate. Note that target_configdirs has
|
||||
# changed from the earlier setting of with_newlib.
|
||||
|
Reference in New Issue
Block a user