gpt4 book ai didi

c++ - 如何在 ubuntu 中为 c++ 配置 Visual Studio 代码

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

如何为 C++ 配置 tasks.json

当我使用默认配置并运行 C++ 代码时,它会给我:

Failed to launch external program tsc HelloWorld.ts.
spawn tsc ENOENT

最佳答案

这是我的 tasks.json。我在某个地方找到了它,使用 Make 对我来说效果很好。

{
"version": "0.1.0",
"command": "make",
"isShellCommand": true,
"tasks": [
{
"taskName": "Makefile",
// Make this the default build command.
"isBuildCommand": true,
// Show the output window only if unrecognized errors occur.
"showOutput": "always",
// No args
"args": ["all"],
// Use the standard less compilation problem matcher.
"problemMatcher": {
"owner": "cpp",
"fileLocation": ["relative", "${workspaceRoot}"],
"pattern": {
"regexp": "^(.*):(\\d+):(\\d+):\\s+(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
}
]
}

关于c++ - 如何在 ubuntu 中为 c++ 配置 Visual Studio 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32975034/

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