我正在使用Portable 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
偏爱其中一个的原因是什么?
答案 0 :(得分:12)
在mailing list上找到:
var todoList = document.getElementById('todo-list');
todoList.addEventListener('change',this.toggle.bind(this),true);
todoList.getAttribute('.toggle');
todoList.addEventListener('dblclick', this.edit.bind(this),true);
todoList.getAttribute('label');
todoList.addEventListener('keyup', this.editKeyup.bind(this),true);
todoList.getAttribute('.edit');
todoList.addEventListener('focusout', this.update.bind(this),true);
todoList.getAttribute('.edit');
todoList.addEventListener('click', this.destroyCompleted.bind(this),true);
todoList.getAttribute('.destroy');
因此,工具链会安装所有可用的语言,而不仅仅是gcc。