Reputation: 7022
I am having very bad problems with CocoaPod
. I had to update Cocoa pods
for Yosemite. I then ran pod update and got the following warning message:
[!] The `app [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.
And
[!] The `app [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.
EDIT:
I followed @mef link but did not know where to place the code?
Upvotes: 6
Views: 10189
Reputation: 7022
Based on Mefs link I was able to get it working. If anyone is wondering where to put $(inherited)
, put it in the Other linker Flags
section of your project.
Upvotes: 14