|
发表于 2012-6-14 11:28:48
|
显示全部楼层
/bin/bash: -c: line 0: 查找““”的匹配字符时发现意外的EOF
/bin/bash: -c: line 1:语法错误:不可预料的文件末尾
Judging by these error messages that were shown during your build, there are some procedures to help you how to debug when errors come up.
1> First, try positioning yourself to the first error message while compiling.
In your case, it's so easy to get the first error message, which is saying "/bin/bash: -c: line 0: can't match another double quotes". As a result, /bin/bash started complaining about "syntax error: unexpected end of file."
2> Narrow it down if not finding out root cause
$ make clean ( or make clobber) # to get an clean env
$ make -j4 showcommands # to show every command excuted in more details
3> Repeat 1 to 2
Hope that there is a little bit help out there. And, enjoy Android. :) |
|