我试图在Ubuntu 14.04上从libhand.org构建一个手工模型库。该库使用ogre和opencv库。我按照作者提供的说明,允许我成功安装ogre和opencv。 cmake没有问题......但在执行命令期间
make -j4
我收到以下错误:
[ 87%] Building CXX object source/CMakeFiles/hand_renderer.dir/hand_pose.cc.o
[ 91%] Building CXX object source/CMakeFiles/hand_renderer.dir/scene_spec.cc.o
Linking CXX static library libhand_renderer.a
[ 91%] Built target hand_renderer
Scanning dependencies of target pose_designer
[ 95%] Building CXX object source/CMakeFiles/pose_designer.dir/pose_designer_main.cc.o
[100%] Building CXX object source/CMakeFiles/pose_designer.dir/pose_designer.cc.o
Linking CXX executable pose_designer
/usr/bin/ld: cannot find -lNOTFOUND
/usr/bin/ld: cannot find -lNOTFOUND
libhand_utils.a(file_dialog.cc.o): In function
`libhand::FileDialog::TkExec(std::string const&)':
file_dialog.cc:(.text+0xead): warning: the use of `mktemp' is dangerous, better use `mkstemp' or `mkdtemp'
collect2: error: ld returned 1 exit status
make[2]: *** [source/pose_designer] Error 1
make[1]: *** [source/CMakeFiles/pose_designer.dir/all] Error 2
make: *** [all] Error 2
有谁知道为什么会出现这种错误以及可以做些什么?
答案 0 :(得分:0)
我认为发生此错误是因为在cmake
运行期间未找到某些必需的库,但未正确检测到该事件(即。cmake
没有因错误而中止)。有关详细信息,请参见CMakeError.log
目录中名为CMakeOutput.log
或CMakeFiles
的文件。
此问题的解决方案是安装缺少的库(应该从上述文件中获取哪个名称)或修复构建过程以找到库(如果已经安装)(对于autotools,这将使用{ {1}}和CFLAGS
环境变量指向正确的包含路径,编译器选项,库路径和库;这也应该与CMake一起使用。)
作为替代解释,LDFLAGS
找到了库,但不知何故未能写出正确的cmake
。然后,解决方案将在Makefile
s中手动替换-lNOTFOUND
{/ 1}}。