MSYS2使用教程
Posted Pete-Jones
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MSYS2使用教程相关的知识,希望对你有一定的参考价值。
一、安装
官方下载地址
指定好安装路径(一般D根目录即可),一路下一步就好。
二、配置国内镜像
使用[清华大学开源软件镜像站]中的地址,修改\etc\pacman.d目录下的三个文件。
1、mirrorlist.msys 文件
## ## MSYS2 repository mirrorlist ## ## Primary ## msys2.org ## Server = http://repo.msys2.org/msys/$arch ## Server = http://downloads.sourceforge.net/project/msys2/REPOS/MSYS2/$arch ## Server = http://www2.futureware.at/~nickoe/msys2-mirror/msys/$arch/ Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/msys/$arch
2、mirrorlist.mingw32 文件
## ## 32-bit Mingw-w64 repository mirrorlist ## ## Primary ## msys2.org ## Server = http://repo.msys2.org/mingw/i686 ## Server = http://downloads.sourceforge.net/project/msys2/REPOS/MINGW/i686 ## Server = http://www2.futureware.at/~nickoe/msys2-mirror/i686/ Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/i686
3、mirrorlist.mingw64 文件
## ## 64-bit Mingw-w64 repository mirrorlist ## ## Primary ## msys2.org ## Server = http://repo.msys2.org/mingw/x86_64 ## Server = http://downloads.sourceforge.net/project/msys2/REPOS/MINGW/x86_64 ## Server = http://www2.futureware.at/~nickoe/msys2-mirror/x86_64/ Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/x86_64
更新Msys2系统环境
pacman -Sy pacman pacman -Syu pacman -Su
安装MinGW-w64 和 MinGW-x86版本
pacman -S mingw-w64-i686-toolchain
pacman -S mingw-w64-x86_64-toolchain
三、安装常用工具
pacman -S base-devel git wget perl ruby python2
安装GTK
pacman -S mingw-w64-i686-gtk3
pacman -S mingw-w64-x86_64-gtk3
安装Glade
pacman -S mingw-w64-i686-glade
pacman -S mingw-w64-x86_64-glade
四、设置系统环境变量
在Path值中加入参数
32位
D:\msys64\mingw32\bin
64位
D:\msys64\mingw64\bin
以上是关于MSYS2使用教程的主要内容,如果未能解决你的问题,请参考以下文章