Chinaunix首页 | 论坛 | 博客
  • 博客访问: 884086
  • 博文数量: 286
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1841
  • 用 户 组: 普通用户
  • 注册时间: 2015-05-09 16:26
文章分类

全部博文(286)

文章存档

2016年(38)

2015年(248)

我的朋友

分类: LINUX

2015-08-22 12:12:35

用openwrt1505编译gpsd时出现错误‘undefined refrence 'CTRL' ’
像这样:
点击(
此处)折叠或打开
  1. gpsmon.o: In function `main':
  2. gpsmon.c:(.text.startup+0x92c): undefined reference to `CTRL'
  3. collect2: error: ld returned 1 exit status
  4. scons: *** [gpsmon] Error 1
  5. scons: building terminated because of errors.

解决办法,需要在gpsmon.c 中 include <sys/ttydefaults.h>
简单吧!
像这样:

点击(此处)折叠或打开

  1. --- a/gpsmon.c
  2. +++ b/gpsmon.c
  3. @@ -20,6 +20,7 @@
  4.  #include <sys/types.h>
  5.  #include <sys/stat.h>
  6.  #include <sys/select.h>
  7. +#include <sys/ttydefaults.h>
  8.  #include <fcntl.h>
  9.  #include <unistd.h>



阅读(2115) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~