如何安装ndk(linux)?
我正在尝试下载 Android NDK,然后将文件解压到某个目录。如何重命名 NDK 目录?我需要重命名目录吗?
如何检查并重命名目录?
另外,我可以在 Eclipse 中使用 NDK 吗?如果是这样,怎么办?
I am trying to download the Android NDK and then extract the files to a certain directory. How can I rename the NDK directory? Do I need to rename the directory?
How can I check and rename the directory?
Also, can I use the NDK in Eclipse? If so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Linux 中,我的主目录下有一个名为 android-ndk 的目录。
我认为目录名称是什么并不重要。
如果尚未设置,则需要将环境变量设置为:
export ANDROID_NDK_ROOT=/home/user/android-ndk
我已粘贴以下内容 android NDK 页面:
“使用计算机上可用的工具解压 NDK 下载包。解压后,NDK 文件包含在名为 android-ndk-version 的目录中。您可以重命名 NDK。如有必要,您可以将其移动到计算机上的任何位置。”
您始终可以在解压缩的位置使用以下命令检查目录的名称:
然后您可以使用
'mv'
命令将名称更改为您喜欢的名称。例如,如果当前 android ndk 安装目录名称为: android-ndk-r4b-linux-x86 并且您需要将其更改为 android-ndk ,则使用以下命令:
In Linux, I have my directory named android-ndk under my home directory.
I think it does not matter what the directory name is.
If its not already set, you need to set the environment variable as:
export ANDROID_NDK_ROOT=/home/user/android-ndk
I have pasted following content from android NDK page:
"Uncompress the NDK download package using tools available on your computer. When uncompressed, the NDK files are contained in a directory called android-ndk-version. You can rename the NDK directory if necessary and you can move it to any location on your computer."
You can always check the name of dir using following command from the place where you have uncompressed:
Then you can change the name to whatever you are comfortable by using
'mv'
command.E.g. If current android ndk installation directory name is: android-ndk-r4b-linux-x86 and you need to change it to android-ndk , then use following command: