我从下载了最新的 ndkhttp://developer.android.com/tools/sdk/ndk/index.html#安装。为了安装 ndk,我在终端中使用了以下命令。
chmod a+x android-ndk-r10c-darwin-x86_64.bin
回chmod: cannot access `android-ndk-r10c-darwin-x86_64.bin': No such file or directory
请帮忙!
答案1
用于7-zip
提取 ndk .bin 文件。要安装 7-zip,请在终端中输入以下内容
sudo apt-get install p7zip-full
并使用以下命令提取:
7za x android-ndk-r10c-darwin-x86_64.bin
它将提取到同名的当前目录
答案2
运行chmod +x /path/to/android-ndk-r10c-darwin-x86_64.bin
并确保您没有意外删除该文件。