Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Other Linker Flags list

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.

like image 327
Lucabro Avatar asked Jan 24 '13 09:01

Lucabro


People also ask

What does linker flag do?

This flag causes the linker to load every object file in the library that defines an Objective-C class or category.


1 Answers

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.

like image 163
trojanfoe Avatar answered Oct 03 '22 06:10

trojanfoe