Sublime 中运行 C++ 代码:安装 MinGW 或 Clang 编译器。创建 Sublime Text 项目。配置 MinGW:新建构建系统“C++ with MinGW.sublime-build”。配置 Clang:新建构建系统“C++ with Clang.sublime-build”。构建代码:按 Ctrl + B 或转到“工具”>“构建”。生成的可执行文件存储在项目文件夹中。
如何在 Sublime 中运行 C++ 代码
使用 MinGW 编译器
安装 MinGW:
创建 Sublime Text 项目:
配置构建系统:
输入以下内容并将其保存为“C++ with MinGW.sublime-build”:
<code>{ "cmd": ["g++.exe", "-std=c++17", "${file}", "-o", "${file_path}/${file_base_name}"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "selector": "source.c++, source.cpp" }</code>
运行代码:
Ctrl
+ B
或转到“Tools”>“Build”来构建代码。使用 Clang 编译器
安装 Clang 和 LLVM:
创建 Sublime Text 项目:
配置构建系统:
创建一个名为“C++ with Clang.sublime-build”的新构建系统:
<code>{ "cmd": ["clang++", "-std=c++17", "${file}", "-o", "${file_path}/${file_base_name}"], "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$", "selector": "source.c++, source.cpp" }</code>
运行代码:
The above is the detailed content of How to run c++ code in sublime. For more information, please follow other related articles on the PHP Chinese website!