Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

Tags:

xcode

ios

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?

like image 344
Joel Derfner Avatar asked Dec 11 '22 20:12

Joel Derfner


1 Answers

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.

like image 170
D_4_ni Avatar answered Jan 18 '23 02:01

D_4_ni