2011|08|
2013|10|11|12|
2014|01|02|03|04|05|06|07|08|09|10|11|12|
2015|01|02|03|05|06|07|08|09|10|11|12|
2016|01|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|

2019-01-19 MSYS2/MinGW-w64 (64bit/32bit) インストール手順 [長年日記]

MSYS2/MinGW-w64 (64bit/32bit) インストール手順

MSYS2/MinGW-w64 (64bit/32bit) インストール手順

  • この内容の出所
  • 1. MSYS2 のページ
  • 2.プログラムメニューから MSYS2 の MSYS Shell を選択して、以下のコマンドを実行します。
    • pacman -Syuu

      以下のメッセージが表示された場合には、Shell の画面を 右上の×ボタンで閉じ、再度 MSYS2 の MSYS Shell (スタートボタンにメニューが出てきます:多分)を開いて、上記コマンドをもう1度実行します。

      • 警告: terminate MSYS2 without returning to shell and check for updates again
      • 警告: for example close your terminal window instead of calling exit
  • 3.MinGW-w64 (64bit) の開発環境をインストールします。
    • pacman -S base-devel
    • pacman -S mingw-w64-x86_64-toolchain
  • 4.MinGW-w64 (32bit) の開発環境をインストールします。
    • pacman -S mingw-w64-i686-toolchain
  • 5.環境変数のセット
    • set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\local\bin;C:\msys64\usr\bin;C:\msys64\bin;%PATH%
    • set MSYSTEM=MINGW64
    • Windowsの環境変数を引き継ぐのであれば、"msys2_shell.cmd"の中にある、"rem set MSYS2_PATH_TYPE=inherit"のremを外す
  • 6.未着手だけど、今後必要になりそうな情報