我已经将SpatialIite合并到一个Xcode项目中,该项目使用了来自projproject .4的头文件,只有一个头文件。两者都是Xcode项目,都有静态目标。

我试图从git子模块迁移到Cocoapods。由于静态目标似乎很难与Cocoapods一起使用,我只想以通常的方式构建项目。我为项目4做了podspec。在为SpatialLite编写podfile后,我得到了警告:

[!] The target `SpatialiteIOS [Debug]` overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Pods.xcconfig'.
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

[!] The target `SpatialiteIOS [Debug]` overrides the `HEADER_SEARCH_PATHS` build setting defined in `Pods/Pods.xcconfig'.
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

[!] The target `SpatialiteIOS [Debug - Release]` overrides the `OTHER_LDFLAGS` build setting defined in `Pods/Pods.xcconfig'.
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

[!] The target `SpatialiteIOS [Debug - Release]` overrides the `HEADER_SEARCH_PATHS` build setting defined in `Pods/Pods.xcconfig'.
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.

我读了这个问题,但我对警告是什么意思以及我能做些什么来解决它一无所知。

另外一个问题是,当我单独打开工作区以及打开SpatiaLite项目时,两者都是针对Mac OSX 64的,而它应该是一个iOS项目。我的播客文件上写着“平台:ios”。


当前回答

Xcode截图

Ankish Jain给出了对我有用的答案。这里是要做什么的截图,因为我花了一点时间来找出到底要做什么。

在我的情况下,我需要添加$(继承)到我的“其他链接器标志”,因为这是什么显示为覆盖终端。

其他回答

当我将$(inherited)标记添加到有问题的文件(在本例中是LIBRARY_SEARCH_PATHS)时,它导致了架构arm64的未定义符号:“_swift_getTypeByMangledNameInContextInMetadataState”的另一个错误

改变以下工作,我能够构建:

>LIBRARY_SEARCH_PATHS = (
   "\"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)\"",
-  "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)\"", <--- Change this...
+  "\"$(TOOLCHAIN_DIR)/usr/lib/swift-5.2/$(PLATFORM_NAME)\"", <--- to this
   "\"$(inherited)\"",
> );

我在终端中看到了这3个pod命令错误

pod install

[!MY_APP [Debug/Release]目标覆盖 HEADER_SEARCH_PATHS…… [!MY_APP [Debug/Release]目标 覆盖OTHER_LDFLAGS… [!MY_APP [Debug/Release]目标 重写GCC_PREPROCESSOR_DEFINITIONS…

添加$(inherited)到,这3个错误都会消失

页眉搜索路径 其他链接标志 预处理器宏

在Project -> Target -> Build Settings中

现在该命令将运行而不会出现任何错误

pod install

如果Xcode在链接时报错,例如Library not found for -lPods,它不会检测隐式依赖:

进入“产品>编辑方案” 点击构建 添加Pods静态库 清理并重新建造

对我来说问题出在我的目标测试上。我已经在我的主应用程序目标中有$(继承)标志。

我把它添加到MyAppTests其他链接器标志。之后,当我运行pod安装时,警告信息消失了。

下面的第一行链接拯救了我:

要向项目构建设置中的选项添加值,请在值列表前面加上$(inherited)。

https://github.com/CocoaPods/CocoaPods/wiki/Creating-a-project-that-uses-CocoaPods#faq

另外,不要忘记在pod文件的开头插入这一行:

platform :iOS, '5.0'