本人环境是ubunto 12.04 ndk版本是r8c
错误log如下:
/home/eddy/android-sdk/android-ndk-r8c/build/gmsl/__gmsl:512: *** non-numeric second argument to `wordlist' function: ''. Stop.
解决方法如下:
找到ndk目录下的build/gmsl/__gmsl文件打开,找到int_encode方法,然后把int_encode = $(__gmsl_tr1)$(wordlist 1,$1,$(__gmsl_input_int))修改为int_encode = $(__gmsl_tr1)$(wordlist 1,$(words $1),$(__gmsl_input_int))
注意前提是:在AndroidManifest.xml文件中必须知道sdk版本 如android:targetSdkVersion="16"
若还是报那个error,就把AndroidManifest.xml文件移动到其他地方,然后编译,编译ok再移动回来!