cuSoon
cuSoon

Reputation: 53

Apple Mach-O Linker Warning without any details

After updating to Xcode 8.3.2 I got an Apple Mach-O Linker Warning when trying to run on a device (It's working on simulator). But I did not get any details. Double click on the error does not bring more informations about the linker warning. Can anyone help?

enter image description here

Upvotes: 1

Views: 165

Answers (1)

rob mayoff
rob mayoff

Reputation: 385670

Right-click (or control-click) the error message and choose “Reveal in Log”.

revealing the log

For this demo, I forced a linker error by manually truncating one of my .o files. Your error will probably be something else.

The first thing to try if you can't tell make sense of the linker error (once you find it in the log) is to do a clean build. Hold the option key () and choose Product > Clean Build Folder…. Then choose Product > Build.

Upvotes: 3

Related Questions