Reputation: 1948
I am getting and "Undefined symbol" error while compiling an iPhone app. I had read somewhere about adding two flags in "Other linker flags" in Xcode project settings but don't remember them now.
Can anyone please tell me what are the flags for suppressing these errors in Xcode?
Upvotes: 1
Views: 842
Reputation: 1948
Add -force_flat_namespace -undefined suppress
to Other Linker Flags in Xcode Build Settings.
Upvotes: 3