https://gcc.gnu.org/bugzilla/show_bug.cgi?id=89216

Jonathan Wakely <redi at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2019-02-06
     Ever confirmed|0                           |1

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
(In reply to RM Beer from comment #0)
> I'm trying make a own tools of MinGW.
> The line for Configure:
> 
> ./configure --prefix=/opt/MV3/MinGW64 --libexecdir=/opt/MV3/MinGW64/lib
> --target=x86_64-w64-mingw32
> --enable-languages=c,lto,c++,objc,obj-c++,fortran,ada --enable-shared
> --enable-static --enable-threads=posix --enable-fully-dynamic-string
> --enable-libstdcxx-time=yes --with-system-zlib --enable-cloog-backend=isl
> --enable-lto --disable-dw2-exceptions --enable-libgomp --disable-multilib
> --enable-checking=release
> 
> It's during 'make':
> 
> Checking multilib configuration for libgcc...
> Configuring in x86_64-w64-mingw32/libgcc
> configure: loading cache ./config.cache
> checking build system type... x86_64-pc-linux-gnu
> checking host system type... x86_64-w64-mingw32
> checking for --enable-version-specific-runtime-libs... no
> checking for a BSD-compatible install... /usr/bin/install -c
> checking for gawk... gawk
> checking for x86_64-w64-mingw32-ar... x86_64-w64-mingw32-ar
> checking for x86_64-w64-mingw32-lipo... x86_64-w64-mingw32-lipo
> checking for x86_64-w64-mingw32-nm...
> /opt/MV3/SrcMinGW/gcc-8.2.0/host-x86_64-pc-linux-gnu/gcc/nm
> checking for x86_64-w64-mingw32-ranlib... x86_64-w64-mingw32-ranlib
> checking for x86_64-w64-mingw32-strip... x86_64-w64-mingw32-strip
> checking whether ln -s works... yes
> checking for x86_64-w64-mingw32-gcc...
> /opt/MV3/SrcMinGW/gcc-8.2.0/host-x86_64-pc-linux-gnu/gcc/xgcc
> -B/opt/MV3/SrcMinGW/gcc-8.2.0/host-x86_64-pc-linux-gnu/gcc/
> -L/opt/MV3/MinGW64/x86_64-w64-mingw32/lib -L/opt/MV3/MinGW64/mingw/lib
> -isystem /opt/MV3/MinGW64/x86_64-w64-mingw32/include -isystem
> /opt/MV3/MinGW64/mingw/include -B/opt/MV3/MinGW64/x86_64-w64-mingw32/bin/
> -B/opt/MV3/MinGW64/x86_64-w64-mingw32/lib/ -isystem
> /opt/MV3/MinGW64/x86_64-w64-mingw32/include -isystem
> /opt/MV3/MinGW64/x86_64-w64-mingw32/sys-include   
> checking for suffix of object files... configure: error: in
> `/opt/MV3/SrcMinGW/gcc-8.2.0/x86_64-w64-mingw32/libgcc':

It failed in this directory ^^^ so you need to look at the config.log in that
directory, not the config.log that you pasted here.

Look in that log file for the "cannot compute suffix" error, and it will tell
you what's wrong.

Reply via email to