OpenEdv-开源电子网

 找回密码
 立即注册
正点原子全套STM32/Linux/FPGA开发资料,上千讲STM32视频教程免费下载...
查看: 7305|回复: 9

编译minicom出错,不知道什么原因?

[复制链接]

21

主题

42

帖子

0

精华

初级会员

Rank: 2

积分
185
金钱
185
注册时间
2019-5-24
在线时间
39 小时
发表于 2020-5-24 16:24:11 | 显示全部楼层 |阅读模式


minicom配置正常:
./configure CC=arm-linux-gnueabihf-gcc --prefix=/home/shigang/linux-alient/tool/minicom --host=arm-linux-gnueabihf CPPFLAGS=-I/home/shigang/linux-alient/tool/ncurses/include LDFLAGS=-L/home/shigang/linux-alient/tool/ncurses/lib -enable-cfgdir=/etc/minicom
---正常,只是最后有个警告
config.status: creating po/POTFILES
config.status: creating po/Makefile
configure: WARNING: unrecognized options: --enable-cfgdir


make-编译时出错:(已经在/etc下建立了minicom目录)
      ^
window.c:2009:6: warning: assignment makes pointer from integer without a cast
   TS = tgetstr("ts", &_tptr);
      ^
window.c:2010:6: warning: assignment makes pointer from integer without a cast
   FS = tgetstr("fs", &_tptr);
      ^
window.c:2011:6: warning: assignment makes pointer from integer without a cast
   DS = tgetstr("ds", &_tptr);
      ^
window.c:2036:3: warning: implicit declaration of function ‘tgetflag’ [-Wimplicit-function-declaration]
   if (!tgetflag("hs") || !tgetflag("es") || !TS || !FS)
   ^
Makefile:515: recipe for target 'window.o' failed
make[2]: *** [window.o] Error 1
make[2]: Leaving directory '/home/shigang/linux-alient/tool/minicom-2.7.1/src'
Makefile:388: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/shigang/linux-alient/tool/minicom-2.7.1'
Makefile:326: recipe for target 'all' failed

make: *** [all] Error 2

不知道什么原因?


正点原子逻辑分析仪DL16劲爆上市
回复

使用道具 举报

21

主题

42

帖子

0

精华

初级会员

Rank: 2

积分
185
金钱
185
注册时间
2019-5-24
在线时间
39 小时
 楼主| 发表于 2020-5-24 16:57:26 | 显示全部楼层
本帖最后由 sg_fly 于 2020-5-24 17:03 编辑

在make编译时:编译到:
arm-linux-gnueabihf-gcc -DHAVE_CONFIG_H -I. -I..  -I/home/shigang/linux-alient/tool/ncurses/include -I../lib -DCONFDIR=\"/home/shigang/linux-alient/tool/minicom/etc\" -DLOCALEDIR=\"/home/shigang/linux-alient/tool/minicom/share/locale\" -I/home/shigang/linux-alient/tool/ncurses/include  -g -O2 -W -Wall -Wextra -std=gnu99 -MT window.o -MD -MP -MF .deps/window.Tpo -c -o window.o window.c
window.c: In function ‘outstr’:
window.c:196:3: warning: implicit declaration of function ‘tputs’ [-Wimplicit-function-declaration]
   tputs(s, 1, outchar);
   ^
window.c: In function ‘_gotoxy’:
window.c:294:7: warning: implicit declaration of function ‘tgoto’ [-Wimplicit-function-declaration]
       outstr(tgoto(CM, x, y));
       ^
window.c:294:14: warning: passing argument 1 of ‘outstr’ makes pointer from integer without a cast
       outstr(tgoto(CM, x, y));
              ^
window.c:194:13: note: expected ‘const char *’ but argument is of type ‘int’
static void outstr(const char *s)
             ^
window.c:302:16: warning: passing argument 1 of ‘outstr’ makes pointer from integer without a cast
         outstr(tgoto(TS, x, x));
                ^
window.c:194:13: note: expected ‘const char *’ but argument is of type ‘int’
static void outstr(const char *s)
             ^
window.c:338:12: error: ‘BC’ undeclared (first use in this function)

Makefile:515: recipe for target 'window.o' failed
make[2]: *** [window.o] Error 1
make[2]: Leaving directory '/home/shigang/linux-alient/tool/minicom-2.7.1/src'
Makefile:388: recipe for target 'all-recursive' failed
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory '/home/shigang/linux-alient/tool/minicom-2.7.1'
Makefile:326: recipe for target 'all' failed
make: *** [all] Error 2



回复 支持 反对

使用道具 举报

2

主题

712

帖子

0

精华

金牌会员

Rank: 6Rank: 6

积分
2178
金钱
2178
注册时间
2018-8-27
在线时间
258 小时
发表于 2020-5-25 09:29:32 | 显示全部楼层

回帖奖励 +1 金钱

帮顶!
回复 支持 反对

使用道具 举报

0

主题

4

帖子

0

精华

初级会员

Rank: 2

积分
177
金钱
177
注册时间
2019-5-12
在线时间
47 小时
发表于 2020-6-21 00:26:05 | 显示全部楼层
楼主解决了吗,我也遇到和你一样的问题,主要是error: ‘BC’ undeclared (first use in this function)
回复 支持 反对

使用道具 举报

6

主题

200

帖子

0

精华

管理员

Rank: 12Rank: 12Rank: 12

积分
1063
金钱
1063
注册时间
2019-9-19
在线时间
194 小时
发表于 2020-6-21 12:23:54 | 显示全部楼层
本帖最后由 flyzeng 于 2020-6-21 12:43 编辑

请检查minicom配置指令,建议亲手敲一遍,不要复制粘贴。出现这问题都是ncurses库路径配置没起作用导致,minicom的源代码中会使用ncurses提供的函数。
=======================
出征,嗒嗒嗒——
快点上车!
=======================
回复 支持 反对

使用道具 举报

4

主题

12

帖子

0

精华

初级会员

Rank: 2

积分
69
金钱
69
注册时间
2020-2-17
在线时间
19 小时
发表于 2021-1-7 21:34:43 | 显示全部楼层
abandoncode 发表于 2020-6-21 00:26
楼主解决了吗,我也遇到和你一样的问题,主要是error: ‘BC’ undeclared (first use in this function)

兄弟请问minicom 2.7.1 编写失败的问题是怎么解决的呢?
回复 支持 反对

使用道具 举报

3

主题

15

帖子

0

精华

新手上路

积分
45
金钱
45
注册时间
2020-7-4
在线时间
7 小时
发表于 2021-7-19 11:45:23 | 显示全部楼层
我这边碰到这样的,目前尚未解决
回复 支持 反对

使用道具 举报

0

主题

2

帖子

0

精华

新手入门

积分
5
金钱
5
注册时间
2022-6-8
在线时间
1 小时
发表于 2022-7-8 09:14:52 | 显示全部楼层
flyzeng 发表于 2020-6-21 12:23
请检查minicom配置指令,建议亲手敲一遍,不要复制粘贴。出现这问题都是ncurses库路径配置没起作用导致,mi ...

亲手敲才更容易出错吧,稍微不注意打错了一个字母就废了,这么长,还不如直接写个脚本
回复 支持 反对

使用道具 举报

0

主题

1

帖子

0

精华

新手入门

积分
5
金钱
5
注册时间
2019-8-31
在线时间
1 小时
发表于 2022-8-30 18:00:47 | 显示全部楼层
本帖最后由 jopjob 于 2022-8-30 18:02 编辑

解决了,重新解压ncurses和minicom的包,从头来一遍就可以了
记得交叉编译器要安装好
回复 支持 反对

使用道具 举报

0

主题

1

帖子

0

精华

新手入门

积分
17
金钱
17
注册时间
2023-8-27
在线时间
4 小时
发表于 2023-9-18 09:22:11 | 显示全部楼层
jopjob 发表于 2022-8-30 18:00
解决了,重新解压ncurses和minicom的包,从头来一遍就可以了
记得交叉编译器要安装好

请教下你的ubuntu是什么版本,我的20.4移植失败
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则



关闭

原子哥极力推荐上一条 /2 下一条

正点原子公众号

QQ|手机版|OpenEdv-开源电子网 ( 粤ICP备12000418号-1 )

GMT+8, 2024-11-25 01:56

Powered by OpenEdv-开源电子网

© 2001-2030 OpenEdv-开源电子网

快速回复 返回顶部 返回列表