Joel Derfner
Joel Derfner

Reputation: 2207

How do I fix these Apple Mach-O Linker Errors?

I'm using Xcode 4.5. After trying to build an app I've just started on, I got the following Apple Mach-O Linker Error messages.

enter image description here

What does this mean and how can I fix it?

Upvotes: 4

Views: 4558

Answers (1)

D_4_ni
D_4_ni

Reputation: 901

To fix the first two errors, add the AdSupport and CoreLocation frameworks to your "Link with Binaries" build phase.

The last error is probably caused by you not including all your .m files in the "Compile Sources" build phase - the missing one is likely called GHHaiku.m.

Upvotes: 13

Related Questions