19

I have an app that crashes on build.

I'm told to set the "Other Linker Flags" to -ObjC. Fine.. but

in Xcode's Build settings, I don't see "Other Linker Flags", I see "Other_LDFLAGS".

So, what is the difference, and how do I change from one to the other if necessary?

A picture is worth.... so.. what I'm told I need:

enter image description here

and what I have:

enter image description here

ICL1901
  • 7,632
  • 14
  • 90
  • 138

1 Answers1

31

These are the same thing. One is a synonym for the other. If you click on the Quick Help in the inspector in Xcode 4.5 when you have "Other Linker Flags" selected, it will tell you that it sets the "OTHER_LDFLAGS" setting. "Other Linker Flags" is the human-readable version, and OTHER_LDFLAGS is the actual variable name that the linker uses.

user1118321
  • 25,567
  • 4
  • 55
  • 86
  • 4
    Is there a way to switch to the Human readable version? (After the last few days, I'm feeling human). – ICL1901 Oct 23 '12 at 13:58
  • 7
    When you have the project or target build settings displayed, choose "Show Settings Titles" or "Show Settings Names" from the "Editor" menu to switch between them. – user1118321 Oct 23 '12 at 18:24
  • 1
    "click on the Quick Help .." A GREAT TIP after all these years, thanks! – Fattie Jan 10 '19 at 19:11