我是靠谱客的博主 从容小鸽子,最近开发中收集的这篇文章主要介绍iOS-Bug收集:CocoaPods 错误 target overrides the `OTHER_LDFLAGS`...,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这里写图片描述

[!] The Paopao [Debug] target overrides the PODS_ROOT build setting defined in Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the
$(inherited)` flag, or
- Remove the build settings from the target.

[!] The Paopao [Debug] target overrides the OTHER_LDFLAGS build setting defined in Pods/Target Support Files/Pods/Pods.debug.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the
$(inherited)` flag, or
- Remove the build settings from the target.

[!] The Paopao [Release] target overrides the PODS_ROOT build setting defined in Pods/Target Support Files/Pods/Pods.release.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the
$(inherited)` flag, or
- Remove the build settings from the target.

[!] The Paopao [Release] target overrides the OTHER_LDFLAGS build setting defined in Pods/Target Support Files/Pods/Pods.release.xcconfig'. This can lead to problems with the CocoaPods installation
- Use the
$(inherited)` flag, or
- Remove the build settings from the target.
这种警告是不能忽视的,它带来的直接后果就是无法通过编译。

而产生此警告的原因是项目 Target 中的一些设置,CocoaPods 也做了默认的设置,如果两个设置结果不一致,就会造成问题。

我想要使用 CocoaPods 中的设置,分别在我的项目中定义PODS_ROOTOther Linker Flags的地方,把他们的值用$(inherited)替换掉,进入终端,执行

pod update
警告没了,回到 Xcode,build通过。

网上还流行另外一种简单粗暴的方法
点击项目文件 project.xcodeproj,右键显示包内容,用文本编辑器打开project.pbxproj,删除OTHER_LDFLAGS的地方,保存,回到 Xcode,编译通过。

最后

以上就是从容小鸽子为你收集整理的iOS-Bug收集:CocoaPods 错误 target overrides the `OTHER_LDFLAGS`...的全部内容,希望文章能够帮你解决iOS-Bug收集:CocoaPods 错误 target overrides the `OTHER_LDFLAGS`...所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部