gpt4 book ai didi

c++ - VSCode - C++ 未定义对 'CLASS::FUNCTION' 的引用

转载 作者:行者123 更新时间:2023-12-03 07:23:26 25 4
gpt4 key购买 nike

我正在使用 VSCode 创建一个 C++ 项目,但在尝试构建 && 调试时不断收到此错误。从控制台运行时,如果我使用 'g++ -o main 'main.cpp' 'file_1.cpp' 'file_2.cpp'' 它可以正常工作并编译。

我读到这与文件链接有关?有谁知道如何在 VSCode 中解决这个问题?如果有帮助,我有一个默认的 launch.json 配置文件,用于构建事件文件。

这是我的 tasks.json 文件的内容:

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "shell: g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "shell",
"label": "g++ build active file",
"command": "/usr/bin/g++",
"args": [
"-g",
"${file}",
"-o",
"${fileDirname}/${fileBasenameNoExtension}"
],
"options": {
"cwd": "/usr/bin"
}
}
]

编辑:我正在使用 Debian 10 'Buster'

非常感谢

最佳答案

您需要修改 tasks.json 以编译所有 .cpp 。在 args 中,将 ${file} 更改为 ${workspaceFolder}/*.cpp要运行构建任务,请按 Ctrl+Shift+B,这会在当前目录中生成一个执行文件。在终端中执行此文件以运行程序 (./fileName)

关于c++ - VSCode - C++ 未定义对 'CLASS::FUNCTION' 的引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62052387/

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