gpt4 book ai didi

c++ - 使用 Sublime Text 3 在 Powershell 中构建 C++ 而不是 CMD

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:40:21 27 4
gpt4 key购买 nike

我想知道是否有一种方法可以在 Sublime Text 3 中运行构建,以便它在 Powershell 而不是 CMD 中输出。

{
"cmd": ["gcc", "${file}", "-o", "${file_base_name}.exe"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"shell": true,

"variants":
[
{
"name": "Run",
"cmd": ["start", "cmd", "/k", "${file_path}/${file_base_name}.exe"],
"shell": true
}
]
}

这是我在网上找到的代码,它将使用 MinGW 作为编译器,并允许您按 Ctrl + B 在 ST3 中构建 C++ 程序。当您执行此操作时,输出将转到 CMD 提示符。有没有办法让输出转到 Powershell?

最佳答案

这肯定有效。

    {
"cmd": ["gcc", "${file}", "-o", "${file_base_name}.exe"],
"file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
"working_dir": "${file_path}",
"selector": "source.c, source.c++",
"shell": true,

"variants":
[
{
"name": "Run",
"cmd": ["start", "powershell", "-NoExit", "${file_path}//${file_base_name}.exe"],
"shell": true
}
]
}

关于c++ - 使用 Sublime Text 3 在 Powershell 中构建 C++ 而不是 CMD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52358378/

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