apple mach-o linker error

Hello

I'm fairly new to the app development and i recieved this error

I noticed that these errors occur after i try to #import <Moltin/Moltin.h> from the Moltin SDK


I'm trying to understand what this apple mach-o error is, so any explaination should be really helpful.

Also any ideas on how to fix this would be a really great help.


Thanks

Did you do a clean build folder ?


Select menu option while pressing option key

=> Product -> clean build folder

Thanks a lot !

This helped big time.

But i still don't really understand apple mach-o linker error, any idea where i can find some good read about it?

Apple platforms use Mach-O as their object file format, so you should think of the “apple mach-o linker” as just the linker. In short, you have a linker error.

You can learn more about linker errors by looking at the error message output by the linker. Xcode doesn’t do a good job of surfacing this through Issue navigator. You can, however, see the actual error in the build transcript, which you see in the Report navigator (View > Navigators > Show Report Navigator). Select By Time at the top, select the most recent Build entry in the list on the left, select the failing Link step in the main editor, then choose Editor > Expand Selected Transcripts.

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"

What option clean does is forcing linker to reevaluate all the links. It frequently happens that links are obsolete, leading to the linker error.

apple mach-o linker error
 
 
Q