配置NDK syntax error: unexpected end of file 解决
程序员文章站
2022-05-30 17:11:11
...
android NDK开发中,在window环境下需要安装cygwin来模拟linux环境,在网上配置文章较多,不详述,在配置的过程中,需要修改cybwin\home\XXX(you computer name)目录下的.bash_profile中末尾添加
ANDROID_NDK_ROOT=/cygdrive/d/andorid/NDK/android-ndk-r7b
export ANDROID_NDK_ROOT
ANDROID_NDK_ROOT(可以随意命名)。在使用UltraEdit打开.bash_profile文件的时候,点了转化为DOS format。
在启动cygwin,会显示
-bash:$'\r':commandnotfound
-bash:$'\r':commandnotfound
-bash:$'\r':commandnotfound
-bash:$'\r':commandnotfound
-bash:$'\r':commandnotfound
-bash:$'\r':commandnotfound
-bash:$'\r':commandnotfound
-bash:/home/lenovo/.bash_profile:line47:syntaxerror:unexpectedendoffile
在cygwin中输入:dos2unix -n .bash_profile .bash_profile
关闭重新打开cygwin,ok了。所以再一次提醒,不要用window里的记事本或者写字本打开修改,使用UltraEdit不要转化格式,因为在window下和linux中回车符是不相同的。
推荐阅读
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
-
PHP syntax error, unexpected $end 错误的一种原因及解决
-
PHP syntax error, unexpected $end 错误的一种原因及解决
-
CentOS7运行.sh脚本提示syntax error: unexpected end of file的解决方法
-
PHP Parse Error: syntax error, unexpected $end 错误的解决办法
-
PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
-
PHP Parse error: syntax error, unexpected end of file in line70解决办法
-
shell 环境中的报错 syntax error:unexpected end of file
-
配置NDK syntax error: unexpected end of file 解决