c – 在OS X上使用imshow时出错

我在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一起工作正常,除此之外.

解决方法:

我打算说你用libstdc编译OpenCV2,现在用libc支持编译你的应用程序.

您需要使用相同的C库编译OpenCV2,否则将无法链接.

如果你做了一个OpenCV2库的nm,如果它是用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
上一篇:c-我的LLVM和clang(OSX)是什么版本?


下一篇:适用于Windows的LLVM C IDE