gpt4 book ai didi

c++ - 无法使用带有 msvc 的 OpenCV 调试构建来编译项目

转载 作者:行者123 更新时间:2023-12-05 06:07:24 26 4
gpt4 key购买 nike

opencv_world451d.lib 
helloworld.obj
helloworld.obj : error LNK2019: unresolved external symbol "void __cdecl cv::imshow(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class cv::_InputArray const &)" (?imshow@cv@@YAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEBV_InputArray@1@@Z) referenced in function main
C:\Users\kaito\OneDrive\Documents\Cpp\OpenCVHelloWorld\helloworld.exe : fatal error LNK1120: 1 unresolved externals

当我使用 OpenCV 调试构建 opencv_world451d.lib 时,vscode不会编译我的项目。如果我切换到 OpenCV 发布版本 opencv_world451.lib,那么一切都很好。

这很奇怪,因为我在 Visual Studio 2019 中使用了完全相同的设置,并且调试或发布版本一切正常。 CMake 也构建它。

这是我的tasks.json

{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: cl.exe build active file",
"command": "cl.exe",
"args": [
"/Wall",
"/Zi",
"/EHsc",
"/Fe:",
"${fileDirname}\\${fileBasenameNoExtension}.exe",
"${file}",
"/I",
"C:/Program Files/opencv/build/include",
"/link",
"/LIBPATH:C:/Program Files/opencv/build/x64/vc15/lib",
"opencv_world451d.lib"
],
"options": {
"cwd": "${workspaceFolder}"
},
"problemMatcher": [
"$msCompile"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always"
},
"detail": "compiler: cl.exe"
}
]
}

使用debug build有什么设置需要设置好吗?

最佳答案

我通过使用编译器标志/MDd 而不是/MD 来解决问题。看起来调试构建需要适当的调试运行时。

关于c++ - 无法使用带有 msvc 的 OpenCV 调试构建来编译项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65446962/

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