Hi, On Tue, Jan 24, 2017 at 7:26 PM, Joseph Myers <jos...@codesourcery.com> wrote: > Since front ends can't be enabled or disabled on a per-multilib basis, if > you want to support any x86/x86_64 GNU/Linux configuration you need to > support all of them here (and possibly disable runtime libraries for > particular multilibs). That is, this should be *more* general and also > allow i[[3456789]]86-*-linux* because that can have a -m64 multilib.
OK. Patch attached. Does it look right now? BR, Pekka
diff --git a/configure b/configure index d757369..b62d811 100755 --- a/configure +++ b/configure @@ -3487,6 +3487,8 @@ fi # broken systems. Currently it has been tested only on x86_64 Linux # of the upstream gcc targets. More targets shall be added after testing. case "${target}" in + i[3456789]86-*-linux*) + ;; x86_64-*-linux*) ;; *) diff --git a/configure.ac b/configure.ac index 5818332..2df8e34 100644 --- a/configure.ac +++ b/configure.ac @@ -817,6 +817,8 @@ fi # broken systems. Currently it has been tested only on x86_64 Linux # of the upstream gcc targets. More targets shall be added after testing. case "${target}" in + i[[3456789]]86-*-linux*) + ;; x86_64-*-linux*) ;; *)