23

我使用 CMake 作为我的构建工具编译了一个 C++ 静态库,我想将它链接到我的 iOS 应用程序。
我在 Xcode 中创建了一个简单的“空”应用程序,并将名为 libengine.a 的库链接到它。
我试图编译我的 iOS 项目,链接器给了我这个警告:

ignoring file /Users/.../build/engine/libengine.a, 
file was built for archive which is not the architecture being linked (i386):
/Users/.../build/engine/libengine.a

据我了解,我需要为 ARM 处理器编译我的库。问题是我不知道怎么做。
我认为 CMake 真的缺乏好的教程。
无论如何,我的 CMake 脚本附在下面。

任何帮助将不胜感激。
谢谢,塔尔。

这是我的主要 CMake 脚本:

cmake_minimum_required(VERSION 2.8)

project(movie-night)

if (DEFINED PLATFORM)
    include(toolchains/ios.cmake)
endif()

add_definitions(-Wall)

set(DEBUG)

if (DEFINED DEBUG)
    add_definitions(-g)
endif()

if (DEFINED RELEASE)
    add_definitions(-O3)
endif()

add_subdirectory(engine)
add_subdirectory(ui)

add_subdirectory(test)

这是我的工具链/ios.cmake 文件:

set(CMAKE_SYSTEM_NAME Darwin)
set(CMAKE_SYSTEM_PROCESSOR arm)
4

4 回答 4

15

只需使用此工具链文件:http ://code.google.com/p/ios-cmake/并将其用作

cmake -DCMAKE_TOOLCHAIN_FILE=path_to_your_toolchain_file

然后,在CMakeLists.txt

SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -arch armv7")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -arch armv7")
于 2012-09-27T23:17:38.173 回答
11

通过遵循cmake-toolchains文档,我如下所示:

cmake -G Xcode -B build \
    -DCMAKE_SYSTEM_NAME=iOS \
    -DCMAKE_Swift_COMPILER_FORCED=true \
    -DCMAKE_OSX_DEPLOYMENT_TARGET=11.0

注意:以 iOS 为目标时,该分配CMAKE_OSX_DEPLOYMENT_TARGET=11.0不是错误。

于 2020-04-20T07:57:10.537 回答
3

我使用 iOS CMake 工具链的更新版本已经有一段时间了:https ://github.com/leetal/ios-cmake

这将创建一个 Xcode 项目,如果需要,您可以将其拖到现有的 iOS 项目中。

我写了一篇包含更多详细信息的博客文章:https ://blog.tomtasche.at/2019/05/how-to-include-cmake-project-in-xcode.html

于 2020-04-05T12:27:55.417 回答
2

iOS.cmake 的第二个版本位于:

https://ceres-solver.googlesource.com

注意:您可能会发现这两个版本的 iOS.cmake 都只会构建您项目的 x86 版本。CMake 现在将 CMAKE_OSX_SYSROOT 设置为您系统上可用的(最新)Mac OS X SDK。您可以通过修改您的 iOS.cmake 副本以始终设置 CMAKE_OSX_SYSROOT 来解决此问题。您可以通过注释掉您的 iOS.cmake 副本中的几行来做到这一点:

# -- Under CMake 3.4.2, CMAKE_OSX_SYSROOT is automatically defined to point to the latest Mac OS X SDK. --
# -- So, the iOS SDK is never found.  Grab the correct CMAKE_OS_SYSROOT and ignore any prior setting.   --

# If user did not specify the SDK root to use, then query xcodebuild for it.
# if (NOT CMAKE_OSX_SYSROOT)
  execute_process(COMMAND xcodebuild -version -sdk ${XCODE_IOS_PLATFORM} Path
    OUTPUT_VARIABLE CMAKE_OSX_SYSROOT
    ERROR_QUIET
    OUTPUT_STRIP_TRAILING_WHITESPACE)
  message (STATUS "Using SDK: ${CMAKE_OSX_SYSROOT} for platform: ${IOS_PLATFORM}")
  message (STATUS "be sure the previous line points to the correct SDK")
# endif ( )
于 2016-01-27T22:10:29.620 回答