我目前正在Windows上测试Visual Studio 2017 RC CMake对Android NDK C ++项目的支持,但遇到了一个问题。
当我尝试使用:
生成CMake缓存时<cmake.exe> -G "Visual Studio 15 2017" -DCMAKE_INSTALL_PREFIX:PATH=<install_path> -DCMAKE_TOOLCHAIN_FILE="<androidNDK_path>\build\cmake\android.toolchain.cmake" -DANDROID_TOOLCHAIN=gcc -DANDROID_ABI="armeabi-v7a with NEON" --DCMAKE_BUILD_TYPE="Debug" <source>
我收到以下错误(如果我不强制gcc,则clang也会发生同样的情况):
The C compiler "<androidNDK_path>/toolchains/arm-linux-androideabi-4.9/prebuilt/windows-x86_64/bin/arm-linux-androideabi-gcc.exe" is not able to compile a simple test program.
在此之前,我收到警告,C和CXX编译器的识别未知,但我不确定是否相关。
我为临时测试项目获得了更多错误,但他们似乎没有提供很多信息,比如
C:\Program Files (x86)\Microsoft Visual
Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.Cpp.Platform.targets(57,5):
error MSB4018: The "VCMessage" task failed unexpectedly.
和
C:\Program Files (x86)\Microsoft Visual
Studio\2017\Enterprise\Common7\IDE\VC\VCTargets\Microsoft.Cpp.Platform.targets(57,5):
error MSB4018: System.FormatException: Index (zero based) must be greater
than or equal to zero and less than the size of the argument list.
我该如何解决这个问题?
答案 0 :(得分:2)
对于发现此帖并且具有相同问题的每个人:问题似乎是Visual Studio生成器。此外,似乎Android工具链需要一个带有&#34; make&#34;的路径的参数。因此要解决这两个问题,我安装了MSYS(http://www.mingw.org/wiki/MSYS)并将CMake命令更改为:
<cmake.exe> -G "MSYS Makefiles" -DCMAKE_INSTALL_PREFIX:PATH=<install_path> -DCMAKE_TOOLCHAIN_FILE="<androidNDK_path>\build\cmake\android.toolchain.cmake" -DCMAKE_MAKE_PROGRAM="<MinGW_path>\msys\1.0\bin\make.exe" -DANDROID_TOOLCHAIN=gcc -DANDROID_ABI="armeabi-v7a with NEON" --DCMAKE_BUILD_TYPE="Debug" <source>