Ubuntu下ndk-build编译C++出错:non-numeric second argument to `wordlist' function: '

转自:http://hi.baidu.com/zhuangtongquan/item/80356cb11e8c3c412bebe3cc


Ubuntu下ndk-build编译C++出以上错误,

 这个error,需要修改NDK解压路径中/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)