提供: いつきメモ
< Windows関連
2018年10月20日 (土) 09:00時点におけるItuki (トーク | 投稿記録)による版 (ページの作成:「 == MSYS2+VSCodeでC開発環境 == * [https://qiita.com/spiegel-im-spiegel/items/ba4e8d2418bdfe0c8049 MSYS2 による gcc 開発環境の構築]を参考にしつつ =...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

MSYS2+VSCodeでC開発環境

MSYS2 + gcc環境

  • MSYS2 homepageからmsys2-x86_64なんとかこんとかをダウンロード。
  • インストールします
  • MSYS2 MinGW 64-bitを起動します
  • 次のコマンドを入力
pacman -Syu

インストールするか聞かれるのでYを選択

警告: terminate MSYS2 without returning to shell and check for updates again
警告: for example close your terminal window instead of calling exit

とか言われるので、Ctrl+Cで抜けて、window閉じて、MSYS2 MinGW 64-bitを再起動

もいっかい

pacman -Syu

を実行して、インストール。

次に、開発ツールをインストール。

pacman -S base-devel
pacman -S mingw-w64-x86_64-toolchain
pacman -S mingw64/mingw-w64-x86_64-cmake

これで、gcc -vとかが通るようになる

VSCodeの設定