ndk-build not found as a command(找不到作为命令的 ndk-build)
问题描述
我使用 Android SDK 已经有一段时间了 &刚刚遇到使用 NDK 的要求
I have been working with Android SDK for a while & just came across an requirement to use the NDK
所以,我下载了适用于 Windows 的 Android NDK.跳转到第一个示例,当我尝试使用 NDK 示例中定义的流程构建库时
So, I downloaded the Android NDK for Windows. Jumping on the first example, when I am trying to build the library using the process defined in the NDK example
http://developer.android.com/sdk/ndk/overview.html
特别是命令行中的命令/ndk-build
Specifically the command /ndk-build from the command line
我收到了错误
ndk-build 不是内部或外部命令、可运行程序或批处理文件
ndk-build is not recognized as an internal or external command, operable program or batch file
我在PATH变量中添加了ndk-build的路径,甚至尝试调用该文件夹的命令,仍然是同样的错误
I have added the path for ndk-build in the PATH variable and even tried calling the command going to the folder, still the same error
有人知道吗?
推荐答案
猜猜应该是答案而不是评论.
Guess that should have been an answer instead of a comment.
您必须使用 Cygwin 作为您的 shell 才能运行 ndk-build.
请参阅 http://www.cygwin.com/
You must use Cygwin as your shell in order to run ndk-build.
See http://www.cygwin.com/
这篇关于找不到作为命令的 ndk-build的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:找不到作为命令的 ndk-build
基础教程推荐
- 如何对 HashSet 进行排序? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01