Android NDK 和 Msys
有人可以告诉我如何使用 android NDK 和 Msys。在开始之前是否需要完成任何设置?我应该从哪里开始? 提前致谢
Can someone please tell me how to work with android NDK and Msys.Is there any setting that needs to be done before I start? And where should i start from?
thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么要使用msys?官方不支持。
实际上从 NDK r7 开始,您不需要 Cygwin,也不需要 Msys 在 Windows 下编译。 NDK r7 包含 bat 文件 ndk-build.cmd,您可以从 cmd.exe 命令行运行该文件。唯一的问题是你的 PATH 上不允许有带有空格符号的目录。直到这个问题解决为止,坚持使用 Cygwin。当这个问题得到解决时(我假设在 NDK r8 中),您将能够在常用的 Windows 命令行中进行编译。
Why do you want to use msys? Officially it is not supported.
Actually starting from NDK r7 you don't need nor Cygwin, nor Msys to compile under Windows. NDK r7 includes bat file ndk-build.cmd that you can run from cmd.exe command-line. Only issue with it is that you are not allowed to have directory on your PATH with space symbol. Until this is fixed stick to the Cygwin. When this will be fixed (I presume in NDK r8) you will be able to compile in usual Windows command-line.
您可以使用此 教程帮助您在系统中安装msys。然后你可以用它来运行你的命令。
You can use this tutorial to help you install msys in your system. and then you can use it to run your commands.