Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resolving CocoaPods target overrides warnings for compilers

I'm using CocoaPods and am getting the warnings below. The error says to change the default settings to $(inherited), but that's not possible with these targets. You can only select from a list of options. Everything seems to be working, so I'm happy to just ignore the warnings, but if anyone can shed some light, I'd appreciate it!

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

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

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

[!] The `VitogoTests [Release]` target overrides the `CLANG_CXX_LIBRARY` build setting defined in `Pods/Target Support Files/Pods-VitogoTests/Pods-VitogoTests.release.xcconfig'. This can lead to problems with the CocoaPods installation
    - Use the `$(inherited)` flag, or
    - Remove the build settings from the target.
like image 772
Arel Avatar asked Nov 01 '22 14:11

Arel


1 Answers

I can't say for sure, but from my research, the warnings are from a bug in cocoapods, so it's safe to ignore them.

like image 58
Arel Avatar answered Nov 08 '22 05:11

Arel