当前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))
本文详细介绍了在使用Android NDK r8e版本时遇到__gmsl错误的解决方案,包括定位问题所在并进行代码修改的具体步骤。
1万+

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



