红联Linux门户
Linux帮助

error: conflicting types for 'RTASSERTVAR'的解决方法

发布时间:2017-07-12 11:05:21来源:blog.csdn.net/yanxiangyfg作者:yanxiangyfg
编译virtualbox additions的时候出现如下错误:
vboxguest-5.0.4/vboxguest/include/iprt/lockvalidator.h:64:1: error: conflicting types for 'RTASSERTVAR'
vboxguest-5.0.4/vboxguest/include/iprt/lockvalidator.h:64:1: note: previous declaration of 'RTASSERTVAR' was here
 
解决方法:
在最外层Makefile中加入”export BUILD_TARGET_ARCH=x86”解决.
 
问题分析:
通过查找关键字’RTASSERTVAR’发现vboxguest-5.0.4源码中除了有引用此变量外,并无定义. 神奇般的想到可以是编译环境原因,最后通过查看makefile发现,源码中有关于编译架构的变量,通过在最外层Makefile中导出变量”export BUILD_TARGET_ARCH=x86”来解决此问题.
知道”RTASSERTVAR”变量具体哪里定义或者代表啥的可以留言,以便后来着能知其然,也知其所以然.
 
本文永久更新地址:http://www.linuxdiyf.com/linux/31941.html