如何为 iOS 7.0 构建 Mantle v2?
How to build Mantle v2 for iOS 7.0?
我的项目目前针对 iOS 7.1 及更高版本。我按照 Mantle's GitHub site 中的描述构建了 Mantle 和 Carthage。但是在构建我的项目时出现以下错误:
ld: embedded dylibs/frameworks are only supported on iOS 8.0 and later
(@rpath/Mantle.framework/Mantle) for architecture arm64 clang: error:
linker command failed with exit code 1 (use -v to see invocation)
有人知道我如何为 iOS 7.1(最好是 Carthage)构建 Mantle.framework
吗?
如果你想以 iOS 7.x 为目标,那么你不能使用框架,因为只有 iOS 8.0 及更高版本才支持框架。由于 Carthage 创建框架,您也将无法使用 Carthage。
如果您仍想使用 Mantle,请手动将其文件包含到您的项目中,或者使用 Cocoapods 使用现有的 Cocoapods spec files Mantle 之一将其构建为静态库。
我的项目目前针对 iOS 7.1 及更高版本。我按照 Mantle's GitHub site 中的描述构建了 Mantle 和 Carthage。但是在构建我的项目时出现以下错误:
ld: embedded dylibs/frameworks are only supported on iOS 8.0 and later (@rpath/Mantle.framework/Mantle) for architecture arm64 clang: error: linker command failed with exit code 1 (use -v to see invocation)
有人知道我如何为 iOS 7.1(最好是 Carthage)构建 Mantle.framework
吗?
如果你想以 iOS 7.x 为目标,那么你不能使用框架,因为只有 iOS 8.0 及更高版本才支持框架。由于 Carthage 创建框架,您也将无法使用 Carthage。
如果您仍想使用 Mantle,请手动将其文件包含到您的项目中,或者使用 Cocoapods 使用现有的 Cocoapods spec files Mantle 之一将其构建为静态库。