windows构建环境 MSYS2 安装与配置


1.说明
MSYS2 是提供了bash shell等linux环境、版本控制软件(git/hg)和MinGW-w64工具链软件. 是MSYS的一个升级版,集成了pacman和Mingw-w64的Cygwin升级版, 一般用于构建windows 软件工具.

下载地址
https://www.msys2.org

2.安装教程
windows构建环境 MSYS2 安装与配置_第1张图片
参照官网教程安装

3. 修改 源 为国内的镜像地址
找到对应的安装目录
C:\msys64\etc\pacman.d
MSYS2 pacman 的配置如下, 推荐中科大源

3.1清华大学源
编辑 /etc/pacman.d/mirrorlist.mingw32 ,在文件开头添加:
Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/i686

编辑 /etc/pacman.d/mirrorlist.mingw64 ,在文件开头添加:
Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/mingw/x86_64

编辑 /etc/pacman.d/mirrorlist.msys ,在文件开头添加:
Server = https://mirrors.tuna.tsinghua.edu.cn/msys2/msys/$arch

3.2中科大学源
mirrorlist.mingw32
Server = http://mirrors.ustc.edu.cn/msys2/mingw/i686/

mirrorlist.mingw64
Server = http://mirrors.ustc.edu.cn/msys2/mingw/x86_64/

mirrorlist.msys
Server = http://mirrors.ustc.edu.cn/msys2/msys/$arch/

4.更新
pacman -Syuu

windows构建环境 MSYS2 安装与配置_第2张图片
 

5.常见的构建环境安装

# toolchain and cmake
pacman -S --needed --noconfirm mingw-w64-x86_64-toolchain mingw-w64-x86_64-cmake
# gtkmm3, gtksourceviewmm3, libxml++2.6, sqlite3
pacman -S --needed --noconfirm mingw-w64-x86_64-gtkmm3 mingw-w64-x86_64-gtksourceviewmm3 mingw-w64-x86_64-libxml++2.6 mingw-w64-x86_64-sqlite3
# gspell, curl, uchardet, fmt, spdlog
pacman -S --needed --noconfirm mingw-w64-x86_64-gspell mingw-w64-x86_64-curl mingw-w64-x86_64-uchardet mingw-w64-x86_64-fmt mingw-w64-x86_64-spdlog
# gettext, git, vim
pacman -S --needed --noconfirm mingw-w64-x86_64-gettext git vim

 

你可能感兴趣的:(windows)