我在XCode中设置了OpenCV2
,但遗憾的是imshow
不起作用:
Undefined symbols for architecture x86_64:
"cv::imshow(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, cv::_InputArray const&)", referenced from:
_main in main.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我正在使用最新的XCode运行OS X 10.8.4。
我在下面附上了一些图片,以显示XCode和库中的设置。 到目前为止,似乎其他功能与OpenCV一起正常工作,除此之外。
答案 0 :(得分:7)
我准备说你用OpenCV2
汇编了libstdc++
,现在正在使用libc++
支持编译你的应用程序。
您需要使用相同的C++
库编译OpenCV2,否则将无法链接。
如果您使用nm
OpenCV2库,如果它是使用libstdc++
编译的,它将如下所示:
cv::imshow(std::string const&, cv::_InputArray const&)
如果它是用libc++
编译的,它看起来像是:
cv::imshow(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&, cv::_InputArray const&)
获取demangled符号:
nm library | c++filt | grep cv::imshow