./configure --host=arm-hisiv500-linux --disable-ipv6 --includedir=/opt/hisi-linux/x86-arm/arm-hisiv500-linux/target/usr/include --disable-ospf6d
问题1
不禁用
ospf6d 选项
会出现inet_ntop (AF_INET6, &rprefix->prefix.u.prefix6,
buf, INET6_ADDRSTRLEN),
需要类型‘char * restrict’,但实参的类型为‘u_char *’
2
…/ospfd/ospfd.h:510:24: 错误: array type has incomplete element type
extern struct message ospf_ism_state_msg[8];
^
…/ospfd/ospfd.h:511:24: 错误: array type has incomplete element type
extern struct message ospf_nsm_state_msg[];
^
…/ospfd/ospfd.h:512:24: 错误: array type has incomplete element type
extern struct message ospf_lsa_type_msg[];
^
…/ospfd/ospfd.h:513:24: 错误: array type has incomplete element type
extern struct message ospf_link_state_id_type_msg[];
^
…/ospfd/ospfd.h:514:24: 错误: array type has incomplete element type
extern struct message ospf_redistributed_proto[];
^
…/ospfd/ospfd.h:

在编译Zebra软路由时遇到错误,由于未禁用IPv6选项,导致类型不匹配问题。具体错误涉及'inet_ntop'函数参数类型和多个array type has incomplete element type错误。解决方法是在配置时添加--disable-ipv6选项,并在源文件中引入"log.h"头文件,然后执行'make'和'make install'进行安装。安装完成后,可在手册中查看使用方法。
最低0.47元/天 解锁文章
3414

被折叠的 条评论
为什么被折叠?



