セットアップ
準備
msys2をx86_64のインストーラからインストール。MSYS2 Shellから
1
2
3
4
5
6
|
pacman --noconfirm -Sy
pacman --noconfirm --needed -S bash pacman pacman-mirrors msys2-runtime
# MSYS2 Shellを再起動
pacman --noconfirm -Su
|
で、MinGW-w64 Win64 Shellを使う。
開発環境
1
2
3
4
5
6
7
8
|
pacman --noconfirm -S base-devel
pacman --noconfirm -S msys2-devel
pacman --noconfirm -S mingw-w64-i686-toolchain
pacman --noconfirm -S mingw-w64-x86_64-toolchain
pacman --noconfirm -S openssh
pacman --noconfirm -S vim
|
winpty
1
2
|
pacman --noconfirm -S winpty-git
|
zsh
1
2
3
|
pacman --noconfirm -S zsh
echo "exec zsh" >> ~/.bash_profile
|
参考URL