今天下午本身寫了一個很簡單的工程文件,用到ndk-build android
期間報錯,如今將報錯和解決方法貼出來 ui
第一個錯誤: spa
/home/ss/android-ndk-r8d/build/gmsl/__gmsl:512: *** non-numeric second argument to `wordlist' function: ''. Stop. code
解決方法: input
修改build/gmsl/__gmsl文件的 第512行 io
int_encode = $(__gmsl_tr1)$(wordlist 1,$1,$(__gmsl_input_int)) 改成 function
int_encode = $(__gmsl_tr1)$(wordlist 1,$(words $1),$(__gmsl_input_int))
方法
第二個錯誤: error
error: undefined reference to '__android_log_print' top
解決方法:
1.出現這種問題,查看一下你的.c文件裏面添加 #include "android/log.h"
2.查看你的Android.mk文件中添加 LOCAL_LDLIBS := -llog