MSYS2 + VSCode 在 windows 上搭建 C/C++ 开发环境
本文主要介绍如何使用 MSYS + VSCode 在 windows 上搭建 C/C++ 开发环境
1. 安装和配置 MSYS2
官网下载并安装
启动脚本 msys.bat
1
@C:\msys64\msys2_shell.cmd -ucrt64 -defterm -no-start -full-path -here
换镜像源
1
sed -i "s#https\?://mirror.msys2.org/#https://mirrors.tuna.tsinghua.edu.cn/msys2/#g" /etc/pacman.d/mirrorlist*
安装编译器和调试器
1
pacman -S mingw-w64-ucrt-x86_64-gcc mingw-w64-ucrt-x86_64-gdb
2. 安装 VSCode 和配置
官网下载
安装 C/C++ 插件
以下是在 user settings.json 中配置
设置 C_Cpp 编译器路径
1
"C_Cpp.default.compilerPath": "C:\\msys64\\ucrt64\\bin\\gcc.exe"
设置默认终端为 MSYS2
1
2
3
4
5
6
7
8"terminal.integrated.defaultProfile.windows": "MSYS2",
"terminal.integrated.profiles.windows": {
"MSYS2": {
"path": [ "C:\\Library\\Command\\msys.bat" ],
"args": [ "" ],
"icon": "terminal-cmd"
},
},
3. 在 VSCode 中调试程序
创建 launch.json
主要设置 program 和 miDebuggerPath
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20{
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) 启动",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/helloworld/a.exe",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"miDebuggerPath": "C:\\msys64\\ucrt64\\bin\\gdb.exe",
"setupCommands": [
]
}
]
}
4. 基于第三方库开发
示例
安装 SDL2
1 | pacman -S mingw-w64-ucrt-x86_64-SDL2 pkg-config |
demo.c
1 |
|
编译
1 | gcc demo.c `pkg-config SDL2 --cflags --libs --static` -static |
评论