52

我正在尝试编译 Sam Hare 的Struck 代码

我正在使用 mac OSX10.9、opencv 2.4.6 和 Eigen 2.0.17。

Eigen 和 opencv 标头存储在 /opt/local/include 中,而 opencv dylib 存储在 /opt/local/lib 中。

我修改了 Hare 的 Makefile 来处理这个文件夹。当我在终端上输入 make 时:

g++ -L/opt/local/lib -lopencv_core -lopencv_highgui -lopencv_imgproc src/Config.o src/Features.o src/HaarFeature.o src/HaarFeatures.o src/HistogramFeatures.o src/ImageRep.o src/LaRank.o src/MultiFeatures.o src/RawFeatures.o src/Sampler.o src/Tracker.o src/main.o src/GraphUtils/GraphUtils.o -o struck

我收到这些错误:

Undefined symbols for architecture x86_64:  
"cv::namedWindow(std::__1::basic_string<char,
std::__1::char_traits<char>, std::__1::allocator<char> > const&,
int)", referenced from:
      _main in main.o   "cv::split(cv::Mat const&, std::__1::vector<cv::Mat, std::__1::allocator<cv::Mat> >&)",
referenced from:
      ImageRep::ImageRep(cv::Mat const&, bool, bool, bool) in ImageRep.o   "cv::imread(std::__1::basic_string<char,
std::__1::char_traits<char>, std::__1::allocator<char> > const&,
int)", referenced from:
      _main in main.o   "cv::imshow(std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > const&,
cv::_InputArray const&)", referenced from:
      LaRank::Debug() in LaRank.o
      Tracker::Debug() in Tracker.o
      _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)

有任何想法吗?谢谢!

4

4 回答 4

39

当我只是尝试从两个不同的目标文件(main.o 和 add.o)创建可执行文件时,我遇到了类似的警告/错误/失败。我正在使用命令:

gcc -o exec main.o add.o

但我的程序是一个 C++ 程序。使用g++编译器解决了我的问题:

g++ -o exec main.o add.o

我总是觉得自己gcc可以解决这些问题。显然不是。我希望这可以帮助其他人搜索此错误。

于 2016-03-12T19:14:21.293 回答
9

终于解决了我的问题。

我在 XCode 中使用源代码创建了一个新项目,并将 C++ 标准库从默认的 libc++ 更改为 libstdc++,如thisthis

于 2013-11-08T10:16:24.337 回答
0

当我clang用来编译 C++ 程序时,我有类似的错误。

但是在我改用 use 后chang++,编译工作了。

于 2022-01-18T07:44:30.853 回答
0

我在 .h 文件中写下了我的声明

class String
{
    String (const char * cstr = 0);
}; 

我在另一个 .cpp 文件中使用了内联(实现)

inline String::String(const char * cstr)
{
//code ... 
}

然后我使用 g++ 并得到这个:架构 x86_64 的未定义符号:“String::String(char const*)”,引用自:test-d389f3.o ld 中的 _main:未找到架构 x86_64 的符号

解决方案:声明和实现独立时不要写inline 。

于 2021-06-14T17:03:01.087 回答