Android NDK r8e __gmsl 错误

来源:互联网 发布:gx48b控制软件 编辑:程序博客网 时间:2024/06/01 07:54

Android NDK r8e __gmsl 错误 原文地址:http://devbeacon.com

当前ndk r8e版本, 运行时出现  __gmsl 错误:
android-ndk-r8e/build/gmsl/__gmsl:512: *** non-numeric second argument to `wordlist’ function: ”.  Stop.

修复办法:
打开android-ndk-r8e/build/gmsl/__gmsl文件
找到512行,代码是:
int_encode = $(__gmsl_tr1)$(wordlist 1,$1,$(__gmsl_input_int))
修改为:
int_encode = $(__gmsl_tr1)$(wordlist 1,$(words $1),$(__gmsl_input_int))

原创粉丝点击