On Tue, 2018-12-11 at 13:05 +0000, RK via Mingw-w64-public wrote: > Hi, > Is it possible to access compiled versions of the i686 gcc > version 8.2 toolchain? I can see version 7.4 via pacman and > version 8.1 under the Toolchains targeting Win32/Personal > Builds/mingw-builds directory. > I would rather not build my own i686 toolchain.
There are a few available at https://musl.cc/ -- GCC_VER = 8.2.0 BINUTILS_VER = 2.31.1 MUSL_VER = git-39ef612aa193cc6e954ac5a01574300ccd4b7ef9 GMP_VER = 6.1.2 MPC_VER = 1.1.0 MPFR_VER = 4.0.1 MINGW_VER = v6.0.0 https://musl.cc/i686-w64-mingw32-cross.tgz https://musl.cc/i686-w64-mingw32-native.tgz https://musl.cc/x86_64-w64-mingw32-cross.tgz https://musl.cc/x86_64-w64-mingw32-native.tgz The '-cross' ones are intended to be run on x86_64 Linux, and are fully static (no dependencies), and produce Win32 code. The '-native' ones can run on Windows (i686 and x86_64 respectively) but require one small extra step once they're extracted: see Footnote #7 at https://musl.cc/#refs (To use native MinGW32 toolchains, append ;E:\x86_64-w64-mingw32- native\x86_64-w64-mingw32-native\bin (or similar) to %PATH%, then copy ./include to ./TRIPLE/include) On my to-do list is to port all of the current Linux-targeted toolchains to run on a Win32 host. But this takes time. > Thanks!RK ZV _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
