gpt4 book ai didi

c++ - 使用 Sublime Text 2 中的输入运行 C++ 文件

转载 作者:行者123 更新时间:2023-11-30 04:19:25 27 4
gpt4 key购买 nike

C++ 源代码编译后,我想通过 sublime text 命令用输入文件运行它。如何做到这一点?

最佳答案

如果你的意思是在 C++ 构建文件之后的参数,我已经找到了一种以狡猾的方式执行此操作的方法...我为 C++11 创建了一个新的构建系统并添加了输入文件(请参阅下面的 input_file)到运行部分。

{
"cmd": ["g++", "-Wall", "-Wextra", "-pedantic", "-std=c++0x", "${file}", "-o", "${file_path}/${file_base_name}"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",

"variants":
[
{
"name": "Run",
"cmd": ["bash", "-c", "g++ -Wall -Wextra -pedantic -std=c++0x '${file}' -o '${file_path}/${file_base_name}' && '${file_path}/${file_base_name}' input_file"]
}
]}

$HOME/.config/sublime-text-2/Packages/User 中保存文件,例如 C++11.sublime-build。选择 Build System C++11,它应该可以完成这项工作。

关于c++ - 使用 Sublime Text 2 中的输入运行 C++ 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15830149/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com