xcode10 error $(inherited)

原文:

http://tryenough.com/2278/

問題 :

解決使用 CocoaPods 執行 pod install 時出現 - Use the $(inherited) flag ... 警告[!]

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

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

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

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

解決方法

打開項目 Target - Build Settings ,

搜索 Other Linker Flags ,在這個設置上加入 $(inherited) 。

打開項目 Target - Build Settings,依次搜索如下圖所示的警告上提示的設置名稱,將這些設置選項全部改爲 $(inherited) 。

然後重新執行 pod install 或者 pod update 就會發現警告消失了。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章