更新pod 的时候报错
[!] The `***** [Debug]` target overrides the `OTHER_LDFLAGS ` build setting defined in `Pods/Target Support Files/Pods-XCTG3/Pods-XCTG3.debug.xcconfig'. This can lead to problems with the CocoaPods installation
OTHER_LDFLAGS 指的是 other linker flags;
[!] The `****** [Debug]` target overrides the `OTHER_CFLAGS` build setting defined in `Pods/Target Support Files/Pods-XCTG3/Pods-XCTG3.debug.xcconfig'. This can lead to problems with the CocoaPods installation
OTHER_CFLAGS 指的是 other c flags;
[!] The `**** [Debug]` target overrides the `HEADER_SEARCH_PATHS ` build setting defined in `Pods/Target Support Files/Pods-XCTG3/Pods-XCTG3.debug.xcconfig'. This can lead to problems with the CocoaPods installation
HEADER_SEARCH_PATHS 指的是 header search paths.
分别在对应的设置里面添加$(inherited)
然后再次 pod install
即可
网友评论