逝水流年

This is a blog to record my life, my work, my feeling …

Android NDK帮助文档的一个小错误

刚刚在调试如何不安装Cgywin的情况下,利用NDK编译cocos2d-x的SampleGame.却机缘巧合的情况下发现了android-ndk-r8ddocs/IMPORT-MODULE.html下的一个小bug。

在Eclipse中导入工程后,工程目录如下: image

  • 将工程转换为C++工程。这步不会的可以google下。

  • 设置ndk目录。 image

  • 设置NDK_MODULE_PATH环境变量。 iamge

在docs/IMPORT-MODULE.html中的介绍:

I.NDK_MODULE_PATH: The NDK_MODULE_PATH variable must contain a list of directories. Due to GNU Make limitations, NDK_MODULE_PATH must not contain any space. The NDK will complain if this is not the case. Use ‘:’ as the path separator. On Windows, use ‘/’ as the directory separator.

这里面说的Use ‘:’ as the path separator, 经过实践验证在windows平台路径应该是使用;分割.

Comments