Just had a similar issue when I ran pod install
, I saw the following warnings/errors (related to CLANG_CXX_LIBRARY
):
[!] The `Project [Debug]` target overrides the `CLANG_CXX_LIBRARY` 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 `Project [Release]` target overrides the `CLANG_CXX_LIBRARY` 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.
Project
so you can see the Build Settings
.Target
(AppName
under Targets
)C++ Standard Library
(It will probably be in BOLD - This means it's overridden).The line should not be bolded anymore and if you run pod install
the warnings/errors should have disappeared.