Xcode what's the difference between “Other Linker Flags” vs “Other_LDFLAGS”

前端 未结 1 1432
心在旅途
心在旅途 2020-12-30 03:39

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 Link

相关标签:
1条回答
  • 2020-12-30 04:24

    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.

    0 讨论(0)
提交回复
热议问题