如何让 android NDK 在 windows 中工作?
How to make android NDK work in windows?
我已经下载了 android-ndk-r10e & 我还在环境变量中设置了路径以及 eclipse 的 NDK 路径。我能够从 eclipse 构建和 运行 HelloJni 示例应用程序,但是当我使用控制台构建它时它说
'ndk' is not recognized as an internal or external command,operable
program or batch file.
我有 googled 这个并且还安装了 Cygwin,尽管官方 google 安装说明中没有提到它(https://developer.android.com/ndk/guides/setup.html)但没有白费。
我已经设置了我的路径,但是当我执行 echo %path% 时它没有出现。如何从命令行使用 NDK。
您可能要查找的命令是 ndk-build
,而不是 ndk
。
我已经下载了 android-ndk-r10e & 我还在环境变量中设置了路径以及 eclipse 的 NDK 路径。我能够从 eclipse 构建和 运行 HelloJni 示例应用程序,但是当我使用控制台构建它时它说
'ndk' is not recognized as an internal or external command,operable program or batch file.
我有 googled 这个并且还安装了 Cygwin,尽管官方 google 安装说明中没有提到它(https://developer.android.com/ndk/guides/setup.html)但没有白费。
我已经设置了我的路径,但是当我执行 echo %path% 时它没有出现。如何从命令行使用 NDK。
您可能要查找的命令是 ndk-build
,而不是 ndk
。