13

我想用 android NDK 和 Cmake 生成我的 android 本机应用程序,所以,我下载了android-cmake工具链。

Cmake 成功生成我的项目,但是当我尝试进入生成目录并尝试运行“make”时,出现以下错误:

-- Configuring done
-- Generating done
-- Build files have been written to: /Users/ldz/Desktop/myProject
[  1%] Building CXX object Project/src/Main/Core/CMakeFiles/Core.dir/Main/Main.cpp.o
arm-linux-androideabi-g++: error: unrecognized command line option '-stdlib=libc++'

我不知道这里出了什么问题,我的项目使用 C++11,这是我的g++ --version结果:

Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 5.0 (clang-500.2.76) (based on LLVM 3.3svn)
Target: x86_64-apple-darwin12.5.0
Thread model: posix

谢谢!

4

2 回答 2

19

要使用 Cmake 构建 Android NDK 项目并创建 APK,您应该:

  • 您应该使用taka-no-me 的 fork ,而不是使用 android-cmake 。
  • 然后使用来自 pixellight 的 Apk.cmake。还从这个 repo 复制 [AndroidManifest.xml.in, LoadLibraries.java.in, strings.xml.in]。
  • 有一个像这样的 CMakeLists.txt:
    cmake_minimum_required(版本 2.8.3) 项目(testBuilder) 包括(“Apk.cmake”需要) include_directories(${ANDROID_NDK}/sources/android/native_app_glue) 设置(TEST_SRC ${ANDROID_NDK}/sources/android/native_app_glue/android_native_app_glue.c src/Main.cpp ) 设置(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x -ffor-scope -fno-rtti -fno-exceptions -pipe -ffunction-sections -fdata-sections -ffast-math -Wnon-virtual-dtor -Wreorder - Wsign-promo -fvisibility=hidden -fvisibility-inlines-hidden -Wstrict-null-sentinel -Os -funroll-all-loops -fpeel-loops -ftree-vectorize") set(LINKER_FLAGS "${LINKER_FLAGS} -Wl,--根据需要 -Wl,--gc-sections -Wl,--no-undefined -Wl,--strip-all -Wl,-rpath-link=${ ANDROID_NDK_SYSROOT}/usr/lib/-L${ANDROID_NDK_SYSROOT}/usr/lib/") add_library(测试共享 ${TEST_SRC}) target_link_libraries(测试日志android) set_target_properties(测试属性 COMPILE_DEFINITIONS “ANDROID”) 设置(APP_SHARED_LIBRARIES ${LIBRARY_OUTPUT_PATH}/libtest.so) android_create_apk(测试“${CMAKE_BINARY_DIR}/apk”“${APP_SHARED_LIBRARIES}”“”“数据”)

这是 Main.cpp

#include <android_native_app_glue.h>
#include <android/log.h>

#define APPNAME "TestApp"

void android_main(struct android_app* state)
{
    app_dummy(); // Make sure glue isn't stripped

    __android_log_print(ANDROID_LOG_INFO, APPNAME, "HolyShit you did it !");

    ANativeActivity_finish(state->activity);
}
于 2014-04-04T09:42:26.013 回答
7

基于 Vi.:s 的回答,我在 github 上克隆了一个 android-cmake,并添加了一个修改后的 Apk.cmake,名为 android.apk.cmake。我使用 NativeActivity 而不是 pixellight:s LoadLibraries.java。

克隆在这里: https ://github.com/Discordia/android-cmake

我在 Vi.:s 答案中创建了示例: https ://github.com/Discordia/android-cmake-example

于 2014-07-21T20:31:38.977 回答