该博文只是一个C++编译安装问题记录–没有给出正确解决方法
main.cpp:(.text+0xd06): undefined reference to `uni_text::UniText::UniText(std::string const&, int)'
main.cpp:(.text+0xe73): undefined reference to `uni_text::UniText::PutText(cv::Mat&, std::string const&, cv::Point_<int> const&, cv::Scalar_<double> const&, bool)'
分析:
遇到该问题:运行一些包含特地 so 动态库或者静态库 C++ 项目;
本机环境所使用的 gcc、g++ 编译版本和 作者用来 编译得到的 库(动态库或者静态库) 不完全一致导致这些报错
- 1:没有提供 (静态库 或者 动态库 )对应的依赖
- 2:项目 中一些 静态库 或者 动态库 编译版本不一致
解决方向:
归根到底,是一个环境问题: gcc、g++版本匹配 或者 第三方依赖的补充