
编译报错解决方法
拿破仑的海阔天空
交流,笔记,提高
展开
-
undefined reference to `clock_gettime' 链接错误问题解决
undefined reference to `clock_gettime' 链接错误问题解决 当你编译程序时, 碰到下面的链接错误, timeval.c:(.text+0x6f): undefined reference to `clock_gettime' 则你只需要在你的Makefile文件里面添加 -lrt ,重新编译即可。转载 2016-09-07 12:43:57 · 1306 阅读 · 0 评论 -
CMake 实例学习(3)构建静态库
1:概述 有了上一节共享库的工作,这节的就简单多了。 2: 目录结构 [onezeroone@ ex-4]$ tree . build CMakeLists.txt lib CMakeLists.txt hello.c hello.h src CMakeLists.txt转载 2016-09-07 12:59:11 · 1709 阅读 · 0 评论