MSYS2 - 安装 gcc 或工具链?

MSYS2 - Install gcc or toolchain?

我正在使用便携式 MSYS2 + MinGW64。 我的意思是获得 gcc。

一些来源表明安装 gcc,例如

$ pacman -Sy mingw-w64-i686-gcc
$ pacman -Sy mingw-w64-x86_64-gcc

http://www.cplusplus.com/forum/windows/227005/

其他(主要在github)表示安装toolchain,例如

$ pacman -Sy mingw-w64-x86_64-toolchain

https://github.com/tpaviot/oce/issues/631

https://github.com/Alexpux/MSYS2-packages/issues/293

https://github.com/orlp/dev-on-windows/wiki/Installing-GCC--&-MSYS2

如果有的话,选择其中一个的原因是什么?

mailing list 上找到:

Then you can install toolchain by typing:
pacman -S mingw-w64-i686-toolchain
or
pacman -S mingw-w64-x86_64-toolchain
It installs full MinGW-w64 GCC with prerequisites. If you don't need full
GCC then you can install only needed languages. Variants are:
32bit:
mingw-w64-i686-gcc  - C/C++
mingw-w64-i686-ada
mingw-w64-i686-fortran
mingw-w64-i686-objc  - ObjC/ObjC++

64bit:
mingw-w64-x86_64-gcc  - C/C++
mingw-w64-x86_64-ada
mingw-w64-x86_64-fortran
mingw-w64-x86_64-objc  - ObjC/ObjC++

所以工具链会安装所有可用的语言,而不仅仅是 gcc。