Is there a list of all flags that can be put into the Other Linker Flags
field of the Xcode Build Settings?
I've searched the developer documentation without results.
Is there a list of all flags that can be put into the Other Linker Flags
field of the Xcode Build Settings?
I've searched the developer documentation without results.
Well a definitive list of all the flags supported by ld
is available in the ld manpage
, and I guess you'd have to ignore the flags that are properly supported by Xcode in order to get your list.
You can, of course, access the manpage from your Mac by firing up Terminal and typing:
$ man ld
It's also probably available from with the Xcode Documentation window.