Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toyobayashi/vscode-vc-demo
Compiling and debugging C++ code with Visual Studio Code and VC compiler. Windows only.
https://github.com/toyobayashi/vscode-vc-demo
c cpp debug nodejs-cpp-addon vs2017 vscode
Last synced: 12 days ago
JSON representation
Compiling and debugging C++ code with Visual Studio Code and VC compiler. Windows only.
- Host: GitHub
- URL: https://github.com/toyobayashi/vscode-vc-demo
- Owner: toyobayashi
- Created: 2018-09-13T11:31:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-17T06:18:54.000Z (about 6 years ago)
- Last Synced: 2024-11-05T22:46:07.188Z (2 months ago)
- Topics: c, cpp, debug, nodejs-cpp-addon, vs2017, vscode
- Language: Batchfile
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vscode-vc-demo
在 Visual Studio Code 中使用 VC 编译器编译并调试 C++ 代码。本仓库只面向 Windows 用户。
## 准备
1. 安装 1.22.1 版本以后的 Visual Studio Code 并安装 C/C++ 扩展
2. 安装 Visual Studio 2017 并安装 「使用 C++ 的桌面开发」。如果开发 Node.js 原生模块则需要安装对应架构的 Node.js 及其头文件到 ```${env:HOME}/.node-gyp/${config:nodeVersion}```,或使用 [node-gyp](https://www.npmjs.com/package/node-gyp)``` cmd
> node-gyp install [--target=nodeVersion] [--dist-url=https://atom.io/download/electron]
```3. 添加环境变量 ```VS_ROOT``` ,设置为 Visual Studio 的安装根目录,例如 ```D:\somewhere\Microsoft Visual Studio```
4. 添加环境变量 ```HOME``` ,设置为系统用户根目录,例如 ```C:\Users\Administrator```## 用法
* 使用 Visual Studio Code 打开 ```./console``` (用于开发控制台应用)或 ```./node``` (用于开发 Node.js 原生模块)文件夹
* 在 ```./*/.vscode/settings.json``` 的配置 ```targetName``` (目标文件名)和 ```sources``` (编译源文件), ```nodeVersion``` 选项(可选)用于寻找 Node.js 或 Electron 的头文件,例如 ```8.12.0```、 ```iojs-2.0.9```
* 在 ```./*/vcbuild.bat``` 中配置编译和链接选项,具体可参照[巨硬文档](https://docs.microsoft.com/zh-cn/cpp/build/reference/c-cpp-building-reference)### 控制台应用
* ```F5``` 编译生成 x64 (debug) 并启动调试,可以跟断点
* ```Ctrl + Shift + B``` 编译生成 x64 (release)### Node.js 原生模块
1. 在 JavaScript 或 TypeScript 入口第 1 行打好断点,启动对应的 Node.js 调试进程
2. 在 C++ 代码中打断点,启动 "VC++ Attach",附加到 Node.js 调试进程* ```Ctrl + Shift + B``` 编译生成 x64 (release)
**注意**:调试 Node.js 32 位的原生模块时需要使用 32 位的 ```node.exe```。