cocos2d-x 3.2 rc0 编译错误解决

使用vs2012开发,编译android时报如下错:

/android-ndk-r9b/build/gmsl/__gmsl:512: *** non-numeric second argument to `wordlist' function: ''.  Stop.


根据网上搜索到的信息有两种修改:

第一种:
将__gmsl的512修改,这个试过后,会报另一个错误:android-ndk-r9b/build/core/setup-toolchain.mk:20: *** Android NDK:  Assertion failure: TARGET_PLATFORM is not defined    .  Stop.

第二种:
使用unix2dos将AndroidManifest.xml转换格式。这个方法没有作用。

由于第二种对于我没有作用,因此修改使用第一种方式,然后在jni目录下的Application.mk中增加APP_PLATFORM := android-14,之所以选择android-14是因为我的AndroidManifest.xml中指定的targetSdkVersion="14"


你可能感兴趣的:(Cocos,3.2,2dx,rc0)