编译android4.4 报错error: call to '__property_get_too_small_error' declared with attribute 的处理
转自:http://blog.csdn.net/syhost/article/details/14448899
完整的报错为:
system/core/include/cutils/properties.h:64:39: error: call to
‘__property_get_too_small_error‘ declared with attribute error:
property_get() called with too small of a bufferIn function
‘property_get‘,
解决方法:
找到调用property_get的地方 将中间一个数组参数的定义改一下:
比如:
之前为:
value[128];
.
.
property_get("persist.xxx.xxxx",value,"0");
改为:
value[PROPERTY_VALUE_MAX];
.
.
property_get("persist.xxx.xxxx",value,"0");
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。