奇思妙想 · 2024年 4月 24日 0

如何区分MinGW下载包?

36 次浏览

MinGW下载包命名可能会有混淆的感觉,它的命名规则其实很简单。

  • [Target]-gcc-[Version][-release-][OS]-rubenvb.*
  • [Target]-clang-[Version][-release-][OS]-rubenvb.*
    • Target: GCC triplet for the system this toolchain builds code for: (MinGW编译目标架构)
      x86_64-w64-mingw32: 64-bit Windows
      i686-w64-mingw32: 32-bit Windows
    • Version: GCC version
    • OS: OS the toolchain is built for: (MinGW运行的系统)
      linux64: 64-bit linux
      win64: 64-bit Windows
      win32: 32-bit Windows (also work on 64-bit Windows)
      cygwin: Cygwin (www.cygwin.com)

详情请参考:MinGW-w64 - for 32 and 64 bit Windows