x86_64-linux-gnu-ld.1 131 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946
  1. .\" Automatically generated by Pod::Man 4.11 (Pod::Simple 3.35)
  2. .\"
  3. .\" Standard preamble:
  4. .\" ========================================================================
  5. .de Sp \" Vertical space (when we can't use .PP)
  6. .if t .sp .5v
  7. .if n .sp
  8. ..
  9. .de Vb \" Begin verbatim text
  10. .ft CW
  11. .nf
  12. .ne \\$1
  13. ..
  14. .de Ve \" End verbatim text
  15. .ft R
  16. .fi
  17. ..
  18. .\" Set up some character translations and predefined strings. \*(-- will
  19. .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
  20. .\" double quote, and \*(R" will give a right double quote. \*(C+ will
  21. .\" give a nicer C++. Capital omega is used to do unbreakable dashes and
  22. .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
  23. .\" nothing in troff, for use with C<>.
  24. .tr \(*W-
  25. .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
  26. .ie n \{\
  27. . ds -- \(*W-
  28. . ds PI pi
  29. . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
  30. . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
  31. . ds L" ""
  32. . ds R" ""
  33. . ds C` ""
  34. . ds C' ""
  35. 'br\}
  36. .el\{\
  37. . ds -- \|\(em\|
  38. . ds PI \(*p
  39. . ds L" ``
  40. . ds R" ''
  41. . ds C`
  42. . ds C'
  43. 'br\}
  44. .\"
  45. .\" Escape single quotes in literal strings from groff's Unicode transform.
  46. .ie \n(.g .ds Aq \(aq
  47. .el .ds Aq '
  48. .\"
  49. .\" If the F register is >0, we'll generate index entries on stderr for
  50. .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
  51. .\" entries marked with X<> in POD. Of course, you'll have to process the
  52. .\" output yourself in some meaningful fashion.
  53. .\"
  54. .\" Avoid warning from groff about undefined register 'F'.
  55. .de IX
  56. ..
  57. .nr rF 0
  58. .if \n(.g .if rF .nr rF 1
  59. .if (\n(rF:(\n(.g==0)) \{\
  60. . if \nF \{\
  61. . de IX
  62. . tm Index:\\$1\t\\n%\t"\\$2"
  63. ..
  64. . if !\nF==2 \{\
  65. . nr % 0
  66. . nr F 2
  67. . \}
  68. . \}
  69. .\}
  70. .rr rF
  71. .\"
  72. .\" Accent mark definitions (@(#)ms.acc 1.5 88/02/08 SMI; from UCB 4.2).
  73. .\" Fear. Run. Save yourself. No user-serviceable parts.
  74. . \" fudge factors for nroff and troff
  75. .if n \{\
  76. . ds #H 0
  77. . ds #V .8m
  78. . ds #F .3m
  79. . ds #[ \f1
  80. . ds #] \fP
  81. .\}
  82. .if t \{\
  83. . ds #H ((1u-(\\\\n(.fu%2u))*.13m)
  84. . ds #V .6m
  85. . ds #F 0
  86. . ds #[ \&
  87. . ds #] \&
  88. .\}
  89. . \" simple accents for nroff and troff
  90. .if n \{\
  91. . ds ' \&
  92. . ds ` \&
  93. . ds ^ \&
  94. . ds , \&
  95. . ds ~ ~
  96. . ds /
  97. .\}
  98. .if t \{\
  99. . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u"
  100. . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u'
  101. . ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'^\h'|\\n:u'
  102. . ds , \\k:\h'-(\\n(.wu*8/10)',\h'|\\n:u'
  103. . ds ~ \\k:\h'-(\\n(.wu-\*(#H-.1m)'~\h'|\\n:u'
  104. . ds / \\k:\h'-(\\n(.wu*8/10-\*(#H)'\z\(sl\h'|\\n:u'
  105. .\}
  106. . \" troff and (daisy-wheel) nroff accents
  107. .ds : \\k:\h'-(\\n(.wu*8/10-\*(#H+.1m+\*(#F)'\v'-\*(#V'\z.\h'.2m+\*(#F'.\h'|\\n:u'\v'\*(#V'
  108. .ds 8 \h'\*(#H'\(*b\h'-\*(#H'
  109. .ds o \\k:\h'-(\\n(.wu+\w'\(de'u-\*(#H)/2u'\v'-.3n'\*(#[\z\(de\v'.3n'\h'|\\n:u'\*(#]
  110. .ds d- \h'\*(#H'\(pd\h'-\w'~'u'\v'-.25m'\f2\(hy\fP\v'.25m'\h'-\*(#H'
  111. .ds D- D\\k:\h'-\w'D'u'\v'-.11m'\z\(hy\v'.11m'\h'|\\n:u'
  112. .ds th \*(#[\v'.3m'\s+1I\s-1\v'-.3m'\h'-(\w'I'u*2/3)'\s-1o\s+1\*(#]
  113. .ds Th \*(#[\s+2I\s-2\h'-\w'I'u*3/5'\v'-.3m'o\v'.3m'\*(#]
  114. .ds ae a\h'-(\w'a'u*4/10)'e
  115. .ds Ae A\h'-(\w'A'u*4/10)'E
  116. . \" corrections for vroff
  117. .if v .ds ~ \\k:\h'-(\\n(.wu*9/10-\*(#H)'\s-2\u~\d\s+2\h'|\\n:u'
  118. .if v .ds ^ \\k:\h'-(\\n(.wu*10/11-\*(#H)'\v'-.4m'^\v'.4m'\h'|\\n:u'
  119. . \" for low resolution devices (crt and lpr)
  120. .if \n(.H>23 .if \n(.V>19 \
  121. \{\
  122. . ds : e
  123. . ds 8 ss
  124. . ds o a
  125. . ds d- d\h'-1'\(ga
  126. . ds D- D\h'-1'\(hy
  127. . ds th \o'bp'
  128. . ds Th \o'LP'
  129. . ds ae ae
  130. . ds Ae AE
  131. .\}
  132. .rm #[ #] #H #V #F C
  133. .\" ========================================================================
  134. .\"
  135. .IX Title "LD 1"
  136. .TH LD 1 "2020-09-14" "binutils-2.34" "GNU Development Tools"
  137. .\" For nroff, turn off justification. Always turn off hyphenation; it makes
  138. .\" way too many mistakes in technical documents.
  139. .if n .ad l
  140. .nh
  141. .SH "NAME"
  142. ld \- The GNU linker
  143. .SH "SYNOPSIS"
  144. .IX Header "SYNOPSIS"
  145. ld [\fBoptions\fR] \fIobjfile\fR ...
  146. .SH "DESCRIPTION"
  147. .IX Header "DESCRIPTION"
  148. \&\fBld\fR combines a number of object and archive files, relocates
  149. their data and ties up symbol references. Usually the last step in
  150. compiling a program is to run \fBld\fR.
  151. .PP
  152. \&\fBld\fR accepts Linker Command Language files written in
  153. a superset of \s-1AT&T\s0's Link Editor Command Language syntax,
  154. to provide explicit and total control over the linking process.
  155. .PP
  156. This man page does not describe the command language; see the
  157. \&\fBld\fR entry in \f(CW\*(C`info\*(C'\fR for full details on the command
  158. language and on other aspects of the \s-1GNU\s0 linker.
  159. .PP
  160. This version of \fBld\fR uses the general purpose \s-1BFD\s0 libraries
  161. to operate on object files. This allows \fBld\fR to read, combine, and
  162. write object files in many different formats\-\-\-for example, \s-1COFF\s0 or
  163. \&\f(CW\*(C`a.out\*(C'\fR. Different formats may be linked together to produce any
  164. available kind of object file.
  165. .PP
  166. Aside from its flexibility, the \s-1GNU\s0 linker is more helpful than other
  167. linkers in providing diagnostic information. Many linkers abandon
  168. execution immediately upon encountering an error; whenever possible,
  169. \&\fBld\fR continues executing, allowing you to identify other errors
  170. (or, in some cases, to get an output file in spite of the error).
  171. .PP
  172. The \s-1GNU\s0 linker \fBld\fR is meant to cover a broad range of situations,
  173. and to be as compatible as possible with other linkers. As a result,
  174. you have many choices to control its behavior.
  175. .SH "OPTIONS"
  176. .IX Header "OPTIONS"
  177. The linker supports a plethora of command-line options, but in actual
  178. practice few of them are used in any particular context.
  179. For instance, a frequent use of \fBld\fR is to link standard Unix
  180. object files on a standard, supported Unix system. On such a system, to
  181. link a file \f(CW\*(C`hello.o\*(C'\fR:
  182. .PP
  183. .Vb 1
  184. \& ld \-o <output> /lib/crt0.o hello.o \-lc
  185. .Ve
  186. .PP
  187. This tells \fBld\fR to produce a file called \fIoutput\fR as the
  188. result of linking the file \f(CW\*(C`/lib/crt0.o\*(C'\fR with \f(CW\*(C`hello.o\*(C'\fR and
  189. the library \f(CW\*(C`libc.a\*(C'\fR, which will come from the standard search
  190. directories. (See the discussion of the \fB\-l\fR option below.)
  191. .PP
  192. Some of the command-line options to \fBld\fR may be specified at any
  193. point in the command line. However, options which refer to files, such
  194. as \fB\-l\fR or \fB\-T\fR, cause the file to be read at the point at
  195. which the option appears in the command line, relative to the object
  196. files and other file options. Repeating non-file options with a
  197. different argument will either have no further effect, or override prior
  198. occurrences (those further to the left on the command line) of that
  199. option. Options which may be meaningfully specified more than once are
  200. noted in the descriptions below.
  201. .PP
  202. Non-option arguments are object files or archives which are to be linked
  203. together. They may follow, precede, or be mixed in with command-line
  204. options, except that an object file argument may not be placed between
  205. an option and its argument.
  206. .PP
  207. Usually the linker is invoked with at least one object file, but you can
  208. specify other forms of binary input files using \fB\-l\fR, \fB\-R\fR,
  209. and the script command language. If \fIno\fR binary input files at all
  210. are specified, the linker does not produce any output, and issues the
  211. message \fBNo input files\fR.
  212. .PP
  213. If the linker cannot recognize the format of an object file, it will
  214. assume that it is a linker script. A script specified in this way
  215. augments the main linker script used for the link (either the default
  216. linker script or the one specified by using \fB\-T\fR). This feature
  217. permits the linker to link against a file which appears to be an object
  218. or an archive, but actually merely defines some symbol values, or uses
  219. \&\f(CW\*(C`INPUT\*(C'\fR or \f(CW\*(C`GROUP\*(C'\fR to load other objects. Specifying a
  220. script in this way merely augments the main linker script, with the
  221. extra commands placed after the main script; use the \fB\-T\fR option
  222. to replace the default linker script entirely, but note the effect of
  223. the \f(CW\*(C`INSERT\*(C'\fR command.
  224. .PP
  225. For options whose names are a single letter,
  226. option arguments must either follow the option letter without intervening
  227. whitespace, or be given as separate arguments immediately following the
  228. option that requires them.
  229. .PP
  230. For options whose names are multiple letters, either one dash or two can
  231. precede the option name; for example, \fB\-trace\-symbol\fR and
  232. \&\fB\-\-trace\-symbol\fR are equivalent. Note\-\-\-there is one exception to
  233. this rule. Multiple letter options that start with a lower case 'o' can
  234. only be preceded by two dashes. This is to reduce confusion with the
  235. \&\fB\-o\fR option. So for example \fB\-omagic\fR sets the output file
  236. name to \fBmagic\fR whereas \fB\-\-omagic\fR sets the \s-1NMAGIC\s0 flag on the
  237. output.
  238. .PP
  239. Arguments to multiple-letter options must either be separated from the
  240. option name by an equals sign, or be given as separate arguments
  241. immediately following the option that requires them. For example,
  242. \&\fB\-\-trace\-symbol foo\fR and \fB\-\-trace\-symbol=foo\fR are equivalent.
  243. Unique abbreviations of the names of multiple-letter options are
  244. accepted.
  245. .PP
  246. Note\-\-\-if the linker is being invoked indirectly, via a compiler driver
  247. (e.g. \fBgcc\fR) then all the linker command-line options should be
  248. prefixed by \fB\-Wl,\fR (or whatever is appropriate for the particular
  249. compiler driver) like this:
  250. .PP
  251. .Vb 1
  252. \& gcc \-Wl,\-\-start\-group foo.o bar.o \-Wl,\-\-end\-group
  253. .Ve
  254. .PP
  255. This is important, because otherwise the compiler driver program may
  256. silently drop the linker options, resulting in a bad link. Confusion
  257. may also arise when passing options that require values through a
  258. driver, as the use of a space between option and argument acts as
  259. a separator, and causes the driver to pass only the option to the linker
  260. and the argument to the compiler. In this case, it is simplest to use
  261. the joined forms of both single\- and multiple-letter options, such as:
  262. .PP
  263. .Vb 1
  264. \& gcc foo.o bar.o \-Wl,\-eENTRY \-Wl,\-Map=a.map
  265. .Ve
  266. .PP
  267. Here is a table of the generic command-line switches accepted by the \s-1GNU\s0
  268. linker:
  269. .IP "\fB@\fR\fIfile\fR" 4
  270. .IX Item "@file"
  271. Read command-line options from \fIfile\fR. The options read are
  272. inserted in place of the original @\fIfile\fR option. If \fIfile\fR
  273. does not exist, or cannot be read, then the option will be treated
  274. literally, and not removed.
  275. .Sp
  276. Options in \fIfile\fR are separated by whitespace. A whitespace
  277. character may be included in an option by surrounding the entire
  278. option in either single or double quotes. Any character (including a
  279. backslash) may be included by prefixing the character to be included
  280. with a backslash. The \fIfile\fR may itself contain additional
  281. @\fIfile\fR options; any such options will be processed recursively.
  282. .IP "\fB\-a\fR \fIkeyword\fR" 4
  283. .IX Item "-a keyword"
  284. This option is supported for \s-1HP/UX\s0 compatibility. The \fIkeyword\fR
  285. argument must be one of the strings \fBarchive\fR, \fBshared\fR, or
  286. \&\fBdefault\fR. \fB\-aarchive\fR is functionally equivalent to
  287. \&\fB\-Bstatic\fR, and the other two keywords are functionally equivalent
  288. to \fB\-Bdynamic\fR. This option may be used any number of times.
  289. .IP "\fB\-\-audit\fR \fI\s-1AUDITLIB\s0\fR" 4
  290. .IX Item "--audit AUDITLIB"
  291. Adds \fI\s-1AUDITLIB\s0\fR to the \f(CW\*(C`DT_AUDIT\*(C'\fR entry of the dynamic section.
  292. \&\fI\s-1AUDITLIB\s0\fR is not checked for existence, nor will it use the \s-1DT_SONAME\s0
  293. specified in the library. If specified multiple times \f(CW\*(C`DT_AUDIT\*(C'\fR
  294. will contain a colon separated list of audit interfaces to use. If the linker
  295. finds an object with an audit entry while searching for shared libraries,
  296. it will add a corresponding \f(CW\*(C`DT_DEPAUDIT\*(C'\fR entry in the output file.
  297. This option is only meaningful on \s-1ELF\s0 platforms supporting the rtld-audit
  298. interface.
  299. .IP "\fB\-b\fR \fIinput-format\fR" 4
  300. .IX Item "-b input-format"
  301. .PD 0
  302. .IP "\fB\-\-format=\fR\fIinput-format\fR" 4
  303. .IX Item "--format=input-format"
  304. .PD
  305. \&\fBld\fR may be configured to support more than one kind of object
  306. file. If your \fBld\fR is configured this way, you can use the
  307. \&\fB\-b\fR option to specify the binary format for input object files
  308. that follow this option on the command line. Even when \fBld\fR is
  309. configured to support alternative object formats, you don't usually need
  310. to specify this, as \fBld\fR should be configured to expect as a
  311. default input format the most usual format on each machine.
  312. \&\fIinput-format\fR is a text string, the name of a particular format
  313. supported by the \s-1BFD\s0 libraries. (You can list the available binary
  314. formats with \fBobjdump \-i\fR.)
  315. .Sp
  316. You may want to use this option if you are linking files with an unusual
  317. binary format. You can also use \fB\-b\fR to switch formats explicitly (when
  318. linking object files of different formats), by including
  319. \&\fB\-b\fR \fIinput-format\fR before each group of object files in a
  320. particular format.
  321. .Sp
  322. The default format is taken from the environment variable
  323. \&\f(CW\*(C`GNUTARGET\*(C'\fR.
  324. .Sp
  325. You can also define the input format from a script, using the command
  326. \&\f(CW\*(C`TARGET\*(C'\fR;
  327. .IP "\fB\-c\fR \fIMRI-commandfile\fR" 4
  328. .IX Item "-c MRI-commandfile"
  329. .PD 0
  330. .IP "\fB\-\-mri\-script=\fR\fIMRI-commandfile\fR" 4
  331. .IX Item "--mri-script=MRI-commandfile"
  332. .PD
  333. For compatibility with linkers produced by \s-1MRI,\s0 \fBld\fR accepts script
  334. files written in an alternate, restricted command language, described in
  335. the \s-1MRI\s0 Compatible Script Files section of \s-1GNU\s0 ld documentation.
  336. Introduce \s-1MRI\s0 script files with
  337. the option \fB\-c\fR; use the \fB\-T\fR option to run linker
  338. scripts written in the general-purpose \fBld\fR scripting language.
  339. If \fIMRI-cmdfile\fR does not exist, \fBld\fR looks for it in the directories
  340. specified by any \fB\-L\fR options.
  341. .IP "\fB\-d\fR" 4
  342. .IX Item "-d"
  343. .PD 0
  344. .IP "\fB\-dc\fR" 4
  345. .IX Item "-dc"
  346. .IP "\fB\-dp\fR" 4
  347. .IX Item "-dp"
  348. .PD
  349. These three options are equivalent; multiple forms are supported for
  350. compatibility with other linkers. They assign space to common symbols
  351. even if a relocatable output file is specified (with \fB\-r\fR). The
  352. script command \f(CW\*(C`FORCE_COMMON_ALLOCATION\*(C'\fR has the same effect.
  353. .IP "\fB\-\-depaudit\fR \fI\s-1AUDITLIB\s0\fR" 4
  354. .IX Item "--depaudit AUDITLIB"
  355. .PD 0
  356. .IP "\fB\-P\fR \fI\s-1AUDITLIB\s0\fR" 4
  357. .IX Item "-P AUDITLIB"
  358. .PD
  359. Adds \fI\s-1AUDITLIB\s0\fR to the \f(CW\*(C`DT_DEPAUDIT\*(C'\fR entry of the dynamic section.
  360. \&\fI\s-1AUDITLIB\s0\fR is not checked for existence, nor will it use the \s-1DT_SONAME\s0
  361. specified in the library. If specified multiple times \f(CW\*(C`DT_DEPAUDIT\*(C'\fR
  362. will contain a colon separated list of audit interfaces to use. This
  363. option is only meaningful on \s-1ELF\s0 platforms supporting the rtld-audit interface.
  364. The \-P option is provided for Solaris compatibility.
  365. .IP "\fB\-e\fR \fIentry\fR" 4
  366. .IX Item "-e entry"
  367. .PD 0
  368. .IP "\fB\-\-entry=\fR\fIentry\fR" 4
  369. .IX Item "--entry=entry"
  370. .PD
  371. Use \fIentry\fR as the explicit symbol for beginning execution of your
  372. program, rather than the default entry point. If there is no symbol
  373. named \fIentry\fR, the linker will try to parse \fIentry\fR as a number,
  374. and use that as the entry address (the number will be interpreted in
  375. base 10; you may use a leading \fB0x\fR for base 16, or a leading
  376. \&\fB0\fR for base 8).
  377. .IP "\fB\-\-exclude\-libs\fR \fIlib\fR\fB,\fR\fIlib\fR\fB,...\fR" 4
  378. .IX Item "--exclude-libs lib,lib,..."
  379. Specifies a list of archive libraries from which symbols should not be automatically
  380. exported. The library names may be delimited by commas or colons. Specifying
  381. \&\f(CW\*(C`\-\-exclude\-libs ALL\*(C'\fR excludes symbols in all archive libraries from
  382. automatic export. This option is available only for the i386 \s-1PE\s0 targeted
  383. port of the linker and for \s-1ELF\s0 targeted ports. For i386 \s-1PE,\s0 symbols
  384. explicitly listed in a .def file are still exported, regardless of this
  385. option. For \s-1ELF\s0 targeted ports, symbols affected by this option will
  386. be treated as hidden.
  387. .IP "\fB\-\-exclude\-modules\-for\-implib\fR \fImodule\fR\fB,\fR\fImodule\fR\fB,...\fR" 4
  388. .IX Item "--exclude-modules-for-implib module,module,..."
  389. Specifies a list of object files or archive members, from which symbols
  390. should not be automatically exported, but which should be copied wholesale
  391. into the import library being generated during the link. The module names
  392. may be delimited by commas or colons, and must match exactly the filenames
  393. used by \fBld\fR to open the files; for archive members, this is simply
  394. the member name, but for object files the name listed must include and
  395. match precisely any path used to specify the input file on the linker's
  396. command-line. This option is available only for the i386 \s-1PE\s0 targeted port
  397. of the linker. Symbols explicitly listed in a .def file are still exported,
  398. regardless of this option.
  399. .IP "\fB\-E\fR" 4
  400. .IX Item "-E"
  401. .PD 0
  402. .IP "\fB\-\-export\-dynamic\fR" 4
  403. .IX Item "--export-dynamic"
  404. .IP "\fB\-\-no\-export\-dynamic\fR" 4
  405. .IX Item "--no-export-dynamic"
  406. .PD
  407. When creating a dynamically linked executable, using the \fB\-E\fR
  408. option or the \fB\-\-export\-dynamic\fR option causes the linker to add
  409. all symbols to the dynamic symbol table. The dynamic symbol table is the
  410. set of symbols which are visible from dynamic objects at run time.
  411. .Sp
  412. If you do not use either of these options (or use the
  413. \&\fB\-\-no\-export\-dynamic\fR option to restore the default behavior), the
  414. dynamic symbol table will normally contain only those symbols which are
  415. referenced by some dynamic object mentioned in the link.
  416. .Sp
  417. If you use \f(CW\*(C`dlopen\*(C'\fR to load a dynamic object which needs to refer
  418. back to the symbols defined by the program, rather than some other
  419. dynamic object, then you will probably need to use this option when
  420. linking the program itself.
  421. .Sp
  422. You can also use the dynamic list to control what symbols should
  423. be added to the dynamic symbol table if the output format supports it.
  424. See the description of \fB\-\-dynamic\-list\fR.
  425. .Sp
  426. Note that this option is specific to \s-1ELF\s0 targeted ports. \s-1PE\s0 targets
  427. support a similar function to export all symbols from a \s-1DLL\s0 or \s-1EXE\s0; see
  428. the description of \fB\-\-export\-all\-symbols\fR below.
  429. .IP "\fB\-EB\fR" 4
  430. .IX Item "-EB"
  431. Link big-endian objects. This affects the default output format.
  432. .IP "\fB\-EL\fR" 4
  433. .IX Item "-EL"
  434. Link little-endian objects. This affects the default output format.
  435. .IP "\fB\-f\fR \fIname\fR" 4
  436. .IX Item "-f name"
  437. .PD 0
  438. .IP "\fB\-\-auxiliary=\fR\fIname\fR" 4
  439. .IX Item "--auxiliary=name"
  440. .PD
  441. When creating an \s-1ELF\s0 shared object, set the internal \s-1DT_AUXILIARY\s0 field
  442. to the specified name. This tells the dynamic linker that the symbol
  443. table of the shared object should be used as an auxiliary filter on the
  444. symbol table of the shared object \fIname\fR.
  445. .Sp
  446. If you later link a program against this filter object, then, when you
  447. run the program, the dynamic linker will see the \s-1DT_AUXILIARY\s0 field. If
  448. the dynamic linker resolves any symbols from the filter object, it will
  449. first check whether there is a definition in the shared object
  450. \&\fIname\fR. If there is one, it will be used instead of the definition
  451. in the filter object. The shared object \fIname\fR need not exist.
  452. Thus the shared object \fIname\fR may be used to provide an alternative
  453. implementation of certain functions, perhaps for debugging or for
  454. machine-specific performance.
  455. .Sp
  456. This option may be specified more than once. The \s-1DT_AUXILIARY\s0 entries
  457. will be created in the order in which they appear on the command line.
  458. .IP "\fB\-F\fR \fIname\fR" 4
  459. .IX Item "-F name"
  460. .PD 0
  461. .IP "\fB\-\-filter=\fR\fIname\fR" 4
  462. .IX Item "--filter=name"
  463. .PD
  464. When creating an \s-1ELF\s0 shared object, set the internal \s-1DT_FILTER\s0 field to
  465. the specified name. This tells the dynamic linker that the symbol table
  466. of the shared object which is being created should be used as a filter
  467. on the symbol table of the shared object \fIname\fR.
  468. .Sp
  469. If you later link a program against this filter object, then, when you
  470. run the program, the dynamic linker will see the \s-1DT_FILTER\s0 field. The
  471. dynamic linker will resolve symbols according to the symbol table of the
  472. filter object as usual, but it will actually link to the definitions
  473. found in the shared object \fIname\fR. Thus the filter object can be
  474. used to select a subset of the symbols provided by the object
  475. \&\fIname\fR.
  476. .Sp
  477. Some older linkers used the \fB\-F\fR option throughout a compilation
  478. toolchain for specifying object-file format for both input and output
  479. object files.
  480. The \s-1GNU\s0 linker uses other mechanisms for this purpose: the
  481. \&\fB\-b\fR, \fB\-\-format\fR, \fB\-\-oformat\fR options, the
  482. \&\f(CW\*(C`TARGET\*(C'\fR command in linker scripts, and the \f(CW\*(C`GNUTARGET\*(C'\fR
  483. environment variable.
  484. The \s-1GNU\s0 linker will ignore the \fB\-F\fR option when not
  485. creating an \s-1ELF\s0 shared object.
  486. .IP "\fB\-fini=\fR\fIname\fR" 4
  487. .IX Item "-fini=name"
  488. When creating an \s-1ELF\s0 executable or shared object, call \s-1NAME\s0 when the
  489. executable or shared object is unloaded, by setting \s-1DT_FINI\s0 to the
  490. address of the function. By default, the linker uses \f(CW\*(C`_fini\*(C'\fR as
  491. the function to call.
  492. .IP "\fB\-g\fR" 4
  493. .IX Item "-g"
  494. Ignored. Provided for compatibility with other tools.
  495. .IP "\fB\-G\fR \fIvalue\fR" 4
  496. .IX Item "-G value"
  497. .PD 0
  498. .IP "\fB\-\-gpsize=\fR\fIvalue\fR" 4
  499. .IX Item "--gpsize=value"
  500. .PD
  501. Set the maximum size of objects to be optimized using the \s-1GP\s0 register to
  502. \&\fIsize\fR. This is only meaningful for object file formats such as
  503. \&\s-1MIPS ELF\s0 that support putting large and small objects into different
  504. sections. This is ignored for other object file formats.
  505. .IP "\fB\-h\fR \fIname\fR" 4
  506. .IX Item "-h name"
  507. .PD 0
  508. .IP "\fB\-soname=\fR\fIname\fR" 4
  509. .IX Item "-soname=name"
  510. .PD
  511. When creating an \s-1ELF\s0 shared object, set the internal \s-1DT_SONAME\s0 field to
  512. the specified name. When an executable is linked with a shared object
  513. which has a \s-1DT_SONAME\s0 field, then when the executable is run the dynamic
  514. linker will attempt to load the shared object specified by the \s-1DT_SONAME\s0
  515. field rather than the using the file name given to the linker.
  516. .IP "\fB\-i\fR" 4
  517. .IX Item "-i"
  518. Perform an incremental link (same as option \fB\-r\fR).
  519. .IP "\fB\-init=\fR\fIname\fR" 4
  520. .IX Item "-init=name"
  521. When creating an \s-1ELF\s0 executable or shared object, call \s-1NAME\s0 when the
  522. executable or shared object is loaded, by setting \s-1DT_INIT\s0 to the address
  523. of the function. By default, the linker uses \f(CW\*(C`_init\*(C'\fR as the
  524. function to call.
  525. .IP "\fB\-l\fR \fInamespec\fR" 4
  526. .IX Item "-l namespec"
  527. .PD 0
  528. .IP "\fB\-\-library=\fR\fInamespec\fR" 4
  529. .IX Item "--library=namespec"
  530. .PD
  531. Add the archive or object file specified by \fInamespec\fR to the
  532. list of files to link. This option may be used any number of times.
  533. If \fInamespec\fR is of the form \fI:\fIfilename\fI\fR, \fBld\fR
  534. will search the library path for a file called \fIfilename\fR, otherwise it
  535. will search the library path for a file called \fIlib\fInamespec\fI.a\fR.
  536. .Sp
  537. On systems which support shared libraries, \fBld\fR may also search for
  538. files other than \fIlib\fInamespec\fI.a\fR. Specifically, on \s-1ELF\s0
  539. and SunOS systems, \fBld\fR will search a directory for a library
  540. called \fIlib\fInamespec\fI.so\fR before searching for one called
  541. \&\fIlib\fInamespec\fI.a\fR. (By convention, a \f(CW\*(C`.so\*(C'\fR extension
  542. indicates a shared library.) Note that this behavior does not apply
  543. to \fI:\fIfilename\fI\fR, which always specifies a file called
  544. \&\fIfilename\fR.
  545. .Sp
  546. The linker will search an archive only once, at the location where it is
  547. specified on the command line. If the archive defines a symbol which
  548. was undefined in some object which appeared before the archive on the
  549. command line, the linker will include the appropriate file(s) from the
  550. archive. However, an undefined symbol in an object appearing later on
  551. the command line will not cause the linker to search the archive again.
  552. .Sp
  553. See the \fB\-(\fR option for a way to force the linker to search
  554. archives multiple times.
  555. .Sp
  556. You may list the same archive multiple times on the command line.
  557. .Sp
  558. This type of archive searching is standard for Unix linkers. However,
  559. if you are using \fBld\fR on \s-1AIX,\s0 note that it is different from the
  560. behaviour of the \s-1AIX\s0 linker.
  561. .IP "\fB\-L\fR \fIsearchdir\fR" 4
  562. .IX Item "-L searchdir"
  563. .PD 0
  564. .IP "\fB\-\-library\-path=\fR\fIsearchdir\fR" 4
  565. .IX Item "--library-path=searchdir"
  566. .PD
  567. Add path \fIsearchdir\fR to the list of paths that \fBld\fR will search
  568. for archive libraries and \fBld\fR control scripts. You may use this
  569. option any number of times. The directories are searched in the order
  570. in which they are specified on the command line. Directories specified
  571. on the command line are searched before the default directories. All
  572. \&\fB\-L\fR options apply to all \fB\-l\fR options, regardless of the
  573. order in which the options appear. \fB\-L\fR options do not affect
  574. how \fBld\fR searches for a linker script unless \fB\-T\fR
  575. option is specified.
  576. .Sp
  577. If \fIsearchdir\fR begins with \f(CW\*(C`=\*(C'\fR or \f(CW$SYSROOT\fR, then this
  578. prefix will be replaced by the \fIsysroot prefix\fR, controlled by the
  579. \&\fB\-\-sysroot\fR option, or specified when the linker is configured.
  580. .Sp
  581. The default set of paths searched (without being specified with
  582. \&\fB\-L\fR) depends on which emulation mode \fBld\fR is using, and in
  583. some cases also on how it was configured.
  584. .Sp
  585. The paths can also be specified in a link script with the
  586. \&\f(CW\*(C`SEARCH_DIR\*(C'\fR command. Directories specified this way are searched
  587. at the point in which the linker script appears in the command line.
  588. .IP "\fB\-m\fR \fIemulation\fR" 4
  589. .IX Item "-m emulation"
  590. Emulate the \fIemulation\fR linker. You can list the available
  591. emulations with the \fB\-\-verbose\fR or \fB\-V\fR options.
  592. .Sp
  593. If the \fB\-m\fR option is not used, the emulation is taken from the
  594. \&\f(CW\*(C`LDEMULATION\*(C'\fR environment variable, if that is defined.
  595. .Sp
  596. Otherwise, the default emulation depends upon how the linker was
  597. configured.
  598. .IP "\fB\-M\fR" 4
  599. .IX Item "-M"
  600. .PD 0
  601. .IP "\fB\-\-print\-map\fR" 4
  602. .IX Item "--print-map"
  603. .PD
  604. Print a link map to the standard output. A link map provides
  605. information about the link, including the following:
  606. .RS 4
  607. .IP "\(bu" 4
  608. Where object files are mapped into memory.
  609. .IP "\(bu" 4
  610. How common symbols are allocated.
  611. .IP "\(bu" 4
  612. All archive members included in the link, with a mention of the symbol
  613. which caused the archive member to be brought in.
  614. .IP "\(bu" 4
  615. The values assigned to symbols.
  616. .Sp
  617. Note \- symbols whose values are computed by an expression which
  618. involves a reference to a previous value of the same symbol may not
  619. have correct result displayed in the link map. This is because the
  620. linker discards intermediate results and only retains the final value
  621. of an expression. Under such circumstances the linker will display
  622. the final value enclosed by square brackets. Thus for example a
  623. linker script containing:
  624. .Sp
  625. .Vb 3
  626. \& foo = 1
  627. \& foo = foo * 4
  628. \& foo = foo + 8
  629. .Ve
  630. .Sp
  631. will produce the following output in the link map if the \fB\-M\fR
  632. option is used:
  633. .Sp
  634. .Vb 3
  635. \& 0x00000001 foo = 0x1
  636. \& [0x0000000c] foo = (foo * 0x4)
  637. \& [0x0000000c] foo = (foo + 0x8)
  638. .Ve
  639. .Sp
  640. See \fBExpressions\fR for more information about expressions in linker
  641. scripts.
  642. .IP "\(bu" 4
  643. How \s-1GNU\s0 properties are merged.
  644. .Sp
  645. When the linker merges input .note.gnu.property sections into one output
  646. \&.note.gnu.property section, some properties are removed or updated.
  647. These actions are reported in the link map. For example:
  648. .Sp
  649. .Vb 1
  650. \& Removed property 0xc0000002 to merge foo.o (0x1) and bar.o (not found)
  651. .Ve
  652. .Sp
  653. This indicates that property 0xc0000002 is removed from output when
  654. merging properties in \fIfoo.o\fR, whose property 0xc0000002 value
  655. is 0x1, and \fIbar.o\fR, which doesn't have property 0xc0000002.
  656. .Sp
  657. .Vb 1
  658. \& Updated property 0xc0010001 (0x1) to merge foo.o (0x1) and bar.o (0x1)
  659. .Ve
  660. .Sp
  661. This indicates that property 0xc0010001 value is updated to 0x1 in output
  662. when merging properties in \fIfoo.o\fR, whose 0xc0010001 property value
  663. is 0x1, and \fIbar.o\fR, whose 0xc0010001 property value is 0x1.
  664. .RE
  665. .RS 4
  666. .RE
  667. .IP "\fB\-\-print\-map\-discarded\fR" 4
  668. .IX Item "--print-map-discarded"
  669. .PD 0
  670. .IP "\fB\-\-no\-print\-map\-discarded\fR" 4
  671. .IX Item "--no-print-map-discarded"
  672. .PD
  673. Print (or do not print) the list of discarded and garbage collected sections
  674. in the link map. Enabled by default.
  675. .IP "\fB\-n\fR" 4
  676. .IX Item "-n"
  677. .PD 0
  678. .IP "\fB\-\-nmagic\fR" 4
  679. .IX Item "--nmagic"
  680. .PD
  681. Turn off page alignment of sections, and disable linking against shared
  682. libraries. If the output format supports Unix style magic numbers,
  683. mark the output as \f(CW\*(C`NMAGIC\*(C'\fR.
  684. .IP "\fB\-N\fR" 4
  685. .IX Item "-N"
  686. .PD 0
  687. .IP "\fB\-\-omagic\fR" 4
  688. .IX Item "--omagic"
  689. .PD
  690. Set the text and data sections to be readable and writable. Also, do
  691. not page-align the data segment, and disable linking against shared
  692. libraries. If the output format supports Unix style magic numbers,
  693. mark the output as \f(CW\*(C`OMAGIC\*(C'\fR. Note: Although a writable text section
  694. is allowed for PE-COFF targets, it does not conform to the format
  695. specification published by Microsoft.
  696. .IP "\fB\-\-no\-omagic\fR" 4
  697. .IX Item "--no-omagic"
  698. This option negates most of the effects of the \fB\-N\fR option. It
  699. sets the text section to be read-only, and forces the data segment to
  700. be page-aligned. Note \- this option does not enable linking against
  701. shared libraries. Use \fB\-Bdynamic\fR for this.
  702. .IP "\fB\-o\fR \fIoutput\fR" 4
  703. .IX Item "-o output"
  704. .PD 0
  705. .IP "\fB\-\-output=\fR\fIoutput\fR" 4
  706. .IX Item "--output=output"
  707. .PD
  708. Use \fIoutput\fR as the name for the program produced by \fBld\fR; if this
  709. option is not specified, the name \fIa.out\fR is used by default. The
  710. script command \f(CW\*(C`OUTPUT\*(C'\fR can also specify the output file name.
  711. .IP "\fB\-O\fR \fIlevel\fR" 4
  712. .IX Item "-O level"
  713. If \fIlevel\fR is a numeric values greater than zero \fBld\fR optimizes
  714. the output. This might take significantly longer and therefore probably
  715. should only be enabled for the final binary. At the moment this
  716. option only affects \s-1ELF\s0 shared library generation. Future releases of
  717. the linker may make more use of this option. Also currently there is
  718. no difference in the linker's behaviour for different non-zero values
  719. of this option. Again this may change with future releases.
  720. .IP "\fB\-plugin\fR \fIname\fR" 4
  721. .IX Item "-plugin name"
  722. Involve a plugin in the linking process. The \fIname\fR parameter is
  723. the absolute filename of the plugin. Usually this parameter is
  724. automatically added by the complier, when using link time
  725. optimization, but users can also add their own plugins if they so
  726. wish.
  727. .Sp
  728. Note that the location of the compiler originated plugins is different
  729. from the place where the \fBar\fR, \fBnm\fR and
  730. \&\fBranlib\fR programs search for their plugins. In order for
  731. those commands to make use of a compiler based plugin it must first be
  732. copied into the \fI${libdir}/bfd\-plugins\fR directory. All gcc
  733. based linker plugins are backward compatible, so it is sufficient to
  734. just copy in the newest one.
  735. .IP "\fB\-\-push\-state\fR" 4
  736. .IX Item "--push-state"
  737. The \fB\-\-push\-state\fR allows to preserve the current state of the
  738. flags which govern the input file handling so that they can all be
  739. restored with one corresponding \fB\-\-pop\-state\fR option.
  740. .Sp
  741. The option which are covered are: \fB\-Bdynamic\fR, \fB\-Bstatic\fR,
  742. \&\fB\-dn\fR, \fB\-dy\fR, \fB\-call_shared\fR, \fB\-non_shared\fR,
  743. \&\fB\-static\fR, \fB\-N\fR, \fB\-n\fR, \fB\-\-whole\-archive\fR,
  744. \&\fB\-\-no\-whole\-archive\fR, \fB\-r\fR, \fB\-Ur\fR,
  745. \&\fB\-\-copy\-dt\-needed\-entries\fR, \fB\-\-no\-copy\-dt\-needed\-entries\fR,
  746. \&\fB\-\-as\-needed\fR, \fB\-\-no\-as\-needed\fR, and \fB\-a\fR.
  747. .Sp
  748. One target for this option are specifications for \fIpkg-config\fR. When
  749. used with the \fB\-\-libs\fR option all possibly needed libraries are
  750. listed and then possibly linked with all the time. It is better to return
  751. something as follows:
  752. .Sp
  753. .Vb 1
  754. \& \-Wl,\-\-push\-state,\-\-as\-needed \-libone \-libtwo \-Wl,\-\-pop\-state
  755. .Ve
  756. .IP "\fB\-\-pop\-state\fR" 4
  757. .IX Item "--pop-state"
  758. Undoes the effect of \-\-push\-state, restores the previous values of the
  759. flags governing input file handling.
  760. .IP "\fB\-q\fR" 4
  761. .IX Item "-q"
  762. .PD 0
  763. .IP "\fB\-\-emit\-relocs\fR" 4
  764. .IX Item "--emit-relocs"
  765. .PD
  766. Leave relocation sections and contents in fully linked executables.
  767. Post link analysis and optimization tools may need this information in
  768. order to perform correct modifications of executables. This results
  769. in larger executables.
  770. .Sp
  771. This option is currently only supported on \s-1ELF\s0 platforms.
  772. .IP "\fB\-\-force\-dynamic\fR" 4
  773. .IX Item "--force-dynamic"
  774. Force the output file to have dynamic sections. This option is specific
  775. to VxWorks targets.
  776. .IP "\fB\-r\fR" 4
  777. .IX Item "-r"
  778. .PD 0
  779. .IP "\fB\-\-relocatable\fR" 4
  780. .IX Item "--relocatable"
  781. .PD
  782. Generate relocatable output\-\-\-i.e., generate an output file that can in
  783. turn serve as input to \fBld\fR. This is often called \fIpartial
  784. linking\fR. As a side effect, in environments that support standard Unix
  785. magic numbers, this option also sets the output file's magic number to
  786. \&\f(CW\*(C`OMAGIC\*(C'\fR.
  787. If this option is not specified, an absolute file is produced. When
  788. linking \*(C+ programs, this option \fIwill not\fR resolve references to
  789. constructors; to do that, use \fB\-Ur\fR.
  790. .Sp
  791. When an input file does not have the same format as the output file,
  792. partial linking is only supported if that input file does not contain any
  793. relocations. Different output formats can have further restrictions; for
  794. example some \f(CW\*(C`a.out\*(C'\fR\-based formats do not support partial linking
  795. with input files in other formats at all.
  796. .Sp
  797. This option does the same thing as \fB\-i\fR.
  798. .IP "\fB\-R\fR \fIfilename\fR" 4
  799. .IX Item "-R filename"
  800. .PD 0
  801. .IP "\fB\-\-just\-symbols=\fR\fIfilename\fR" 4
  802. .IX Item "--just-symbols=filename"
  803. .PD
  804. Read symbol names and their addresses from \fIfilename\fR, but do not
  805. relocate it or include it in the output. This allows your output file
  806. to refer symbolically to absolute locations of memory defined in other
  807. programs. You may use this option more than once.
  808. .Sp
  809. For compatibility with other \s-1ELF\s0 linkers, if the \fB\-R\fR option is
  810. followed by a directory name, rather than a file name, it is treated as
  811. the \fB\-rpath\fR option.
  812. .IP "\fB\-s\fR" 4
  813. .IX Item "-s"
  814. .PD 0
  815. .IP "\fB\-\-strip\-all\fR" 4
  816. .IX Item "--strip-all"
  817. .PD
  818. Omit all symbol information from the output file.
  819. .IP "\fB\-S\fR" 4
  820. .IX Item "-S"
  821. .PD 0
  822. .IP "\fB\-\-strip\-debug\fR" 4
  823. .IX Item "--strip-debug"
  824. .PD
  825. Omit debugger symbol information (but not all symbols) from the output file.
  826. .IP "\fB\-\-strip\-discarded\fR" 4
  827. .IX Item "--strip-discarded"
  828. .PD 0
  829. .IP "\fB\-\-no\-strip\-discarded\fR" 4
  830. .IX Item "--no-strip-discarded"
  831. .PD
  832. Omit (or do not omit) global symbols defined in discarded sections.
  833. Enabled by default.
  834. .IP "\fB\-t\fR" 4
  835. .IX Item "-t"
  836. .PD 0
  837. .IP "\fB\-\-trace\fR" 4
  838. .IX Item "--trace"
  839. .PD
  840. Print the names of the input files as \fBld\fR processes them. If
  841. \&\fB\-t\fR is given twice then members within archives are also printed.
  842. \&\fB\-t\fR output is useful to generate a list of all the object files
  843. and scripts involved in linking, for example, when packaging files for
  844. a linker bug report.
  845. .IP "\fB\-T\fR \fIscriptfile\fR" 4
  846. .IX Item "-T scriptfile"
  847. .PD 0
  848. .IP "\fB\-\-script=\fR\fIscriptfile\fR" 4
  849. .IX Item "--script=scriptfile"
  850. .PD
  851. Use \fIscriptfile\fR as the linker script. This script replaces
  852. \&\fBld\fR's default linker script (rather than adding to it), so
  853. \&\fIcommandfile\fR must specify everything necessary to describe the
  854. output file. If \fIscriptfile\fR does not exist in
  855. the current directory, \f(CW\*(C`ld\*(C'\fR looks for it in the directories
  856. specified by any preceding \fB\-L\fR options. Multiple \fB\-T\fR
  857. options accumulate.
  858. .IP "\fB\-dT\fR \fIscriptfile\fR" 4
  859. .IX Item "-dT scriptfile"
  860. .PD 0
  861. .IP "\fB\-\-default\-script=\fR\fIscriptfile\fR" 4
  862. .IX Item "--default-script=scriptfile"
  863. .PD
  864. Use \fIscriptfile\fR as the default linker script.
  865. .Sp
  866. This option is similar to the \fB\-\-script\fR option except that
  867. processing of the script is delayed until after the rest of the
  868. command line has been processed. This allows options placed after the
  869. \&\fB\-\-default\-script\fR option on the command line to affect the
  870. behaviour of the linker script, which can be important when the linker
  871. command line cannot be directly controlled by the user. (eg because
  872. the command line is being constructed by another tool, such as
  873. \&\fBgcc\fR).
  874. .IP "\fB\-u\fR \fIsymbol\fR" 4
  875. .IX Item "-u symbol"
  876. .PD 0
  877. .IP "\fB\-\-undefined=\fR\fIsymbol\fR" 4
  878. .IX Item "--undefined=symbol"
  879. .PD
  880. Force \fIsymbol\fR to be entered in the output file as an undefined
  881. symbol. Doing this may, for example, trigger linking of additional
  882. modules from standard libraries. \fB\-u\fR may be repeated with
  883. different option arguments to enter additional undefined symbols. This
  884. option is equivalent to the \f(CW\*(C`EXTERN\*(C'\fR linker script command.
  885. .Sp
  886. If this option is being used to force additional modules to be pulled
  887. into the link, and if it is an error for the symbol to remain
  888. undefined, then the option \fB\-\-require\-defined\fR should be used
  889. instead.
  890. .IP "\fB\-\-require\-defined=\fR\fIsymbol\fR" 4
  891. .IX Item "--require-defined=symbol"
  892. Require that \fIsymbol\fR is defined in the output file. This option
  893. is the same as option \fB\-\-undefined\fR except that if \fIsymbol\fR
  894. is not defined in the output file then the linker will issue an error
  895. and exit. The same effect can be achieved in a linker script by using
  896. \&\f(CW\*(C`EXTERN\*(C'\fR, \f(CW\*(C`ASSERT\*(C'\fR and \f(CW\*(C`DEFINED\*(C'\fR together. This option
  897. can be used multiple times to require additional symbols.
  898. .IP "\fB\-Ur\fR" 4
  899. .IX Item "-Ur"
  900. For anything other than \*(C+ programs, this option is equivalent to
  901. \&\fB\-r\fR: it generates relocatable output\-\-\-i.e., an output file that can in
  902. turn serve as input to \fBld\fR. When linking \*(C+ programs, \fB\-Ur\fR
  903. \&\fIdoes\fR resolve references to constructors, unlike \fB\-r\fR.
  904. It does not work to use \fB\-Ur\fR on files that were themselves linked
  905. with \fB\-Ur\fR; once the constructor table has been built, it cannot
  906. be added to. Use \fB\-Ur\fR only for the last partial link, and
  907. \&\fB\-r\fR for the others.
  908. .IP "\fB\-\-orphan\-handling=\fR\fI\s-1MODE\s0\fR" 4
  909. .IX Item "--orphan-handling=MODE"
  910. Control how orphan sections are handled. An orphan section is one not
  911. specifically mentioned in a linker script.
  912. .Sp
  913. \&\fI\s-1MODE\s0\fR can have any of the following values:
  914. .RS 4
  915. .ie n .IP """place""" 4
  916. .el .IP "\f(CWplace\fR" 4
  917. .IX Item "place"
  918. Orphan sections are placed into a suitable output section following
  919. the strategy described in \fBOrphan Sections\fR. The option
  920. \&\fB\-\-unique\fR also affects how sections are placed.
  921. .ie n .IP """discard""" 4
  922. .el .IP "\f(CWdiscard\fR" 4
  923. .IX Item "discard"
  924. All orphan sections are discarded, by placing them in the
  925. \&\fB/DISCARD/\fR section.
  926. .ie n .IP """warn""" 4
  927. .el .IP "\f(CWwarn\fR" 4
  928. .IX Item "warn"
  929. The linker will place the orphan section as for \f(CW\*(C`place\*(C'\fR and also
  930. issue a warning.
  931. .ie n .IP """error""" 4
  932. .el .IP "\f(CWerror\fR" 4
  933. .IX Item "error"
  934. The linker will exit with an error if any orphan section is found.
  935. .RE
  936. .RS 4
  937. .Sp
  938. The default if \fB\-\-orphan\-handling\fR is not given is \f(CW\*(C`place\*(C'\fR.
  939. .RE
  940. .IP "\fB\-\-unique[=\fR\fI\s-1SECTION\s0\fR\fB]\fR" 4
  941. .IX Item "--unique[=SECTION]"
  942. Creates a separate output section for every input section matching
  943. \&\fI\s-1SECTION\s0\fR, or if the optional wildcard \fI\s-1SECTION\s0\fR argument is
  944. missing, for every orphan input section. An orphan section is one not
  945. specifically mentioned in a linker script. You may use this option
  946. multiple times on the command line; It prevents the normal merging of
  947. input sections with the same name, overriding output section assignments
  948. in a linker script.
  949. .IP "\fB\-v\fR" 4
  950. .IX Item "-v"
  951. .PD 0
  952. .IP "\fB\-\-version\fR" 4
  953. .IX Item "--version"
  954. .IP "\fB\-V\fR" 4
  955. .IX Item "-V"
  956. .PD
  957. Display the version number for \fBld\fR. The \fB\-V\fR option also
  958. lists the supported emulations.
  959. .IP "\fB\-x\fR" 4
  960. .IX Item "-x"
  961. .PD 0
  962. .IP "\fB\-\-discard\-all\fR" 4
  963. .IX Item "--discard-all"
  964. .PD
  965. Delete all local symbols.
  966. .IP "\fB\-X\fR" 4
  967. .IX Item "-X"
  968. .PD 0
  969. .IP "\fB\-\-discard\-locals\fR" 4
  970. .IX Item "--discard-locals"
  971. .PD
  972. Delete all temporary local symbols. (These symbols start with
  973. system-specific local label prefixes, typically \fB.L\fR for \s-1ELF\s0 systems
  974. or \fBL\fR for traditional a.out systems.)
  975. .IP "\fB\-y\fR \fIsymbol\fR" 4
  976. .IX Item "-y symbol"
  977. .PD 0
  978. .IP "\fB\-\-trace\-symbol=\fR\fIsymbol\fR" 4
  979. .IX Item "--trace-symbol=symbol"
  980. .PD
  981. Print the name of each linked file in which \fIsymbol\fR appears. This
  982. option may be given any number of times. On many systems it is necessary
  983. to prepend an underscore.
  984. .Sp
  985. This option is useful when you have an undefined symbol in your link but
  986. don't know where the reference is coming from.
  987. .IP "\fB\-Y\fR \fIpath\fR" 4
  988. .IX Item "-Y path"
  989. Add \fIpath\fR to the default library search path. This option exists
  990. for Solaris compatibility.
  991. .IP "\fB\-z\fR \fIkeyword\fR" 4
  992. .IX Item "-z keyword"
  993. The recognized keywords are:
  994. .RS 4
  995. .IP "\fBbndplt\fR" 4
  996. .IX Item "bndplt"
  997. Always generate \s-1BND\s0 prefix in \s-1PLT\s0 entries. Supported for Linux/x86_64.
  998. .IP "\fBcall\-nop=prefix\-addr\fR" 4
  999. .IX Item "call-nop=prefix-addr"
  1000. .PD 0
  1001. .IP "\fBcall\-nop=suffix\-nop\fR" 4
  1002. .IX Item "call-nop=suffix-nop"
  1003. .IP "\fBcall\-nop=prefix\-\fR\fIbyte\fR" 4
  1004. .IX Item "call-nop=prefix-byte"
  1005. .IP "\fBcall\-nop=suffix\-\fR\fIbyte\fR" 4
  1006. .IX Item "call-nop=suffix-byte"
  1007. .PD
  1008. Specify the 1\-byte \f(CW\*(C`NOP\*(C'\fR padding when transforming indirect call
  1009. to a locally defined function, foo, via its \s-1GOT\s0 slot.
  1010. \&\fBcall\-nop=prefix\-addr\fR generates \f(CW\*(C`0x67 call foo\*(C'\fR.
  1011. \&\fBcall\-nop=suffix\-nop\fR generates \f(CW\*(C`call foo 0x90\*(C'\fR.
  1012. \&\fBcall\-nop=prefix\-\fR\fIbyte\fR generates \f(CW\*(C`\f(CIbyte\f(CW call foo\*(C'\fR.
  1013. \&\fBcall\-nop=suffix\-\fR\fIbyte\fR generates \f(CW\*(C`call foo \f(CIbyte\f(CW\*(C'\fR.
  1014. Supported for i386 and x86_64.
  1015. .IP "\fBcet\-report=none\fR" 4
  1016. .IX Item "cet-report=none"
  1017. .PD 0
  1018. .IP "\fBcet\-report=warning\fR" 4
  1019. .IX Item "cet-report=warning"
  1020. .IP "\fBcet\-report=error\fR" 4
  1021. .IX Item "cet-report=error"
  1022. .PD
  1023. Specify how to report the missing \s-1GNU_PROPERTY_X86_FEATURE_1_IBT\s0 and
  1024. \&\s-1GNU_PROPERTY_X86_FEATURE_1_SHSTK\s0 properties in input .note.gnu.property
  1025. section. \fBcet\-report=none\fR, which is the default, will make the
  1026. linker not report missing properties in input files.
  1027. \&\fBcet\-report=warning\fR will make the linker issue a warning for
  1028. missing properties in input files. \fBcet\-report=error\fR will make
  1029. the linker issue an error for missing properties in input files.
  1030. Note that \fBibt\fR will turn off the missing
  1031. \&\s-1GNU_PROPERTY_X86_FEATURE_1_IBT\s0 property report and \fBshstk\fR will
  1032. turn off the missing \s-1GNU_PROPERTY_X86_FEATURE_1_SHSTK\s0 property report.
  1033. Supported for Linux/i386 and Linux/x86_64.
  1034. .IP "\fBcombreloc\fR" 4
  1035. .IX Item "combreloc"
  1036. .PD 0
  1037. .IP "\fBnocombreloc\fR" 4
  1038. .IX Item "nocombreloc"
  1039. .PD
  1040. Combine multiple dynamic relocation sections and sort to improve
  1041. dynamic symbol lookup caching. Do not do this if \fBnocombreloc\fR.
  1042. .IP "\fBcommon\fR" 4
  1043. .IX Item "common"
  1044. .PD 0
  1045. .IP "\fBnocommon\fR" 4
  1046. .IX Item "nocommon"
  1047. .PD
  1048. Generate common symbols with \s-1STT_COMMON\s0 type during a relocatable
  1049. link. Use \s-1STT_OBJECT\s0 type if \fBnocommon\fR.
  1050. .IP "\fBcommon\-page\-size=\fR\fIvalue\fR" 4
  1051. .IX Item "common-page-size=value"
  1052. Set the page size most commonly used to \fIvalue\fR. Memory image
  1053. layout will be optimized to minimize memory pages if the system is
  1054. using pages of this size.
  1055. .IP "\fBdefs\fR" 4
  1056. .IX Item "defs"
  1057. Report unresolved symbol references from regular object files. This
  1058. is done even if the linker is creating a non-symbolic shared library.
  1059. This option is the inverse of \fB\-z undefs\fR.
  1060. .IP "\fBdynamic-undefined-weak\fR" 4
  1061. .IX Item "dynamic-undefined-weak"
  1062. .PD 0
  1063. .IP "\fBnodynamic-undefined-weak\fR" 4
  1064. .IX Item "nodynamic-undefined-weak"
  1065. .PD
  1066. Make undefined weak symbols dynamic when building a dynamic object,
  1067. if they are referenced from a regular object file and not forced local
  1068. by symbol visibility or versioning. Do not make them dynamic if
  1069. \&\fBnodynamic-undefined-weak\fR. If neither option is given, a target
  1070. may default to either option being in force, or make some other
  1071. selection of undefined weak symbols dynamic. Not all targets support
  1072. these options.
  1073. .IP "\fBexecstack\fR" 4
  1074. .IX Item "execstack"
  1075. Marks the object as requiring executable stack.
  1076. .IP "\fBglobal\fR" 4
  1077. .IX Item "global"
  1078. This option is only meaningful when building a shared object. It makes
  1079. the symbols defined by this shared object available for symbol resolution
  1080. of subsequently loaded libraries.
  1081. .IP "\fBglobalaudit\fR" 4
  1082. .IX Item "globalaudit"
  1083. This option is only meaningful when building a dynamic executable.
  1084. This option marks the executable as requiring global auditing by
  1085. setting the \f(CW\*(C`DF_1_GLOBAUDIT\*(C'\fR bit in the \f(CW\*(C`DT_FLAGS_1\*(C'\fR dynamic
  1086. tag. Global auditing requires that any auditing library defined via
  1087. the \fB\-\-depaudit\fR or \fB\-P\fR command-line options be run for
  1088. all dynamic objects loaded by the application.
  1089. .IP "\fBibtplt\fR" 4
  1090. .IX Item "ibtplt"
  1091. Generate Intel Indirect Branch Tracking (\s-1IBT\s0) enabled \s-1PLT\s0 entries.
  1092. Supported for Linux/i386 and Linux/x86_64.
  1093. .IP "\fBibt\fR" 4
  1094. .IX Item "ibt"
  1095. Generate \s-1GNU_PROPERTY_X86_FEATURE_1_IBT\s0 in .note.gnu.property section
  1096. to indicate compatibility with \s-1IBT.\s0 This also implies \fBibtplt\fR.
  1097. Supported for Linux/i386 and Linux/x86_64.
  1098. .IP "\fBinitfirst\fR" 4
  1099. .IX Item "initfirst"
  1100. This option is only meaningful when building a shared object.
  1101. It marks the object so that its runtime initialization will occur
  1102. before the runtime initialization of any other objects brought into
  1103. the process at the same time. Similarly the runtime finalization of
  1104. the object will occur after the runtime finalization of any other
  1105. objects.
  1106. .IP "\fBinterpose\fR" 4
  1107. .IX Item "interpose"
  1108. Specify that the dynamic loader should modify its symbol search order
  1109. so that symbols in this shared library interpose all other shared
  1110. libraries not so marked.
  1111. .IP "\fBlazy\fR" 4
  1112. .IX Item "lazy"
  1113. When generating an executable or shared library, mark it to tell the
  1114. dynamic linker to defer function call resolution to the point when
  1115. the function is called (lazy binding), rather than at load time.
  1116. Lazy binding is the default.
  1117. .IP "\fBloadfltr\fR" 4
  1118. .IX Item "loadfltr"
  1119. Specify that the object's filters be processed immediately at runtime.
  1120. .IP "\fBmax\-page\-size=\fR\fIvalue\fR" 4
  1121. .IX Item "max-page-size=value"
  1122. Set the maximum memory page size supported to \fIvalue\fR.
  1123. .IP "\fBmuldefs\fR" 4
  1124. .IX Item "muldefs"
  1125. Allow multiple definitions.
  1126. .IP "\fBnocopyreloc\fR" 4
  1127. .IX Item "nocopyreloc"
  1128. Disable linker generated .dynbss variables used in place of variables
  1129. defined in shared libraries. May result in dynamic text relocations.
  1130. .IP "\fBnodefaultlib\fR" 4
  1131. .IX Item "nodefaultlib"
  1132. Specify that the dynamic loader search for dependencies of this object
  1133. should ignore any default library search paths.
  1134. .IP "\fBnodelete\fR" 4
  1135. .IX Item "nodelete"
  1136. Specify that the object shouldn't be unloaded at runtime.
  1137. .IP "\fBnodlopen\fR" 4
  1138. .IX Item "nodlopen"
  1139. Specify that the object is not available to \f(CW\*(C`dlopen\*(C'\fR.
  1140. .IP "\fBnodump\fR" 4
  1141. .IX Item "nodump"
  1142. Specify that the object can not be dumped by \f(CW\*(C`dldump\*(C'\fR.
  1143. .IP "\fBnoexecstack\fR" 4
  1144. .IX Item "noexecstack"
  1145. Marks the object as not requiring executable stack.
  1146. .IP "\fBnoextern-protected-data\fR" 4
  1147. .IX Item "noextern-protected-data"
  1148. Don't treat protected data symbols as external when building a shared
  1149. library. This option overrides the linker backend default. It can be
  1150. used to work around incorrect relocations against protected data symbols
  1151. generated by compiler. Updates on protected data symbols by another
  1152. module aren't visible to the resulting shared library. Supported for
  1153. i386 and x86\-64.
  1154. .IP "\fBnoreloc-overflow\fR" 4
  1155. .IX Item "noreloc-overflow"
  1156. Disable relocation overflow check. This can be used to disable
  1157. relocation overflow check if there will be no dynamic relocation
  1158. overflow at run-time. Supported for x86_64.
  1159. .IP "\fBnow\fR" 4
  1160. .IX Item "now"
  1161. When generating an executable or shared library, mark it to tell the
  1162. dynamic linker to resolve all symbols when the program is started, or
  1163. when the shared library is loaded by dlopen, instead of deferring
  1164. function call resolution to the point when the function is first
  1165. called.
  1166. .IP "\fBorigin\fR" 4
  1167. .IX Item "origin"
  1168. Specify that the object requires \fB\f(CB$ORIGIN\fB\fR handling in paths.
  1169. .IP "\fBrelro\fR" 4
  1170. .IX Item "relro"
  1171. .PD 0
  1172. .IP "\fBnorelro\fR" 4
  1173. .IX Item "norelro"
  1174. .PD
  1175. Create an \s-1ELF\s0 \f(CW\*(C`PT_GNU_RELRO\*(C'\fR segment header in the object. This
  1176. specifies a memory segment that should be made read-only after
  1177. relocation, if supported. Specifying \fBcommon-page-size\fR smaller
  1178. than the system page size will render this protection ineffective.
  1179. Don't create an \s-1ELF\s0 \f(CW\*(C`PT_GNU_RELRO\*(C'\fR segment if \fBnorelro\fR.
  1180. .IP "\fBseparate-code\fR" 4
  1181. .IX Item "separate-code"
  1182. .PD 0
  1183. .IP "\fBnoseparate-code\fR" 4
  1184. .IX Item "noseparate-code"
  1185. .PD
  1186. Create separate code \f(CW\*(C`PT_LOAD\*(C'\fR segment header in the object. This
  1187. specifies a memory segment that should contain only instructions and must
  1188. be in wholly disjoint pages from any other data. Don't create separate
  1189. code \f(CW\*(C`PT_LOAD\*(C'\fR segment if \fBnoseparate-code\fR is used.
  1190. .IP "\fBshstk\fR" 4
  1191. .IX Item "shstk"
  1192. Generate \s-1GNU_PROPERTY_X86_FEATURE_1_SHSTK\s0 in .note.gnu.property section
  1193. to indicate compatibility with Intel Shadow Stack. Supported for
  1194. Linux/i386 and Linux/x86_64.
  1195. .IP "\fBstack\-size=\fR\fIvalue\fR" 4
  1196. .IX Item "stack-size=value"
  1197. Specify a stack size for an \s-1ELF\s0 \f(CW\*(C`PT_GNU_STACK\*(C'\fR segment.
  1198. Specifying zero will override any default non-zero sized
  1199. \&\f(CW\*(C`PT_GNU_STACK\*(C'\fR segment creation.
  1200. .IP "\fBtext\fR" 4
  1201. .IX Item "text"
  1202. .PD 0
  1203. .IP "\fBnotext\fR" 4
  1204. .IX Item "notext"
  1205. .IP "\fBtextoff\fR" 4
  1206. .IX Item "textoff"
  1207. .PD
  1208. Report an error if \s-1DT_TEXTREL\s0 is set, i.e., if the binary has dynamic
  1209. relocations in read-only sections. Don't report an error if
  1210. \&\fBnotext\fR or \fBtextoff\fR.
  1211. .IP "\fBundefs\fR" 4
  1212. .IX Item "undefs"
  1213. Do not report unresolved symbol references from regular object files,
  1214. either when creating an executable, or when creating a shared library.
  1215. This option is the inverse of \fB\-z defs\fR.
  1216. .RE
  1217. .RS 4
  1218. .Sp
  1219. Other keywords are ignored for Solaris compatibility.
  1220. .RE
  1221. .IP "\fB\-(\fR \fIarchives\fR \fB\-)\fR" 4
  1222. .IX Item "-( archives -)"
  1223. .PD 0
  1224. .IP "\fB\-\-start\-group\fR \fIarchives\fR \fB\-\-end\-group\fR" 4
  1225. .IX Item "--start-group archives --end-group"
  1226. .PD
  1227. The \fIarchives\fR should be a list of archive files. They may be
  1228. either explicit file names, or \fB\-l\fR options.
  1229. .Sp
  1230. The specified archives are searched repeatedly until no new undefined
  1231. references are created. Normally, an archive is searched only once in
  1232. the order that it is specified on the command line. If a symbol in that
  1233. archive is needed to resolve an undefined symbol referred to by an
  1234. object in an archive that appears later on the command line, the linker
  1235. would not be able to resolve that reference. By grouping the archives,
  1236. they will all be searched repeatedly until all possible references are
  1237. resolved.
  1238. .Sp
  1239. Using this option has a significant performance cost. It is best to use
  1240. it only when there are unavoidable circular references between two or
  1241. more archives.
  1242. .IP "\fB\-\-accept\-unknown\-input\-arch\fR" 4
  1243. .IX Item "--accept-unknown-input-arch"
  1244. .PD 0
  1245. .IP "\fB\-\-no\-accept\-unknown\-input\-arch\fR" 4
  1246. .IX Item "--no-accept-unknown-input-arch"
  1247. .PD
  1248. Tells the linker to accept input files whose architecture cannot be
  1249. recognised. The assumption is that the user knows what they are doing
  1250. and deliberately wants to link in these unknown input files. This was
  1251. the default behaviour of the linker, before release 2.14. The default
  1252. behaviour from release 2.14 onwards is to reject such input files, and
  1253. so the \fB\-\-accept\-unknown\-input\-arch\fR option has been added to
  1254. restore the old behaviour.
  1255. .IP "\fB\-\-as\-needed\fR" 4
  1256. .IX Item "--as-needed"
  1257. .PD 0
  1258. .IP "\fB\-\-no\-as\-needed\fR" 4
  1259. .IX Item "--no-as-needed"
  1260. .PD
  1261. This option affects \s-1ELF DT_NEEDED\s0 tags for dynamic libraries mentioned
  1262. on the command line after the \fB\-\-as\-needed\fR option. Normally
  1263. the linker will add a \s-1DT_NEEDED\s0 tag for each dynamic library mentioned
  1264. on the command line, regardless of whether the library is actually
  1265. needed or not. \fB\-\-as\-needed\fR causes a \s-1DT_NEEDED\s0 tag to only be
  1266. emitted for a library that \fIat that point in the link\fR satisfies a
  1267. non-weak undefined symbol reference from a regular object file or, if
  1268. the library is not found in the \s-1DT_NEEDED\s0 lists of other needed libraries, a
  1269. non-weak undefined symbol reference from another needed dynamic library.
  1270. Object files or libraries appearing on the command line \fIafter\fR
  1271. the library in question do not affect whether the library is seen as
  1272. needed. This is similar to the rules for extraction of object files
  1273. from archives. \fB\-\-no\-as\-needed\fR restores the default behaviour.
  1274. .IP "\fB\-\-add\-needed\fR" 4
  1275. .IX Item "--add-needed"
  1276. .PD 0
  1277. .IP "\fB\-\-no\-add\-needed\fR" 4
  1278. .IX Item "--no-add-needed"
  1279. .PD
  1280. These two options have been deprecated because of the similarity of
  1281. their names to the \fB\-\-as\-needed\fR and \fB\-\-no\-as\-needed\fR
  1282. options. They have been replaced by \fB\-\-copy\-dt\-needed\-entries\fR
  1283. and \fB\-\-no\-copy\-dt\-needed\-entries\fR.
  1284. .IP "\fB\-assert\fR \fIkeyword\fR" 4
  1285. .IX Item "-assert keyword"
  1286. This option is ignored for SunOS compatibility.
  1287. .IP "\fB\-Bdynamic\fR" 4
  1288. .IX Item "-Bdynamic"
  1289. .PD 0
  1290. .IP "\fB\-dy\fR" 4
  1291. .IX Item "-dy"
  1292. .IP "\fB\-call_shared\fR" 4
  1293. .IX Item "-call_shared"
  1294. .PD
  1295. Link against dynamic libraries. This is only meaningful on platforms
  1296. for which shared libraries are supported. This option is normally the
  1297. default on such platforms. The different variants of this option are
  1298. for compatibility with various systems. You may use this option
  1299. multiple times on the command line: it affects library searching for
  1300. \&\fB\-l\fR options which follow it.
  1301. .IP "\fB\-Bgroup\fR" 4
  1302. .IX Item "-Bgroup"
  1303. Set the \f(CW\*(C`DF_1_GROUP\*(C'\fR flag in the \f(CW\*(C`DT_FLAGS_1\*(C'\fR entry in the dynamic
  1304. section. This causes the runtime linker to handle lookups in this
  1305. object and its dependencies to be performed only inside the group.
  1306. \&\fB\-\-unresolved\-symbols=report\-all\fR is implied. This option is
  1307. only meaningful on \s-1ELF\s0 platforms which support shared libraries.
  1308. .IP "\fB\-Bstatic\fR" 4
  1309. .IX Item "-Bstatic"
  1310. .PD 0
  1311. .IP "\fB\-dn\fR" 4
  1312. .IX Item "-dn"
  1313. .IP "\fB\-non_shared\fR" 4
  1314. .IX Item "-non_shared"
  1315. .IP "\fB\-static\fR" 4
  1316. .IX Item "-static"
  1317. .PD
  1318. Do not link against shared libraries. This is only meaningful on
  1319. platforms for which shared libraries are supported. The different
  1320. variants of this option are for compatibility with various systems. You
  1321. may use this option multiple times on the command line: it affects
  1322. library searching for \fB\-l\fR options which follow it. This
  1323. option also implies \fB\-\-unresolved\-symbols=report\-all\fR. This
  1324. option can be used with \fB\-shared\fR. Doing so means that a
  1325. shared library is being created but that all of the library's external
  1326. references must be resolved by pulling in entries from static
  1327. libraries.
  1328. .IP "\fB\-Bsymbolic\fR" 4
  1329. .IX Item "-Bsymbolic"
  1330. When creating a shared library, bind references to global symbols to the
  1331. definition within the shared library, if any. Normally, it is possible
  1332. for a program linked against a shared library to override the definition
  1333. within the shared library. This option is only meaningful on \s-1ELF\s0
  1334. platforms which support shared libraries.
  1335. .IP "\fB\-Bsymbolic\-functions\fR" 4
  1336. .IX Item "-Bsymbolic-functions"
  1337. When creating a shared library, bind references to global function
  1338. symbols to the definition within the shared library, if any.
  1339. This option is only meaningful on \s-1ELF\s0 platforms which support shared
  1340. libraries.
  1341. .IP "\fB\-\-dynamic\-list=\fR\fIdynamic-list-file\fR" 4
  1342. .IX Item "--dynamic-list=dynamic-list-file"
  1343. Specify the name of a dynamic list file to the linker. This is
  1344. typically used when creating shared libraries to specify a list of
  1345. global symbols whose references shouldn't be bound to the definition
  1346. within the shared library, or creating dynamically linked executables
  1347. to specify a list of symbols which should be added to the symbol table
  1348. in the executable. This option is only meaningful on \s-1ELF\s0 platforms
  1349. which support shared libraries.
  1350. .Sp
  1351. The format of the dynamic list is the same as the version node without
  1352. scope and node name. See \fB\s-1VERSION\s0\fR for more information.
  1353. .IP "\fB\-\-dynamic\-list\-data\fR" 4
  1354. .IX Item "--dynamic-list-data"
  1355. Include all global data symbols to the dynamic list.
  1356. .IP "\fB\-\-dynamic\-list\-cpp\-new\fR" 4
  1357. .IX Item "--dynamic-list-cpp-new"
  1358. Provide the builtin dynamic list for \*(C+ operator new and delete. It
  1359. is mainly useful for building shared libstdc++.
  1360. .IP "\fB\-\-dynamic\-list\-cpp\-typeinfo\fR" 4
  1361. .IX Item "--dynamic-list-cpp-typeinfo"
  1362. Provide the builtin dynamic list for \*(C+ runtime type identification.
  1363. .IP "\fB\-\-check\-sections\fR" 4
  1364. .IX Item "--check-sections"
  1365. .PD 0
  1366. .IP "\fB\-\-no\-check\-sections\fR" 4
  1367. .IX Item "--no-check-sections"
  1368. .PD
  1369. Asks the linker \fInot\fR to check section addresses after they have
  1370. been assigned to see if there are any overlaps. Normally the linker will
  1371. perform this check, and if it finds any overlaps it will produce
  1372. suitable error messages. The linker does know about, and does make
  1373. allowances for sections in overlays. The default behaviour can be
  1374. restored by using the command-line switch \fB\-\-check\-sections\fR.
  1375. Section overlap is not usually checked for relocatable links. You can
  1376. force checking in that case by using the \fB\-\-check\-sections\fR
  1377. option.
  1378. .IP "\fB\-\-copy\-dt\-needed\-entries\fR" 4
  1379. .IX Item "--copy-dt-needed-entries"
  1380. .PD 0
  1381. .IP "\fB\-\-no\-copy\-dt\-needed\-entries\fR" 4
  1382. .IX Item "--no-copy-dt-needed-entries"
  1383. .PD
  1384. This option affects the treatment of dynamic libraries referred to
  1385. by \s-1DT_NEEDED\s0 tags \fIinside\fR \s-1ELF\s0 dynamic libraries mentioned on the
  1386. command line. Normally the linker won't add a \s-1DT_NEEDED\s0 tag to the
  1387. output binary for each library mentioned in a \s-1DT_NEEDED\s0 tag in an
  1388. input dynamic library. With \fB\-\-copy\-dt\-needed\-entries\fR
  1389. specified on the command line however any dynamic libraries that
  1390. follow it will have their \s-1DT_NEEDED\s0 entries added. The default
  1391. behaviour can be restored with \fB\-\-no\-copy\-dt\-needed\-entries\fR.
  1392. .Sp
  1393. This option also has an effect on the resolution of symbols in dynamic
  1394. libraries. With \fB\-\-copy\-dt\-needed\-entries\fR dynamic libraries
  1395. mentioned on the command line will be recursively searched, following
  1396. their \s-1DT_NEEDED\s0 tags to other libraries, in order to resolve symbols
  1397. required by the output binary. With the default setting however
  1398. the searching of dynamic libraries that follow it will stop with the
  1399. dynamic library itself. No \s-1DT_NEEDED\s0 links will be traversed to resolve
  1400. symbols.
  1401. .IP "\fB\-\-cref\fR" 4
  1402. .IX Item "--cref"
  1403. Output a cross reference table. If a linker map file is being
  1404. generated, the cross reference table is printed to the map file.
  1405. Otherwise, it is printed on the standard output.
  1406. .Sp
  1407. The format of the table is intentionally simple, so that it may be
  1408. easily processed by a script if necessary. The symbols are printed out,
  1409. sorted by name. For each symbol, a list of file names is given. If the
  1410. symbol is defined, the first file listed is the location of the
  1411. definition. If the symbol is defined as a common value then any files
  1412. where this happens appear next. Finally any files that reference the
  1413. symbol are listed.
  1414. .IP "\fB\-\-no\-define\-common\fR" 4
  1415. .IX Item "--no-define-common"
  1416. This option inhibits the assignment of addresses to common symbols.
  1417. The script command \f(CW\*(C`INHIBIT_COMMON_ALLOCATION\*(C'\fR has the same effect.
  1418. .Sp
  1419. The \fB\-\-no\-define\-common\fR option allows decoupling
  1420. the decision to assign addresses to Common symbols from the choice
  1421. of the output file type; otherwise a non-Relocatable output type
  1422. forces assigning addresses to Common symbols.
  1423. Using \fB\-\-no\-define\-common\fR allows Common symbols that are referenced
  1424. from a shared library to be assigned addresses only in the main program.
  1425. This eliminates the unused duplicate space in the shared library,
  1426. and also prevents any possible confusion over resolving to the wrong
  1427. duplicate when there are many dynamic modules with specialized search
  1428. paths for runtime symbol resolution.
  1429. .IP "\fB\-\-force\-group\-allocation\fR" 4
  1430. .IX Item "--force-group-allocation"
  1431. This option causes the linker to place section group members like
  1432. normal input sections, and to delete the section groups. This is the
  1433. default behaviour for a final link but this option can be used to
  1434. change the behaviour of a relocatable link (\fB\-r\fR). The script
  1435. command \f(CW\*(C`FORCE_GROUP_ALLOCATION\*(C'\fR has the same
  1436. effect.
  1437. .IP "\fB\-\-defsym=\fR\fIsymbol\fR\fB=\fR\fIexpression\fR" 4
  1438. .IX Item "--defsym=symbol=expression"
  1439. Create a global symbol in the output file, containing the absolute
  1440. address given by \fIexpression\fR. You may use this option as many
  1441. times as necessary to define multiple symbols in the command line. A
  1442. limited form of arithmetic is supported for the \fIexpression\fR in this
  1443. context: you may give a hexadecimal constant or the name of an existing
  1444. symbol, or use \f(CW\*(C`+\*(C'\fR and \f(CW\*(C`\-\*(C'\fR to add or subtract hexadecimal
  1445. constants or symbols. If you need more elaborate expressions, consider
  1446. using the linker command language from a script.
  1447. \&\fINote:\fR there should be no white space between \fIsymbol\fR, the
  1448. equals sign ("\fB=\fR"), and \fIexpression\fR.
  1449. .IP "\fB\-\-demangle[=\fR\fIstyle\fR\fB]\fR" 4
  1450. .IX Item "--demangle[=style]"
  1451. .PD 0
  1452. .IP "\fB\-\-no\-demangle\fR" 4
  1453. .IX Item "--no-demangle"
  1454. .PD
  1455. These options control whether to demangle symbol names in error messages
  1456. and other output. When the linker is told to demangle, it tries to
  1457. present symbol names in a readable fashion: it strips leading
  1458. underscores if they are used by the object file format, and converts \*(C+
  1459. mangled symbol names into user readable names. Different compilers have
  1460. different mangling styles. The optional demangling style argument can be used
  1461. to choose an appropriate demangling style for your compiler. The linker will
  1462. demangle by default unless the environment variable \fB\s-1COLLECT_NO_DEMANGLE\s0\fR
  1463. is set. These options may be used to override the default.
  1464. .IP "\fB\-I\fR\fIfile\fR" 4
  1465. .IX Item "-Ifile"
  1466. .PD 0
  1467. .IP "\fB\-\-dynamic\-linker=\fR\fIfile\fR" 4
  1468. .IX Item "--dynamic-linker=file"
  1469. .PD
  1470. Set the name of the dynamic linker. This is only meaningful when
  1471. generating dynamically linked \s-1ELF\s0 executables. The default dynamic
  1472. linker is normally correct; don't use this unless you know what you are
  1473. doing.
  1474. .IP "\fB\-\-no\-dynamic\-linker\fR" 4
  1475. .IX Item "--no-dynamic-linker"
  1476. When producing an executable file, omit the request for a dynamic
  1477. linker to be used at load-time. This is only meaningful for \s-1ELF\s0
  1478. executables that contain dynamic relocations, and usually requires
  1479. entry point code that is capable of processing these relocations.
  1480. .IP "\fB\-\-embedded\-relocs\fR" 4
  1481. .IX Item "--embedded-relocs"
  1482. This option is similar to the \fB\-\-emit\-relocs\fR option except
  1483. that the relocs are stored in a target-specific section. This option
  1484. is only supported by the \fB\s-1BFIN\s0\fR, \fB\s-1CR16\s0\fR and \fIM68K\fR
  1485. targets.
  1486. .IP "\fB\-\-disable\-multiple\-abs\-defs\fR" 4
  1487. .IX Item "--disable-multiple-abs-defs"
  1488. Do not allow multiple definitions with symbols included
  1489. in filename invoked by \-R or \-\-just\-symbols
  1490. .IP "\fB\-\-fatal\-warnings\fR" 4
  1491. .IX Item "--fatal-warnings"
  1492. .PD 0
  1493. .IP "\fB\-\-no\-fatal\-warnings\fR" 4
  1494. .IX Item "--no-fatal-warnings"
  1495. .PD
  1496. Treat all warnings as errors. The default behaviour can be restored
  1497. with the option \fB\-\-no\-fatal\-warnings\fR.
  1498. .IP "\fB\-\-force\-exe\-suffix\fR" 4
  1499. .IX Item "--force-exe-suffix"
  1500. Make sure that an output file has a .exe suffix.
  1501. .Sp
  1502. If a successfully built fully linked output file does not have a
  1503. \&\f(CW\*(C`.exe\*(C'\fR or \f(CW\*(C`.dll\*(C'\fR suffix, this option forces the linker to copy
  1504. the output file to one of the same name with a \f(CW\*(C`.exe\*(C'\fR suffix. This
  1505. option is useful when using unmodified Unix makefiles on a Microsoft
  1506. Windows host, since some versions of Windows won't run an image unless
  1507. it ends in a \f(CW\*(C`.exe\*(C'\fR suffix.
  1508. .IP "\fB\-\-gc\-sections\fR" 4
  1509. .IX Item "--gc-sections"
  1510. .PD 0
  1511. .IP "\fB\-\-no\-gc\-sections\fR" 4
  1512. .IX Item "--no-gc-sections"
  1513. .PD
  1514. Enable garbage collection of unused input sections. It is ignored on
  1515. targets that do not support this option. The default behaviour (of not
  1516. performing this garbage collection) can be restored by specifying
  1517. \&\fB\-\-no\-gc\-sections\fR on the command line. Note that garbage
  1518. collection for \s-1COFF\s0 and \s-1PE\s0 format targets is supported, but the
  1519. implementation is currently considered to be experimental.
  1520. .Sp
  1521. \&\fB\-\-gc\-sections\fR decides which input sections are used by
  1522. examining symbols and relocations. The section containing the entry
  1523. symbol and all sections containing symbols undefined on the
  1524. command-line will be kept, as will sections containing symbols
  1525. referenced by dynamic objects. Note that when building shared
  1526. libraries, the linker must assume that any visible symbol is
  1527. referenced. Once this initial set of sections has been determined,
  1528. the linker recursively marks as used any section referenced by their
  1529. relocations. See \fB\-\-entry\fR, \fB\-\-undefined\fR, and
  1530. \&\fB\-\-gc\-keep\-exported\fR.
  1531. .Sp
  1532. This option can be set when doing a partial link (enabled with option
  1533. \&\fB\-r\fR). In this case the root of symbols kept must be explicitly
  1534. specified either by one of the options \fB\-\-entry\fR,
  1535. \&\fB\-\-undefined\fR, or \fB\-\-gc\-keep\-exported\fR or by a \f(CW\*(C`ENTRY\*(C'\fR
  1536. command in the linker script.
  1537. .IP "\fB\-\-print\-gc\-sections\fR" 4
  1538. .IX Item "--print-gc-sections"
  1539. .PD 0
  1540. .IP "\fB\-\-no\-print\-gc\-sections\fR" 4
  1541. .IX Item "--no-print-gc-sections"
  1542. .PD
  1543. List all sections removed by garbage collection. The listing is
  1544. printed on stderr. This option is only effective if garbage
  1545. collection has been enabled via the \fB\-\-gc\-sections\fR) option. The
  1546. default behaviour (of not listing the sections that are removed) can
  1547. be restored by specifying \fB\-\-no\-print\-gc\-sections\fR on the command
  1548. line.
  1549. .IP "\fB\-\-gc\-keep\-exported\fR" 4
  1550. .IX Item "--gc-keep-exported"
  1551. When \fB\-\-gc\-sections\fR is enabled, this option prevents garbage
  1552. collection of unused input sections that contain global symbols having
  1553. default or protected visibility. This option is intended to be used for
  1554. executables where unreferenced sections would otherwise be garbage
  1555. collected regardless of the external visibility of contained symbols.
  1556. Note that this option has no effect when linking shared objects since
  1557. it is already the default behaviour. This option is only supported for
  1558. \&\s-1ELF\s0 format targets.
  1559. .IP "\fB\-\-print\-output\-format\fR" 4
  1560. .IX Item "--print-output-format"
  1561. Print the name of the default output format (perhaps influenced by
  1562. other command-line options). This is the string that would appear
  1563. in an \f(CW\*(C`OUTPUT_FORMAT\*(C'\fR linker script command.
  1564. .IP "\fB\-\-print\-memory\-usage\fR" 4
  1565. .IX Item "--print-memory-usage"
  1566. Print used size, total size and used size of memory regions created with
  1567. the \fB\s-1MEMORY\s0\fR command. This is useful on embedded targets to have a
  1568. quick view of amount of free memory. The format of the output has one
  1569. headline and one line per region. It is both human readable and easily
  1570. parsable by tools. Here is an example of an output:
  1571. .Sp
  1572. .Vb 3
  1573. \& Memory region Used Size Region Size %age Used
  1574. \& ROM: 256 KB 1 MB 25.00%
  1575. \& RAM: 32 B 2 GB 0.00%
  1576. .Ve
  1577. .IP "\fB\-\-help\fR" 4
  1578. .IX Item "--help"
  1579. Print a summary of the command-line options on the standard output and exit.
  1580. .IP "\fB\-\-target\-help\fR" 4
  1581. .IX Item "--target-help"
  1582. Print a summary of all target-specific options on the standard output and exit.
  1583. .IP "\fB\-Map=\fR\fImapfile\fR" 4
  1584. .IX Item "-Map=mapfile"
  1585. Print a link map to the file \fImapfile\fR. See the description of the
  1586. \&\fB\-M\fR option, above.
  1587. .IP "\fB\-\-no\-keep\-memory\fR" 4
  1588. .IX Item "--no-keep-memory"
  1589. \&\fBld\fR normally optimizes for speed over memory usage by caching the
  1590. symbol tables of input files in memory. This option tells \fBld\fR to
  1591. instead optimize for memory usage, by rereading the symbol tables as
  1592. necessary. This may be required if \fBld\fR runs out of memory space
  1593. while linking a large executable.
  1594. .IP "\fB\-\-no\-undefined\fR" 4
  1595. .IX Item "--no-undefined"
  1596. .PD 0
  1597. .IP "\fB\-z defs\fR" 4
  1598. .IX Item "-z defs"
  1599. .PD
  1600. Report unresolved symbol references from regular object files. This
  1601. is done even if the linker is creating a non-symbolic shared library.
  1602. The switch \fB\-\-[no\-]allow\-shlib\-undefined\fR controls the
  1603. behaviour for reporting unresolved references found in shared
  1604. libraries being linked in.
  1605. .Sp
  1606. The effects of this option can be reverted by using \f(CW\*(C`\-z undefs\*(C'\fR.
  1607. .IP "\fB\-\-allow\-multiple\-definition\fR" 4
  1608. .IX Item "--allow-multiple-definition"
  1609. .PD 0
  1610. .IP "\fB\-z muldefs\fR" 4
  1611. .IX Item "-z muldefs"
  1612. .PD
  1613. Normally when a symbol is defined multiple times, the linker will
  1614. report a fatal error. These options allow multiple definitions and the
  1615. first definition will be used.
  1616. .IP "\fB\-\-allow\-shlib\-undefined\fR" 4
  1617. .IX Item "--allow-shlib-undefined"
  1618. .PD 0
  1619. .IP "\fB\-\-no\-allow\-shlib\-undefined\fR" 4
  1620. .IX Item "--no-allow-shlib-undefined"
  1621. .PD
  1622. Allows or disallows undefined symbols in shared libraries.
  1623. This switch is similar to \fB\-\-no\-undefined\fR except that it
  1624. determines the behaviour when the undefined symbols are in a
  1625. shared library rather than a regular object file. It does not affect
  1626. how undefined symbols in regular object files are handled.
  1627. .Sp
  1628. The default behaviour is to report errors for any undefined symbols
  1629. referenced in shared libraries if the linker is being used to create
  1630. an executable, but to allow them if the linker is being used to create
  1631. a shared library.
  1632. .Sp
  1633. The reasons for allowing undefined symbol references in shared
  1634. libraries specified at link time are that:
  1635. .RS 4
  1636. .IP "\(bu" 4
  1637. A shared library specified at link time may not be the same as the one
  1638. that is available at load time, so the symbol might actually be
  1639. resolvable at load time.
  1640. .IP "\(bu" 4
  1641. There are some operating systems, eg BeOS and \s-1HPPA,\s0 where undefined
  1642. symbols in shared libraries are normal.
  1643. .Sp
  1644. The BeOS kernel for example patches shared libraries at load time to
  1645. select whichever function is most appropriate for the current
  1646. architecture. This is used, for example, to dynamically select an
  1647. appropriate memset function.
  1648. .RE
  1649. .RS 4
  1650. .RE
  1651. .IP "\fB\-\-no\-undefined\-version\fR" 4
  1652. .IX Item "--no-undefined-version"
  1653. Normally when a symbol has an undefined version, the linker will ignore
  1654. it. This option disallows symbols with undefined version and a fatal error
  1655. will be issued instead.
  1656. .IP "\fB\-\-default\-symver\fR" 4
  1657. .IX Item "--default-symver"
  1658. Create and use a default symbol version (the soname) for unversioned
  1659. exported symbols.
  1660. .IP "\fB\-\-default\-imported\-symver\fR" 4
  1661. .IX Item "--default-imported-symver"
  1662. Create and use a default symbol version (the soname) for unversioned
  1663. imported symbols.
  1664. .IP "\fB\-\-no\-warn\-mismatch\fR" 4
  1665. .IX Item "--no-warn-mismatch"
  1666. Normally \fBld\fR will give an error if you try to link together input
  1667. files that are mismatched for some reason, perhaps because they have
  1668. been compiled for different processors or for different endiannesses.
  1669. This option tells \fBld\fR that it should silently permit such possible
  1670. errors. This option should only be used with care, in cases when you
  1671. have taken some special action that ensures that the linker errors are
  1672. inappropriate.
  1673. .IP "\fB\-\-no\-warn\-search\-mismatch\fR" 4
  1674. .IX Item "--no-warn-search-mismatch"
  1675. Normally \fBld\fR will give a warning if it finds an incompatible
  1676. library during a library search. This option silences the warning.
  1677. .IP "\fB\-\-no\-whole\-archive\fR" 4
  1678. .IX Item "--no-whole-archive"
  1679. Turn off the effect of the \fB\-\-whole\-archive\fR option for subsequent
  1680. archive files.
  1681. .IP "\fB\-\-noinhibit\-exec\fR" 4
  1682. .IX Item "--noinhibit-exec"
  1683. Retain the executable output file whenever it is still usable.
  1684. Normally, the linker will not produce an output file if it encounters
  1685. errors during the link process; it exits without writing an output file
  1686. when it issues any error whatsoever.
  1687. .IP "\fB\-nostdlib\fR" 4
  1688. .IX Item "-nostdlib"
  1689. Only search library directories explicitly specified on the
  1690. command line. Library directories specified in linker scripts
  1691. (including linker scripts specified on the command line) are ignored.
  1692. .IP "\fB\-\-oformat=\fR\fIoutput-format\fR" 4
  1693. .IX Item "--oformat=output-format"
  1694. \&\fBld\fR may be configured to support more than one kind of object
  1695. file. If your \fBld\fR is configured this way, you can use the
  1696. \&\fB\-\-oformat\fR option to specify the binary format for the output
  1697. object file. Even when \fBld\fR is configured to support alternative
  1698. object formats, you don't usually need to specify this, as \fBld\fR
  1699. should be configured to produce as a default output format the most
  1700. usual format on each machine. \fIoutput-format\fR is a text string, the
  1701. name of a particular format supported by the \s-1BFD\s0 libraries. (You can
  1702. list the available binary formats with \fBobjdump \-i\fR.) The script
  1703. command \f(CW\*(C`OUTPUT_FORMAT\*(C'\fR can also specify the output format, but
  1704. this option overrides it.
  1705. .IP "\fB\-\-out\-implib\fR \fIfile\fR" 4
  1706. .IX Item "--out-implib file"
  1707. Create an import library in \fIfile\fR corresponding to the executable
  1708. the linker is generating (eg. a \s-1DLL\s0 or \s-1ELF\s0 program). This import
  1709. library (which should be called \f(CW\*(C`*.dll.a\*(C'\fR or \f(CW\*(C`*.a\*(C'\fR for DLLs)
  1710. may be used to link clients against the generated executable; this
  1711. behaviour makes it possible to skip a separate import library creation
  1712. step (eg. \f(CW\*(C`dlltool\*(C'\fR for DLLs). This option is only available for
  1713. the i386 \s-1PE\s0 and \s-1ELF\s0 targetted ports of the linker.
  1714. .IP "\fB\-pie\fR" 4
  1715. .IX Item "-pie"
  1716. .PD 0
  1717. .IP "\fB\-\-pic\-executable\fR" 4
  1718. .IX Item "--pic-executable"
  1719. .PD
  1720. Create a position independent executable. This is currently only supported on
  1721. \&\s-1ELF\s0 platforms. Position independent executables are similar to shared
  1722. libraries in that they are relocated by the dynamic linker to the virtual
  1723. address the \s-1OS\s0 chooses for them (which can vary between invocations). Like
  1724. normal dynamically linked executables they can be executed and symbols
  1725. defined in the executable cannot be overridden by shared libraries.
  1726. .IP "\fB\-qmagic\fR" 4
  1727. .IX Item "-qmagic"
  1728. This option is ignored for Linux compatibility.
  1729. .IP "\fB\-Qy\fR" 4
  1730. .IX Item "-Qy"
  1731. This option is ignored for \s-1SVR4\s0 compatibility.
  1732. .IP "\fB\-\-relax\fR" 4
  1733. .IX Item "--relax"
  1734. .PD 0
  1735. .IP "\fB\-\-no\-relax\fR" 4
  1736. .IX Item "--no-relax"
  1737. .PD
  1738. An option with machine dependent effects.
  1739. This option is only supported on a few targets.
  1740. .Sp
  1741. On some platforms the \fB\-\-relax\fR option performs target-specific,
  1742. global optimizations that become possible when the linker resolves
  1743. addressing in the program, such as relaxing address modes,
  1744. synthesizing new instructions, selecting shorter version of current
  1745. instructions, and combining constant values.
  1746. .Sp
  1747. On some platforms these link time global optimizations may make symbolic
  1748. debugging of the resulting executable impossible.
  1749. This is known to be the case for the Matsushita \s-1MN10200\s0 and \s-1MN10300\s0
  1750. family of processors.
  1751. .Sp
  1752. On platforms where this is not supported, \fB\-\-relax\fR is accepted,
  1753. but ignored.
  1754. .Sp
  1755. On platforms where \fB\-\-relax\fR is accepted the option
  1756. \&\fB\-\-no\-relax\fR can be used to disable the feature.
  1757. .IP "\fB\-\-retain\-symbols\-file=\fR\fIfilename\fR" 4
  1758. .IX Item "--retain-symbols-file=filename"
  1759. Retain \fIonly\fR the symbols listed in the file \fIfilename\fR,
  1760. discarding all others. \fIfilename\fR is simply a flat file, with one
  1761. symbol name per line. This option is especially useful in environments
  1762. (such as VxWorks)
  1763. where a large global symbol table is accumulated gradually, to conserve
  1764. run-time memory.
  1765. .Sp
  1766. \&\fB\-\-retain\-symbols\-file\fR does \fInot\fR discard undefined symbols,
  1767. or symbols needed for relocations.
  1768. .Sp
  1769. You may only specify \fB\-\-retain\-symbols\-file\fR once in the command
  1770. line. It overrides \fB\-s\fR and \fB\-S\fR.
  1771. .IP "\fB\-rpath=\fR\fIdir\fR" 4
  1772. .IX Item "-rpath=dir"
  1773. Add a directory to the runtime library search path. This is used when
  1774. linking an \s-1ELF\s0 executable with shared objects. All \fB\-rpath\fR
  1775. arguments are concatenated and passed to the runtime linker, which uses
  1776. them to locate shared objects at runtime.
  1777. .Sp
  1778. The \fB\-rpath\fR option is also used when locating shared objects which
  1779. are needed by shared objects explicitly included in the link; see the
  1780. description of the \fB\-rpath\-link\fR option. Searching \fB\-rpath\fR
  1781. in this way is only supported by native linkers and cross linkers which
  1782. have been configured with the \fB\-\-with\-sysroot\fR option.
  1783. .Sp
  1784. If \fB\-rpath\fR is not used when linking an \s-1ELF\s0 executable, the
  1785. contents of the environment variable \f(CW\*(C`LD_RUN_PATH\*(C'\fR will be used if it
  1786. is defined.
  1787. .Sp
  1788. The \fB\-rpath\fR option may also be used on SunOS. By default, on
  1789. SunOS, the linker will form a runtime search path out of all the
  1790. \&\fB\-L\fR options it is given. If a \fB\-rpath\fR option is used, the
  1791. runtime search path will be formed exclusively using the \fB\-rpath\fR
  1792. options, ignoring the \fB\-L\fR options. This can be useful when using
  1793. gcc, which adds many \fB\-L\fR options which may be on \s-1NFS\s0 mounted
  1794. file systems.
  1795. .Sp
  1796. For compatibility with other \s-1ELF\s0 linkers, if the \fB\-R\fR option is
  1797. followed by a directory name, rather than a file name, it is treated as
  1798. the \fB\-rpath\fR option.
  1799. .IP "\fB\-rpath\-link=\fR\fIdir\fR" 4
  1800. .IX Item "-rpath-link=dir"
  1801. When using \s-1ELF\s0 or SunOS, one shared library may require another. This
  1802. happens when an \f(CW\*(C`ld \-shared\*(C'\fR link includes a shared library as one
  1803. of the input files.
  1804. .Sp
  1805. When the linker encounters such a dependency when doing a non-shared,
  1806. non-relocatable link, it will automatically try to locate the required
  1807. shared library and include it in the link, if it is not included
  1808. explicitly. In such a case, the \fB\-rpath\-link\fR option
  1809. specifies the first set of directories to search. The
  1810. \&\fB\-rpath\-link\fR option may specify a sequence of directory names
  1811. either by specifying a list of names separated by colons, or by
  1812. appearing multiple times.
  1813. .Sp
  1814. The tokens \fI\f(CI$ORIGIN\fI\fR and \fI\f(CI$LIB\fI\fR can appear in these search
  1815. directories. They will be replaced by the full path to the directory
  1816. containing the program or shared object in the case of \fI\f(CI$ORIGIN\fI\fR
  1817. and either \fBlib\fR \- for 32\-bit binaries \- or \fBlib64\fR \- for
  1818. 64\-bit binaries \- in the case of \fI\f(CI$LIB\fI\fR.
  1819. .Sp
  1820. The alternative form of these tokens \- \fI${\s-1ORIGIN\s0}\fR and
  1821. \&\fI${\s-1LIB\s0}\fR can also be used. The token \fI\f(CI$PLATFORM\fI\fR is not
  1822. supported.
  1823. .Sp
  1824. This option should be used with caution as it overrides the search path
  1825. that may have been hard compiled into a shared library. In such a case it
  1826. is possible to use unintentionally a different search path than the
  1827. runtime linker would do.
  1828. .Sp
  1829. The linker uses the following search paths to locate required shared
  1830. libraries:
  1831. .RS 4
  1832. .IP "1." 4
  1833. Any directories specified by \fB\-rpath\-link\fR options.
  1834. .IP "2." 4
  1835. Any directories specified by \fB\-rpath\fR options. The difference
  1836. between \fB\-rpath\fR and \fB\-rpath\-link\fR is that directories
  1837. specified by \fB\-rpath\fR options are included in the executable and
  1838. used at runtime, whereas the \fB\-rpath\-link\fR option is only effective
  1839. at link time. Searching \fB\-rpath\fR in this way is only supported
  1840. by native linkers and cross linkers which have been configured with
  1841. the \fB\-\-with\-sysroot\fR option.
  1842. .IP "3." 4
  1843. On an \s-1ELF\s0 system, for native linkers, if the \fB\-rpath\fR and
  1844. \&\fB\-rpath\-link\fR options were not used, search the contents of the
  1845. environment variable \f(CW\*(C`LD_RUN_PATH\*(C'\fR.
  1846. .IP "4." 4
  1847. On SunOS, if the \fB\-rpath\fR option was not used, search any
  1848. directories specified using \fB\-L\fR options.
  1849. .IP "5." 4
  1850. For a native linker, search the contents of the environment
  1851. variable \f(CW\*(C`LD_LIBRARY_PATH\*(C'\fR.
  1852. .IP "6." 4
  1853. For a native \s-1ELF\s0 linker, the directories in \f(CW\*(C`DT_RUNPATH\*(C'\fR or
  1854. \&\f(CW\*(C`DT_RPATH\*(C'\fR of a shared library are searched for shared
  1855. libraries needed by it. The \f(CW\*(C`DT_RPATH\*(C'\fR entries are ignored if
  1856. \&\f(CW\*(C`DT_RUNPATH\*(C'\fR entries exist.
  1857. .IP "7." 4
  1858. The default directories, normally \fI/lib\fR and \fI/usr/lib\fR.
  1859. .IP "8." 4
  1860. For a native linker on an \s-1ELF\s0 system, if the file \fI/etc/ld.so.conf\fR
  1861. exists, the list of directories found in that file.
  1862. .RE
  1863. .RS 4
  1864. .Sp
  1865. If the required shared library is not found, the linker will issue a
  1866. warning and continue with the link.
  1867. .RE
  1868. .IP "\fB\-shared\fR" 4
  1869. .IX Item "-shared"
  1870. .PD 0
  1871. .IP "\fB\-Bshareable\fR" 4
  1872. .IX Item "-Bshareable"
  1873. .PD
  1874. Create a shared library. This is currently only supported on \s-1ELF, XCOFF\s0
  1875. and SunOS platforms. On SunOS, the linker will automatically create a
  1876. shared library if the \fB\-e\fR option is not used and there are
  1877. undefined symbols in the link.
  1878. .IP "\fB\-\-sort\-common\fR" 4
  1879. .IX Item "--sort-common"
  1880. .PD 0
  1881. .IP "\fB\-\-sort\-common=ascending\fR" 4
  1882. .IX Item "--sort-common=ascending"
  1883. .IP "\fB\-\-sort\-common=descending\fR" 4
  1884. .IX Item "--sort-common=descending"
  1885. .PD
  1886. This option tells \fBld\fR to sort the common symbols by alignment in
  1887. ascending or descending order when it places them in the appropriate output
  1888. sections. The symbol alignments considered are sixteen-byte or larger,
  1889. eight-byte, four-byte, two-byte, and one-byte. This is to prevent gaps
  1890. between symbols due to alignment constraints. If no sorting order is
  1891. specified, then descending order is assumed.
  1892. .IP "\fB\-\-sort\-section=name\fR" 4
  1893. .IX Item "--sort-section=name"
  1894. This option will apply \f(CW\*(C`SORT_BY_NAME\*(C'\fR to all wildcard section
  1895. patterns in the linker script.
  1896. .IP "\fB\-\-sort\-section=alignment\fR" 4
  1897. .IX Item "--sort-section=alignment"
  1898. This option will apply \f(CW\*(C`SORT_BY_ALIGNMENT\*(C'\fR to all wildcard section
  1899. patterns in the linker script.
  1900. .IP "\fB\-\-spare\-dynamic\-tags=\fR\fIcount\fR" 4
  1901. .IX Item "--spare-dynamic-tags=count"
  1902. This option specifies the number of empty slots to leave in the
  1903. \&.dynamic section of \s-1ELF\s0 shared objects. Empty slots may be needed by
  1904. post processing tools, such as the prelinker. The default is 5.
  1905. .IP "\fB\-\-split\-by\-file[=\fR\fIsize\fR\fB]\fR" 4
  1906. .IX Item "--split-by-file[=size]"
  1907. Similar to \fB\-\-split\-by\-reloc\fR but creates a new output section for
  1908. each input file when \fIsize\fR is reached. \fIsize\fR defaults to a
  1909. size of 1 if not given.
  1910. .IP "\fB\-\-split\-by\-reloc[=\fR\fIcount\fR\fB]\fR" 4
  1911. .IX Item "--split-by-reloc[=count]"
  1912. Tries to creates extra sections in the output file so that no single
  1913. output section in the file contains more than \fIcount\fR relocations.
  1914. This is useful when generating huge relocatable files for downloading into
  1915. certain real time kernels with the \s-1COFF\s0 object file format; since \s-1COFF\s0
  1916. cannot represent more than 65535 relocations in a single section. Note
  1917. that this will fail to work with object file formats which do not
  1918. support arbitrary sections. The linker will not split up individual
  1919. input sections for redistribution, so if a single input section contains
  1920. more than \fIcount\fR relocations one output section will contain that
  1921. many relocations. \fIcount\fR defaults to a value of 32768.
  1922. .IP "\fB\-\-stats\fR" 4
  1923. .IX Item "--stats"
  1924. Compute and display statistics about the operation of the linker, such
  1925. as execution time and memory usage.
  1926. .IP "\fB\-\-sysroot=\fR\fIdirectory\fR" 4
  1927. .IX Item "--sysroot=directory"
  1928. Use \fIdirectory\fR as the location of the sysroot, overriding the
  1929. configure-time default. This option is only supported by linkers
  1930. that were configured using \fB\-\-with\-sysroot\fR.
  1931. .IP "\fB\-\-task\-link\fR" 4
  1932. .IX Item "--task-link"
  1933. This is used by \s-1COFF/PE\s0 based targets to create a task-linked object
  1934. file where all of the global symbols have been converted to statics.
  1935. .IP "\fB\-\-traditional\-format\fR" 4
  1936. .IX Item "--traditional-format"
  1937. For some targets, the output of \fBld\fR is different in some ways from
  1938. the output of some existing linker. This switch requests \fBld\fR to
  1939. use the traditional format instead.
  1940. .Sp
  1941. For example, on SunOS, \fBld\fR combines duplicate entries in the
  1942. symbol string table. This can reduce the size of an output file with
  1943. full debugging information by over 30 percent. Unfortunately, the SunOS
  1944. \&\f(CW\*(C`dbx\*(C'\fR program can not read the resulting program (\f(CW\*(C`gdb\*(C'\fR has no
  1945. trouble). The \fB\-\-traditional\-format\fR switch tells \fBld\fR to not
  1946. combine duplicate entries.
  1947. .IP "\fB\-\-section\-start=\fR\fIsectionname\fR\fB=\fR\fIorg\fR" 4
  1948. .IX Item "--section-start=sectionname=org"
  1949. Locate a section in the output file at the absolute
  1950. address given by \fIorg\fR. You may use this option as many
  1951. times as necessary to locate multiple sections in the command
  1952. line.
  1953. \&\fIorg\fR must be a single hexadecimal integer;
  1954. for compatibility with other linkers, you may omit the leading
  1955. \&\fB0x\fR usually associated with hexadecimal values. \fINote:\fR there
  1956. should be no white space between \fIsectionname\fR, the equals
  1957. sign ("\fB=\fR"), and \fIorg\fR.
  1958. .IP "\fB\-Tbss=\fR\fIorg\fR" 4
  1959. .IX Item "-Tbss=org"
  1960. .PD 0
  1961. .IP "\fB\-Tdata=\fR\fIorg\fR" 4
  1962. .IX Item "-Tdata=org"
  1963. .IP "\fB\-Ttext=\fR\fIorg\fR" 4
  1964. .IX Item "-Ttext=org"
  1965. .PD
  1966. Same as \fB\-\-section\-start\fR, with \f(CW\*(C`.bss\*(C'\fR, \f(CW\*(C`.data\*(C'\fR or
  1967. \&\f(CW\*(C`.text\*(C'\fR as the \fIsectionname\fR.
  1968. .IP "\fB\-Ttext\-segment=\fR\fIorg\fR" 4
  1969. .IX Item "-Ttext-segment=org"
  1970. When creating an \s-1ELF\s0 executable, it will set the address of the first
  1971. byte of the text segment.
  1972. .IP "\fB\-Trodata\-segment=\fR\fIorg\fR" 4
  1973. .IX Item "-Trodata-segment=org"
  1974. When creating an \s-1ELF\s0 executable or shared object for a target where
  1975. the read-only data is in its own segment separate from the executable
  1976. text, it will set the address of the first byte of the read-only data segment.
  1977. .IP "\fB\-Tldata\-segment=\fR\fIorg\fR" 4
  1978. .IX Item "-Tldata-segment=org"
  1979. When creating an \s-1ELF\s0 executable or shared object for x86\-64 medium memory
  1980. model, it will set the address of the first byte of the ldata segment.
  1981. .IP "\fB\-\-unresolved\-symbols=\fR\fImethod\fR" 4
  1982. .IX Item "--unresolved-symbols=method"
  1983. Determine how to handle unresolved symbols. There are four possible
  1984. values for \fBmethod\fR:
  1985. .RS 4
  1986. .IP "\fBignore-all\fR" 4
  1987. .IX Item "ignore-all"
  1988. Do not report any unresolved symbols.
  1989. .IP "\fBreport-all\fR" 4
  1990. .IX Item "report-all"
  1991. Report all unresolved symbols. This is the default.
  1992. .IP "\fBignore-in-object-files\fR" 4
  1993. .IX Item "ignore-in-object-files"
  1994. Report unresolved symbols that are contained in shared libraries, but
  1995. ignore them if they come from regular object files.
  1996. .IP "\fBignore-in-shared-libs\fR" 4
  1997. .IX Item "ignore-in-shared-libs"
  1998. Report unresolved symbols that come from regular object files, but
  1999. ignore them if they come from shared libraries. This can be useful
  2000. when creating a dynamic binary and it is known that all the shared
  2001. libraries that it should be referencing are included on the linker's
  2002. command line.
  2003. .RE
  2004. .RS 4
  2005. .Sp
  2006. The behaviour for shared libraries on their own can also be controlled
  2007. by the \fB\-\-[no\-]allow\-shlib\-undefined\fR option.
  2008. .Sp
  2009. Normally the linker will generate an error message for each reported
  2010. unresolved symbol but the option \fB\-\-warn\-unresolved\-symbols\fR
  2011. can change this to a warning.
  2012. .RE
  2013. .IP "\fB\-\-dll\-verbose\fR" 4
  2014. .IX Item "--dll-verbose"
  2015. .PD 0
  2016. .IP "\fB\-\-verbose[=\fR\fI\s-1NUMBER\s0\fR\fB]\fR" 4
  2017. .IX Item "--verbose[=NUMBER]"
  2018. .PD
  2019. Display the version number for \fBld\fR and list the linker emulations
  2020. supported. Display which input files can and cannot be opened. Display
  2021. the linker script being used by the linker. If the optional \fI\s-1NUMBER\s0\fR
  2022. argument > 1, plugin symbol status will also be displayed.
  2023. .IP "\fB\-\-version\-script=\fR\fIversion-scriptfile\fR" 4
  2024. .IX Item "--version-script=version-scriptfile"
  2025. Specify the name of a version script to the linker. This is typically
  2026. used when creating shared libraries to specify additional information
  2027. about the version hierarchy for the library being created. This option
  2028. is only fully supported on \s-1ELF\s0 platforms which support shared libraries;
  2029. see \fB\s-1VERSION\s0\fR. It is partially supported on \s-1PE\s0 platforms, which can
  2030. use version scripts to filter symbol visibility in auto-export mode: any
  2031. symbols marked \fBlocal\fR in the version script will not be exported.
  2032. .IP "\fB\-\-warn\-common\fR" 4
  2033. .IX Item "--warn-common"
  2034. Warn when a common symbol is combined with another common symbol or with
  2035. a symbol definition. Unix linkers allow this somewhat sloppy practice,
  2036. but linkers on some other operating systems do not. This option allows
  2037. you to find potential problems from combining global symbols.
  2038. Unfortunately, some C libraries use this practice, so you may get some
  2039. warnings about symbols in the libraries as well as in your programs.
  2040. .Sp
  2041. There are three kinds of global symbols, illustrated here by C examples:
  2042. .RS 4
  2043. .IP "\fBint i = 1;\fR" 4
  2044. .IX Item "int i = 1;"
  2045. A definition, which goes in the initialized data section of the output
  2046. file.
  2047. .IP "\fBextern int i;\fR" 4
  2048. .IX Item "extern int i;"
  2049. An undefined reference, which does not allocate space.
  2050. There must be either a definition or a common symbol for the
  2051. variable somewhere.
  2052. .IP "\fBint i;\fR" 4
  2053. .IX Item "int i;"
  2054. A common symbol. If there are only (one or more) common symbols for a
  2055. variable, it goes in the uninitialized data area of the output file.
  2056. The linker merges multiple common symbols for the same variable into a
  2057. single symbol. If they are of different sizes, it picks the largest
  2058. size. The linker turns a common symbol into a declaration, if there is
  2059. a definition of the same variable.
  2060. .RE
  2061. .RS 4
  2062. .Sp
  2063. The \fB\-\-warn\-common\fR option can produce five kinds of warnings.
  2064. Each warning consists of a pair of lines: the first describes the symbol
  2065. just encountered, and the second describes the previous symbol
  2066. encountered with the same name. One or both of the two symbols will be
  2067. a common symbol.
  2068. .IP "1." 4
  2069. Turning a common symbol into a reference, because there is already a
  2070. definition for the symbol.
  2071. .Sp
  2072. .Vb 3
  2073. \& <file>(<section>): warning: common of \`<symbol>\*(Aq
  2074. \& overridden by definition
  2075. \& <file>(<section>): warning: defined here
  2076. .Ve
  2077. .IP "2." 4
  2078. Turning a common symbol into a reference, because a later definition for
  2079. the symbol is encountered. This is the same as the previous case,
  2080. except that the symbols are encountered in a different order.
  2081. .Sp
  2082. .Vb 3
  2083. \& <file>(<section>): warning: definition of \`<symbol>\*(Aq
  2084. \& overriding common
  2085. \& <file>(<section>): warning: common is here
  2086. .Ve
  2087. .IP "3." 4
  2088. Merging a common symbol with a previous same-sized common symbol.
  2089. .Sp
  2090. .Vb 3
  2091. \& <file>(<section>): warning: multiple common
  2092. \& of \`<symbol>\*(Aq
  2093. \& <file>(<section>): warning: previous common is here
  2094. .Ve
  2095. .IP "4." 4
  2096. Merging a common symbol with a previous larger common symbol.
  2097. .Sp
  2098. .Vb 3
  2099. \& <file>(<section>): warning: common of \`<symbol>\*(Aq
  2100. \& overridden by larger common
  2101. \& <file>(<section>): warning: larger common is here
  2102. .Ve
  2103. .IP "5." 4
  2104. Merging a common symbol with a previous smaller common symbol. This is
  2105. the same as the previous case, except that the symbols are
  2106. encountered in a different order.
  2107. .Sp
  2108. .Vb 3
  2109. \& <file>(<section>): warning: common of \`<symbol>\*(Aq
  2110. \& overriding smaller common
  2111. \& <file>(<section>): warning: smaller common is here
  2112. .Ve
  2113. .RE
  2114. .RS 4
  2115. .RE
  2116. .IP "\fB\-\-warn\-constructors\fR" 4
  2117. .IX Item "--warn-constructors"
  2118. Warn if any global constructors are used. This is only useful for a few
  2119. object file formats. For formats like \s-1COFF\s0 or \s-1ELF,\s0 the linker can not
  2120. detect the use of global constructors.
  2121. .IP "\fB\-\-warn\-multiple\-gp\fR" 4
  2122. .IX Item "--warn-multiple-gp"
  2123. Warn if multiple global pointer values are required in the output file.
  2124. This is only meaningful for certain processors, such as the Alpha.
  2125. Specifically, some processors put large-valued constants in a special
  2126. section. A special register (the global pointer) points into the middle
  2127. of this section, so that constants can be loaded efficiently via a
  2128. base-register relative addressing mode. Since the offset in
  2129. base-register relative mode is fixed and relatively small (e.g., 16
  2130. bits), this limits the maximum size of the constant pool. Thus, in
  2131. large programs, it is often necessary to use multiple global pointer
  2132. values in order to be able to address all possible constants. This
  2133. option causes a warning to be issued whenever this case occurs.
  2134. .IP "\fB\-\-warn\-once\fR" 4
  2135. .IX Item "--warn-once"
  2136. Only warn once for each undefined symbol, rather than once per module
  2137. which refers to it.
  2138. .IP "\fB\-\-warn\-section\-align\fR" 4
  2139. .IX Item "--warn-section-align"
  2140. Warn if the address of an output section is changed because of
  2141. alignment. Typically, the alignment will be set by an input section.
  2142. The address will only be changed if it not explicitly specified; that
  2143. is, if the \f(CW\*(C`SECTIONS\*(C'\fR command does not specify a start address for
  2144. the section.
  2145. .IP "\fB\-\-warn\-shared\-textrel\fR" 4
  2146. .IX Item "--warn-shared-textrel"
  2147. Warn if the linker adds a \s-1DT_TEXTREL\s0 to a shared object.
  2148. .IP "\fB\-\-warn\-alternate\-em\fR" 4
  2149. .IX Item "--warn-alternate-em"
  2150. Warn if an object has alternate \s-1ELF\s0 machine code.
  2151. .IP "\fB\-\-warn\-unresolved\-symbols\fR" 4
  2152. .IX Item "--warn-unresolved-symbols"
  2153. If the linker is going to report an unresolved symbol (see the option
  2154. \&\fB\-\-unresolved\-symbols\fR) it will normally generate an error.
  2155. This option makes it generate a warning instead.
  2156. .IP "\fB\-\-error\-unresolved\-symbols\fR" 4
  2157. .IX Item "--error-unresolved-symbols"
  2158. This restores the linker's default behaviour of generating errors when
  2159. it is reporting unresolved symbols.
  2160. .IP "\fB\-\-whole\-archive\fR" 4
  2161. .IX Item "--whole-archive"
  2162. For each archive mentioned on the command line after the
  2163. \&\fB\-\-whole\-archive\fR option, include every object file in the archive
  2164. in the link, rather than searching the archive for the required object
  2165. files. This is normally used to turn an archive file into a shared
  2166. library, forcing every object to be included in the resulting shared
  2167. library. This option may be used more than once.
  2168. .Sp
  2169. Two notes when using this option from gcc: First, gcc doesn't know
  2170. about this option, so you have to use \fB\-Wl,\-whole\-archive\fR.
  2171. Second, don't forget to use \fB\-Wl,\-no\-whole\-archive\fR after your
  2172. list of archives, because gcc will add its own list of archives to
  2173. your link and you may not want this flag to affect those as well.
  2174. .IP "\fB\-\-wrap=\fR\fIsymbol\fR" 4
  2175. .IX Item "--wrap=symbol"
  2176. Use a wrapper function for \fIsymbol\fR. Any undefined reference to
  2177. \&\fIsymbol\fR will be resolved to \f(CW\*(C`_\|_wrap_\f(CIsymbol\f(CW\*(C'\fR. Any
  2178. undefined reference to \f(CW\*(C`_\|_real_\f(CIsymbol\f(CW\*(C'\fR will be resolved to
  2179. \&\fIsymbol\fR.
  2180. .Sp
  2181. This can be used to provide a wrapper for a system function. The
  2182. wrapper function should be called \f(CW\*(C`_\|_wrap_\f(CIsymbol\f(CW\*(C'\fR. If it
  2183. wishes to call the system function, it should call
  2184. \&\f(CW\*(C`_\|_real_\f(CIsymbol\f(CW\*(C'\fR.
  2185. .Sp
  2186. Here is a trivial example:
  2187. .Sp
  2188. .Vb 6
  2189. \& void *
  2190. \& _\|_wrap_malloc (size_t c)
  2191. \& {
  2192. \& printf ("malloc called with %zu\en", c);
  2193. \& return _\|_real_malloc (c);
  2194. \& }
  2195. .Ve
  2196. .Sp
  2197. If you link other code with this file using \fB\-\-wrap malloc\fR, then
  2198. all calls to \f(CW\*(C`malloc\*(C'\fR will call the function \f(CW\*(C`_\|_wrap_malloc\*(C'\fR
  2199. instead. The call to \f(CW\*(C`_\|_real_malloc\*(C'\fR in \f(CW\*(C`_\|_wrap_malloc\*(C'\fR will
  2200. call the real \f(CW\*(C`malloc\*(C'\fR function.
  2201. .Sp
  2202. You may wish to provide a \f(CW\*(C`_\|_real_malloc\*(C'\fR function as well, so that
  2203. links without the \fB\-\-wrap\fR option will succeed. If you do this,
  2204. you should not put the definition of \f(CW\*(C`_\|_real_malloc\*(C'\fR in the same
  2205. file as \f(CW\*(C`_\|_wrap_malloc\*(C'\fR; if you do, the assembler may resolve the
  2206. call before the linker has a chance to wrap it to \f(CW\*(C`malloc\*(C'\fR.
  2207. .Sp
  2208. Only undefined references are replaced by the linker. So, translation unit
  2209. internal references to \fIsymbol\fR are not resolved to
  2210. \&\f(CW\*(C`_\|_wrap_\f(CIsymbol\f(CW\*(C'\fR. In the next example, the call to \f(CW\*(C`f\*(C'\fR in
  2211. \&\f(CW\*(C`g\*(C'\fR is not resolved to \f(CW\*(C`_\|_wrap_f\*(C'\fR.
  2212. .Sp
  2213. .Vb 5
  2214. \& int
  2215. \& f (void)
  2216. \& {
  2217. \& return 123;
  2218. \& }
  2219. \&
  2220. \& int
  2221. \& g (void)
  2222. \& {
  2223. \& return f();
  2224. \& }
  2225. .Ve
  2226. .IP "\fB\-\-eh\-frame\-hdr\fR" 4
  2227. .IX Item "--eh-frame-hdr"
  2228. .PD 0
  2229. .IP "\fB\-\-no\-eh\-frame\-hdr\fR" 4
  2230. .IX Item "--no-eh-frame-hdr"
  2231. .PD
  2232. Request (\fB\-\-eh\-frame\-hdr\fR) or suppress
  2233. (\fB\-\-no\-eh\-frame\-hdr\fR) the creation of \f(CW\*(C`.eh_frame_hdr\*(C'\fR
  2234. section and \s-1ELF\s0 \f(CW\*(C`PT_GNU_EH_FRAME\*(C'\fR segment header.
  2235. .IP "\fB\-\-no\-ld\-generated\-unwind\-info\fR" 4
  2236. .IX Item "--no-ld-generated-unwind-info"
  2237. Request creation of \f(CW\*(C`.eh_frame\*(C'\fR unwind info for linker
  2238. generated code sections like \s-1PLT.\s0 This option is on by default
  2239. if linker generated unwind info is supported.
  2240. .IP "\fB\-\-enable\-new\-dtags\fR" 4
  2241. .IX Item "--enable-new-dtags"
  2242. .PD 0
  2243. .IP "\fB\-\-disable\-new\-dtags\fR" 4
  2244. .IX Item "--disable-new-dtags"
  2245. .PD
  2246. This linker can create the new dynamic tags in \s-1ELF.\s0 But the older \s-1ELF\s0
  2247. systems may not understand them. If you specify
  2248. \&\fB\-\-enable\-new\-dtags\fR, the new dynamic tags will be created as needed
  2249. and older dynamic tags will be omitted.
  2250. If you specify \fB\-\-disable\-new\-dtags\fR, no new dynamic tags will be
  2251. created. By default, the new dynamic tags are not created. Note that
  2252. those options are only available for \s-1ELF\s0 systems.
  2253. .IP "\fB\-\-hash\-size=\fR\fInumber\fR" 4
  2254. .IX Item "--hash-size=number"
  2255. Set the default size of the linker's hash tables to a prime number
  2256. close to \fInumber\fR. Increasing this value can reduce the length of
  2257. time it takes the linker to perform its tasks, at the expense of
  2258. increasing the linker's memory requirements. Similarly reducing this
  2259. value can reduce the memory requirements at the expense of speed.
  2260. .IP "\fB\-\-hash\-style=\fR\fIstyle\fR" 4
  2261. .IX Item "--hash-style=style"
  2262. Set the type of linker's hash table(s). \fIstyle\fR can be either
  2263. \&\f(CW\*(C`sysv\*(C'\fR for classic \s-1ELF\s0 \f(CW\*(C`.hash\*(C'\fR section, \f(CW\*(C`gnu\*(C'\fR for
  2264. new style \s-1GNU\s0 \f(CW\*(C`.gnu.hash\*(C'\fR section or \f(CW\*(C`both\*(C'\fR for both
  2265. the classic \s-1ELF\s0 \f(CW\*(C`.hash\*(C'\fR and new style \s-1GNU\s0 \f(CW\*(C`.gnu.hash\*(C'\fR
  2266. hash tables. The default depends upon how the linker was configured,
  2267. but for most Linux based systems it will be \f(CW\*(C`both\*(C'\fR.
  2268. .IP "\fB\-\-compress\-debug\-sections=none\fR" 4
  2269. .IX Item "--compress-debug-sections=none"
  2270. .PD 0
  2271. .IP "\fB\-\-compress\-debug\-sections=zlib\fR" 4
  2272. .IX Item "--compress-debug-sections=zlib"
  2273. .IP "\fB\-\-compress\-debug\-sections=zlib\-gnu\fR" 4
  2274. .IX Item "--compress-debug-sections=zlib-gnu"
  2275. .IP "\fB\-\-compress\-debug\-sections=zlib\-gabi\fR" 4
  2276. .IX Item "--compress-debug-sections=zlib-gabi"
  2277. .PD
  2278. On \s-1ELF\s0 platforms, these options control how \s-1DWARF\s0 debug sections are
  2279. compressed using zlib.
  2280. .Sp
  2281. \&\fB\-\-compress\-debug\-sections=none\fR doesn't compress \s-1DWARF\s0 debug
  2282. sections. \fB\-\-compress\-debug\-sections=zlib\-gnu\fR compresses
  2283. \&\s-1DWARF\s0 debug sections and renames them to begin with \fB.zdebug\fR
  2284. instead of \fB.debug\fR. \fB\-\-compress\-debug\-sections=zlib\-gabi\fR
  2285. also compresses \s-1DWARF\s0 debug sections, but rather than renaming them it
  2286. sets the \s-1SHF_COMPRESSED\s0 flag in the sections' headers.
  2287. .Sp
  2288. The \fB\-\-compress\-debug\-sections=zlib\fR option is an alias for
  2289. \&\fB\-\-compress\-debug\-sections=zlib\-gabi\fR.
  2290. .Sp
  2291. Note that this option overrides any compression in input debug
  2292. sections, so if a binary is linked with \fB\-\-compress\-debug\-sections=none\fR
  2293. for example, then any compressed debug sections in input files will be
  2294. uncompressed before they are copied into the output binary.
  2295. .Sp
  2296. The default compression behaviour varies depending upon the target
  2297. involved and the configure options used to build the toolchain. The
  2298. default can be determined by examining the output from the linker's
  2299. \&\fB\-\-help\fR option.
  2300. .IP "\fB\-\-reduce\-memory\-overheads\fR" 4
  2301. .IX Item "--reduce-memory-overheads"
  2302. This option reduces memory requirements at ld runtime, at the expense of
  2303. linking speed. This was introduced to select the old O(n^2) algorithm
  2304. for link map file generation, rather than the new O(n) algorithm which uses
  2305. about 40% more memory for symbol storage.
  2306. .Sp
  2307. Another effect of the switch is to set the default hash table size to
  2308. 1021, which again saves memory at the cost of lengthening the linker's
  2309. run time. This is not done however if the \fB\-\-hash\-size\fR switch
  2310. has been used.
  2311. .Sp
  2312. The \fB\-\-reduce\-memory\-overheads\fR switch may be also be used to
  2313. enable other tradeoffs in future versions of the linker.
  2314. .IP "\fB\-\-build\-id\fR" 4
  2315. .IX Item "--build-id"
  2316. .PD 0
  2317. .IP "\fB\-\-build\-id=\fR\fIstyle\fR" 4
  2318. .IX Item "--build-id=style"
  2319. .PD
  2320. Request the creation of a \f(CW\*(C`.note.gnu.build\-id\*(C'\fR \s-1ELF\s0 note section
  2321. or a \f(CW\*(C`.buildid\*(C'\fR \s-1COFF\s0 section. The contents of the note are
  2322. unique bits identifying this linked file. \fIstyle\fR can be
  2323. \&\f(CW\*(C`uuid\*(C'\fR to use 128 random bits, \f(CW\*(C`sha1\*(C'\fR to use a 160\-bit
  2324. \&\s-1SHA1\s0 hash on the normative parts of the output contents,
  2325. \&\f(CW\*(C`md5\*(C'\fR to use a 128\-bit \s-1MD5\s0 hash on the normative parts of
  2326. the output contents, or \f(CW\*(C`0x\f(CIhexstring\f(CW\*(C'\fR to use a chosen bit
  2327. string specified as an even number of hexadecimal digits (\f(CW\*(C`\-\*(C'\fR and
  2328. \&\f(CW\*(C`:\*(C'\fR characters between digit pairs are ignored). If \fIstyle\fR
  2329. is omitted, \f(CW\*(C`sha1\*(C'\fR is used.
  2330. .Sp
  2331. The \f(CW\*(C`md5\*(C'\fR and \f(CW\*(C`sha1\*(C'\fR styles produces an identifier
  2332. that is always the same in an identical output file, but will be
  2333. unique among all nonidentical output files. It is not intended
  2334. to be compared as a checksum for the file's contents. A linked
  2335. file may be changed later by other tools, but the build \s-1ID\s0 bit
  2336. string identifying the original linked file does not change.
  2337. .Sp
  2338. Passing \f(CW\*(C`none\*(C'\fR for \fIstyle\fR disables the setting from any
  2339. \&\f(CW\*(C`\-\-build\-id\*(C'\fR options earlier on the command line.
  2340. .PP
  2341. The i386 \s-1PE\s0 linker supports the \fB\-shared\fR option, which causes
  2342. the output to be a dynamically linked library (\s-1DLL\s0) instead of a
  2343. normal executable. You should name the output \f(CW\*(C`*.dll\*(C'\fR when you
  2344. use this option. In addition, the linker fully supports the standard
  2345. \&\f(CW\*(C`*.def\*(C'\fR files, which may be specified on the linker command line
  2346. like an object file (in fact, it should precede archives it exports
  2347. symbols from, to ensure that they get linked in, just like a normal
  2348. object file).
  2349. .PP
  2350. In addition to the options common to all targets, the i386 \s-1PE\s0 linker
  2351. support additional command-line options that are specific to the i386
  2352. \&\s-1PE\s0 target. Options that take values may be separated from their
  2353. values by either a space or an equals sign.
  2354. .IP "\fB\-\-add\-stdcall\-alias\fR" 4
  2355. .IX Item "--add-stdcall-alias"
  2356. If given, symbols with a stdcall suffix (@\fInn\fR) will be exported
  2357. as-is and also with the suffix stripped.
  2358. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2359. .IP "\fB\-\-base\-file\fR \fIfile\fR" 4
  2360. .IX Item "--base-file file"
  2361. Use \fIfile\fR as the name of a file in which to save the base
  2362. addresses of all the relocations needed for generating DLLs with
  2363. \&\fIdlltool\fR.
  2364. [This is an i386 \s-1PE\s0 specific option]
  2365. .IP "\fB\-\-dll\fR" 4
  2366. .IX Item "--dll"
  2367. Create a \s-1DLL\s0 instead of a regular executable. You may also use
  2368. \&\fB\-shared\fR or specify a \f(CW\*(C`LIBRARY\*(C'\fR in a given \f(CW\*(C`.def\*(C'\fR
  2369. file.
  2370. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2371. .IP "\fB\-\-enable\-long\-section\-names\fR" 4
  2372. .IX Item "--enable-long-section-names"
  2373. .PD 0
  2374. .IP "\fB\-\-disable\-long\-section\-names\fR" 4
  2375. .IX Item "--disable-long-section-names"
  2376. .PD
  2377. The \s-1PE\s0 variants of the \s-1COFF\s0 object format add an extension that permits
  2378. the use of section names longer than eight characters, the normal limit
  2379. for \s-1COFF.\s0 By default, these names are only allowed in object files, as
  2380. fully-linked executable images do not carry the \s-1COFF\s0 string table required
  2381. to support the longer names. As a \s-1GNU\s0 extension, it is possible to
  2382. allow their use in executable images as well, or to (probably pointlessly!)
  2383. disallow it in object files, by using these two options. Executable images
  2384. generated with these long section names are slightly non-standard, carrying
  2385. as they do a string table, and may generate confusing output when examined
  2386. with non-GNU PE-aware tools, such as file viewers and dumpers. However,
  2387. \&\s-1GDB\s0 relies on the use of \s-1PE\s0 long section names to find Dwarf\-2 debug
  2388. information sections in an executable image at runtime, and so if neither
  2389. option is specified on the command-line, \fBld\fR will enable long
  2390. section names, overriding the default and technically correct behaviour,
  2391. when it finds the presence of debug information while linking an executable
  2392. image and not stripping symbols.
  2393. [This option is valid for all \s-1PE\s0 targeted ports of the linker]
  2394. .IP "\fB\-\-enable\-stdcall\-fixup\fR" 4
  2395. .IX Item "--enable-stdcall-fixup"
  2396. .PD 0
  2397. .IP "\fB\-\-disable\-stdcall\-fixup\fR" 4
  2398. .IX Item "--disable-stdcall-fixup"
  2399. .PD
  2400. If the link finds a symbol that it cannot resolve, it will attempt to
  2401. do \*(L"fuzzy linking\*(R" by looking for another defined symbol that differs
  2402. only in the format of the symbol name (cdecl vs stdcall) and will
  2403. resolve that symbol by linking to the match. For example, the
  2404. undefined symbol \f(CW\*(C`_foo\*(C'\fR might be linked to the function
  2405. \&\f(CW\*(C`_foo@12\*(C'\fR, or the undefined symbol \f(CW\*(C`_bar@16\*(C'\fR might be linked
  2406. to the function \f(CW\*(C`_bar\*(C'\fR. When the linker does this, it prints a
  2407. warning, since it normally should have failed to link, but sometimes
  2408. import libraries generated from third-party dlls may need this feature
  2409. to be usable. If you specify \fB\-\-enable\-stdcall\-fixup\fR, this
  2410. feature is fully enabled and warnings are not printed. If you specify
  2411. \&\fB\-\-disable\-stdcall\-fixup\fR, this feature is disabled and such
  2412. mismatches are considered to be errors.
  2413. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2414. .IP "\fB\-\-leading\-underscore\fR" 4
  2415. .IX Item "--leading-underscore"
  2416. .PD 0
  2417. .IP "\fB\-\-no\-leading\-underscore\fR" 4
  2418. .IX Item "--no-leading-underscore"
  2419. .PD
  2420. For most targets default symbol-prefix is an underscore and is defined
  2421. in target's description. By this option it is possible to
  2422. disable/enable the default underscore symbol-prefix.
  2423. .IP "\fB\-\-export\-all\-symbols\fR" 4
  2424. .IX Item "--export-all-symbols"
  2425. If given, all global symbols in the objects used to build a \s-1DLL\s0 will
  2426. be exported by the \s-1DLL.\s0 Note that this is the default if there
  2427. otherwise wouldn't be any exported symbols. When symbols are
  2428. explicitly exported via \s-1DEF\s0 files or implicitly exported via function
  2429. attributes, the default is to not export anything else unless this
  2430. option is given. Note that the symbols \f(CW\*(C`DllMain@12\*(C'\fR,
  2431. \&\f(CW\*(C`DllEntryPoint@0\*(C'\fR, \f(CW\*(C`DllMainCRTStartup@12\*(C'\fR, and
  2432. \&\f(CW\*(C`impure_ptr\*(C'\fR will not be automatically
  2433. exported. Also, symbols imported from other DLLs will not be
  2434. re-exported, nor will symbols specifying the \s-1DLL\s0's internal layout
  2435. such as those beginning with \f(CW\*(C`_head_\*(C'\fR or ending with
  2436. \&\f(CW\*(C`_iname\*(C'\fR. In addition, no symbols from \f(CW\*(C`libgcc\*(C'\fR,
  2437. \&\f(CW\*(C`libstd++\*(C'\fR, \f(CW\*(C`libmingw32\*(C'\fR, or \f(CW\*(C`crtX.o\*(C'\fR will be exported.
  2438. Symbols whose names begin with \f(CW\*(C`_\|_rtti_\*(C'\fR or \f(CW\*(C`_\|_builtin_\*(C'\fR will
  2439. not be exported, to help with \*(C+ DLLs. Finally, there is an
  2440. extensive list of cygwin-private symbols that are not exported
  2441. (obviously, this applies on when building DLLs for cygwin targets).
  2442. These cygwin-excludes are: \f(CW\*(C`_cygwin_dll_entry@12\*(C'\fR,
  2443. \&\f(CW\*(C`_cygwin_crt0_common@8\*(C'\fR, \f(CW\*(C`_cygwin_noncygwin_dll_entry@12\*(C'\fR,
  2444. \&\f(CW\*(C`_fmode\*(C'\fR, \f(CW\*(C`_impure_ptr\*(C'\fR, \f(CW\*(C`cygwin_attach_dll\*(C'\fR,
  2445. \&\f(CW\*(C`cygwin_premain0\*(C'\fR, \f(CW\*(C`cygwin_premain1\*(C'\fR, \f(CW\*(C`cygwin_premain2\*(C'\fR,
  2446. \&\f(CW\*(C`cygwin_premain3\*(C'\fR, and \f(CW\*(C`environ\*(C'\fR.
  2447. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2448. .IP "\fB\-\-exclude\-symbols\fR \fIsymbol\fR\fB,\fR\fIsymbol\fR\fB,...\fR" 4
  2449. .IX Item "--exclude-symbols symbol,symbol,..."
  2450. Specifies a list of symbols which should not be automatically
  2451. exported. The symbol names may be delimited by commas or colons.
  2452. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2453. .IP "\fB\-\-exclude\-all\-symbols\fR" 4
  2454. .IX Item "--exclude-all-symbols"
  2455. Specifies no symbols should be automatically exported.
  2456. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2457. .IP "\fB\-\-file\-alignment\fR" 4
  2458. .IX Item "--file-alignment"
  2459. Specify the file alignment. Sections in the file will always begin at
  2460. file offsets which are multiples of this number. This defaults to
  2461. 512.
  2462. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2463. .IP "\fB\-\-heap\fR \fIreserve\fR" 4
  2464. .IX Item "--heap reserve"
  2465. .PD 0
  2466. .IP "\fB\-\-heap\fR \fIreserve\fR\fB,\fR\fIcommit\fR" 4
  2467. .IX Item "--heap reserve,commit"
  2468. .PD
  2469. Specify the number of bytes of memory to reserve (and optionally commit)
  2470. to be used as heap for this program. The default is 1MB reserved, 4K
  2471. committed.
  2472. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2473. .IP "\fB\-\-image\-base\fR \fIvalue\fR" 4
  2474. .IX Item "--image-base value"
  2475. Use \fIvalue\fR as the base address of your program or dll. This is
  2476. the lowest memory location that will be used when your program or dll
  2477. is loaded. To reduce the need to relocate and improve performance of
  2478. your dlls, each should have a unique base address and not overlap any
  2479. other dlls. The default is 0x400000 for executables, and 0x10000000
  2480. for dlls.
  2481. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2482. .IP "\fB\-\-kill\-at\fR" 4
  2483. .IX Item "--kill-at"
  2484. If given, the stdcall suffixes (@\fInn\fR) will be stripped from
  2485. symbols before they are exported.
  2486. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2487. .IP "\fB\-\-large\-address\-aware\fR" 4
  2488. .IX Item "--large-address-aware"
  2489. If given, the appropriate bit in the \*(L"Characteristics\*(R" field of the \s-1COFF\s0
  2490. header is set to indicate that this executable supports virtual addresses
  2491. greater than 2 gigabytes. This should be used in conjunction with the /3GB
  2492. or /USERVA=\fIvalue\fR megabytes switch in the \*(L"[operating systems]\*(R"
  2493. section of the \s-1BOOT.INI.\s0 Otherwise, this bit has no effect.
  2494. [This option is specific to \s-1PE\s0 targeted ports of the linker]
  2495. .IP "\fB\-\-disable\-large\-address\-aware\fR" 4
  2496. .IX Item "--disable-large-address-aware"
  2497. Reverts the effect of a previous \fB\-\-large\-address\-aware\fR option.
  2498. This is useful if \fB\-\-large\-address\-aware\fR is always set by the compiler
  2499. driver (e.g. Cygwin gcc) and the executable does not support virtual
  2500. addresses greater than 2 gigabytes.
  2501. [This option is specific to \s-1PE\s0 targeted ports of the linker]
  2502. .IP "\fB\-\-major\-image\-version\fR \fIvalue\fR" 4
  2503. .IX Item "--major-image-version value"
  2504. Sets the major number of the \*(L"image version\*(R". Defaults to 1.
  2505. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2506. .IP "\fB\-\-major\-os\-version\fR \fIvalue\fR" 4
  2507. .IX Item "--major-os-version value"
  2508. Sets the major number of the \*(L"os version\*(R". Defaults to 4.
  2509. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2510. .IP "\fB\-\-major\-subsystem\-version\fR \fIvalue\fR" 4
  2511. .IX Item "--major-subsystem-version value"
  2512. Sets the major number of the \*(L"subsystem version\*(R". Defaults to 4.
  2513. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2514. .IP "\fB\-\-minor\-image\-version\fR \fIvalue\fR" 4
  2515. .IX Item "--minor-image-version value"
  2516. Sets the minor number of the \*(L"image version\*(R". Defaults to 0.
  2517. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2518. .IP "\fB\-\-minor\-os\-version\fR \fIvalue\fR" 4
  2519. .IX Item "--minor-os-version value"
  2520. Sets the minor number of the \*(L"os version\*(R". Defaults to 0.
  2521. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2522. .IP "\fB\-\-minor\-subsystem\-version\fR \fIvalue\fR" 4
  2523. .IX Item "--minor-subsystem-version value"
  2524. Sets the minor number of the \*(L"subsystem version\*(R". Defaults to 0.
  2525. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2526. .IP "\fB\-\-output\-def\fR \fIfile\fR" 4
  2527. .IX Item "--output-def file"
  2528. The linker will create the file \fIfile\fR which will contain a \s-1DEF\s0
  2529. file corresponding to the \s-1DLL\s0 the linker is generating. This \s-1DEF\s0 file
  2530. (which should be called \f(CW\*(C`*.def\*(C'\fR) may be used to create an import
  2531. library with \f(CW\*(C`dlltool\*(C'\fR or may be used as a reference to
  2532. automatically or implicitly exported symbols.
  2533. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2534. .IP "\fB\-\-enable\-auto\-image\-base\fR" 4
  2535. .IX Item "--enable-auto-image-base"
  2536. .PD 0
  2537. .IP "\fB\-\-enable\-auto\-image\-base=\fR\fIvalue\fR" 4
  2538. .IX Item "--enable-auto-image-base=value"
  2539. .PD
  2540. Automatically choose the image base for DLLs, optionally starting with base
  2541. \&\fIvalue\fR, unless one is specified using the \f(CW\*(C`\-\-image\-base\*(C'\fR argument.
  2542. By using a hash generated from the dllname to create unique image bases
  2543. for each \s-1DLL,\s0 in-memory collisions and relocations which can delay program
  2544. execution are avoided.
  2545. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2546. .IP "\fB\-\-disable\-auto\-image\-base\fR" 4
  2547. .IX Item "--disable-auto-image-base"
  2548. Do not automatically generate a unique image base. If there is no
  2549. user-specified image base (\f(CW\*(C`\-\-image\-base\*(C'\fR) then use the platform
  2550. default.
  2551. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2552. .IP "\fB\-\-dll\-search\-prefix\fR \fIstring\fR" 4
  2553. .IX Item "--dll-search-prefix string"
  2554. When linking dynamically to a dll without an import library,
  2555. search for \f(CW\*(C`<string><basename>.dll\*(C'\fR in preference to
  2556. \&\f(CW\*(C`lib<basename>.dll\*(C'\fR. This behaviour allows easy distinction
  2557. between DLLs built for the various \*(L"subplatforms\*(R": native, cygwin,
  2558. uwin, pw, etc. For instance, cygwin DLLs typically use
  2559. \&\f(CW\*(C`\-\-dll\-search\-prefix=cyg\*(C'\fR.
  2560. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2561. .IP "\fB\-\-enable\-auto\-import\fR" 4
  2562. .IX Item "--enable-auto-import"
  2563. Do sophisticated linking of \f(CW\*(C`_symbol\*(C'\fR to \f(CW\*(C`_\|_imp_\|_symbol\*(C'\fR for
  2564. \&\s-1DATA\s0 imports from DLLs, thus making it possible to bypass the dllimport
  2565. mechanism on the user side and to reference unmangled symbol names.
  2566. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2567. .Sp
  2568. The following remarks pertain to the original implementation of the
  2569. feature and are obsolete nowadays for Cygwin and MinGW targets.
  2570. .Sp
  2571. Note: Use of the 'auto\-import' extension will cause the text section
  2572. of the image file to be made writable. This does not conform to the
  2573. PE-COFF format specification published by Microsoft.
  2574. .Sp
  2575. Note \- use of the 'auto\-import' extension will also cause read only
  2576. data which would normally be placed into the .rdata section to be
  2577. placed into the .data section instead. This is in order to work
  2578. around a problem with consts that is described here:
  2579. http://www.cygwin.com/ml/cygwin/2004\-09/msg01101.html
  2580. .Sp
  2581. Using 'auto\-import' generally will 'just work' \*(-- but sometimes you may
  2582. see this message:
  2583. .Sp
  2584. "variable '<var>' can't be auto-imported. Please read the
  2585. documentation for ld's \f(CW\*(C`\-\-enable\-auto\-import\*(C'\fR for details."
  2586. .Sp
  2587. This message occurs when some (sub)expression accesses an address
  2588. ultimately given by the sum of two constants (Win32 import tables only
  2589. allow one). Instances where this may occur include accesses to member
  2590. fields of struct variables imported from a \s-1DLL,\s0 as well as using a
  2591. constant index into an array variable imported from a \s-1DLL.\s0 Any
  2592. multiword variable (arrays, structs, long long, etc) may trigger
  2593. this error condition. However, regardless of the exact data type
  2594. of the offending exported variable, ld will always detect it, issue
  2595. the warning, and exit.
  2596. .Sp
  2597. There are several ways to address this difficulty, regardless of the
  2598. data type of the exported variable:
  2599. .Sp
  2600. One way is to use \-\-enable\-runtime\-pseudo\-reloc switch. This leaves the task
  2601. of adjusting references in your client code for runtime environment, so
  2602. this method works only when runtime environment supports this feature.
  2603. .Sp
  2604. A second solution is to force one of the 'constants' to be a variable \*(--
  2605. that is, unknown and un-optimizable at compile time. For arrays,
  2606. there are two possibilities: a) make the indexee (the array's address)
  2607. a variable, or b) make the 'constant' index a variable. Thus:
  2608. .Sp
  2609. .Vb 3
  2610. \& extern type extern_array[];
  2611. \& extern_array[1] \-\->
  2612. \& { volatile type *t=extern_array; t[1] }
  2613. .Ve
  2614. .Sp
  2615. or
  2616. .Sp
  2617. .Vb 3
  2618. \& extern type extern_array[];
  2619. \& extern_array[1] \-\->
  2620. \& { volatile int t=1; extern_array[t] }
  2621. .Ve
  2622. .Sp
  2623. For structs (and most other multiword data types) the only option
  2624. is to make the struct itself (or the long long, or the ...) variable:
  2625. .Sp
  2626. .Vb 3
  2627. \& extern struct s extern_struct;
  2628. \& extern_struct.field \-\->
  2629. \& { volatile struct s *t=&extern_struct; t\->field }
  2630. .Ve
  2631. .Sp
  2632. or
  2633. .Sp
  2634. .Vb 3
  2635. \& extern long long extern_ll;
  2636. \& extern_ll \-\->
  2637. \& { volatile long long * local_ll=&extern_ll; *local_ll }
  2638. .Ve
  2639. .Sp
  2640. A third method of dealing with this difficulty is to abandon
  2641. \&'auto\-import' for the offending symbol and mark it with
  2642. \&\f(CW\*(C`_\|_declspec(dllimport)\*(C'\fR. However, in practice that
  2643. requires using compile-time #defines to indicate whether you are
  2644. building a \s-1DLL,\s0 building client code that will link to the \s-1DLL,\s0 or
  2645. merely building/linking to a static library. In making the choice
  2646. between the various methods of resolving the 'direct address with
  2647. constant offset' problem, you should consider typical real-world usage:
  2648. .Sp
  2649. Original:
  2650. .Sp
  2651. .Vb 7
  2652. \& \-\-foo.h
  2653. \& extern int arr[];
  2654. \& \-\-foo.c
  2655. \& #include "foo.h"
  2656. \& void main(int argc, char **argv){
  2657. \& printf("%d\en",arr[1]);
  2658. \& }
  2659. .Ve
  2660. .Sp
  2661. Solution 1:
  2662. .Sp
  2663. .Vb 9
  2664. \& \-\-foo.h
  2665. \& extern int arr[];
  2666. \& \-\-foo.c
  2667. \& #include "foo.h"
  2668. \& void main(int argc, char **argv){
  2669. \& /* This workaround is for win32 and cygwin; do not "optimize" */
  2670. \& volatile int *parr = arr;
  2671. \& printf("%d\en",parr[1]);
  2672. \& }
  2673. .Ve
  2674. .Sp
  2675. Solution 2:
  2676. .Sp
  2677. .Vb 10
  2678. \& \-\-foo.h
  2679. \& /* Note: auto\-export is assumed (no _\|_declspec(dllexport)) */
  2680. \& #if (defined(_WIN32) || defined(_\|_CYGWIN_\|_)) && \e
  2681. \& !(defined(FOO_BUILD_DLL) || defined(FOO_STATIC))
  2682. \& #define FOO_IMPORT _\|_declspec(dllimport)
  2683. \& #else
  2684. \& #define FOO_IMPORT
  2685. \& #endif
  2686. \& extern FOO_IMPORT int arr[];
  2687. \& \-\-foo.c
  2688. \& #include "foo.h"
  2689. \& void main(int argc, char **argv){
  2690. \& printf("%d\en",arr[1]);
  2691. \& }
  2692. .Ve
  2693. .Sp
  2694. A fourth way to avoid this problem is to re-code your
  2695. library to use a functional interface rather than a data interface
  2696. for the offending variables (e.g. \fBset_foo()\fR and \fBget_foo()\fR accessor
  2697. functions).
  2698. .IP "\fB\-\-disable\-auto\-import\fR" 4
  2699. .IX Item "--disable-auto-import"
  2700. Do not attempt to do sophisticated linking of \f(CW\*(C`_symbol\*(C'\fR to
  2701. \&\f(CW\*(C`_\|_imp_\|_symbol\*(C'\fR for \s-1DATA\s0 imports from DLLs.
  2702. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2703. .IP "\fB\-\-enable\-runtime\-pseudo\-reloc\fR" 4
  2704. .IX Item "--enable-runtime-pseudo-reloc"
  2705. If your code contains expressions described in \-\-enable\-auto\-import section,
  2706. that is, \s-1DATA\s0 imports from \s-1DLL\s0 with non-zero offset, this switch will create
  2707. a vector of 'runtime pseudo relocations' which can be used by runtime
  2708. environment to adjust references to such data in your client code.
  2709. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2710. .IP "\fB\-\-disable\-runtime\-pseudo\-reloc\fR" 4
  2711. .IX Item "--disable-runtime-pseudo-reloc"
  2712. Do not create pseudo relocations for non-zero offset \s-1DATA\s0 imports from DLLs.
  2713. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2714. .IP "\fB\-\-enable\-extra\-pe\-debug\fR" 4
  2715. .IX Item "--enable-extra-pe-debug"
  2716. Show additional debug info related to auto-import symbol thunking.
  2717. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2718. .IP "\fB\-\-section\-alignment\fR" 4
  2719. .IX Item "--section-alignment"
  2720. Sets the section alignment. Sections in memory will always begin at
  2721. addresses which are a multiple of this number. Defaults to 0x1000.
  2722. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2723. .IP "\fB\-\-stack\fR \fIreserve\fR" 4
  2724. .IX Item "--stack reserve"
  2725. .PD 0
  2726. .IP "\fB\-\-stack\fR \fIreserve\fR\fB,\fR\fIcommit\fR" 4
  2727. .IX Item "--stack reserve,commit"
  2728. .PD
  2729. Specify the number of bytes of memory to reserve (and optionally commit)
  2730. to be used as stack for this program. The default is 2MB reserved, 4K
  2731. committed.
  2732. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2733. .IP "\fB\-\-subsystem\fR \fIwhich\fR" 4
  2734. .IX Item "--subsystem which"
  2735. .PD 0
  2736. .IP "\fB\-\-subsystem\fR \fIwhich\fR\fB:\fR\fImajor\fR" 4
  2737. .IX Item "--subsystem which:major"
  2738. .IP "\fB\-\-subsystem\fR \fIwhich\fR\fB:\fR\fImajor\fR\fB.\fR\fIminor\fR" 4
  2739. .IX Item "--subsystem which:major.minor"
  2740. .PD
  2741. Specifies the subsystem under which your program will execute. The
  2742. legal values for \fIwhich\fR are \f(CW\*(C`native\*(C'\fR, \f(CW\*(C`windows\*(C'\fR,
  2743. \&\f(CW\*(C`console\*(C'\fR, \f(CW\*(C`posix\*(C'\fR, and \f(CW\*(C`xbox\*(C'\fR. You may optionally set
  2744. the subsystem version also. Numeric values are also accepted for
  2745. \&\fIwhich\fR.
  2746. [This option is specific to the i386 \s-1PE\s0 targeted port of the linker]
  2747. .Sp
  2748. The following options set flags in the \f(CW\*(C`DllCharacteristics\*(C'\fR field
  2749. of the \s-1PE\s0 file header:
  2750. [These options are specific to \s-1PE\s0 targeted ports of the linker]
  2751. .IP "\fB\-\-high\-entropy\-va\fR" 4
  2752. .IX Item "--high-entropy-va"
  2753. Image is compatible with 64\-bit address space layout randomization
  2754. (\s-1ASLR\s0).
  2755. This option also implies \fB\-\-dynamicbase\fR and
  2756. \&\fB\-\-enable\-reloc\-section\fR.
  2757. .IP "\fB\-\-dynamicbase\fR" 4
  2758. .IX Item "--dynamicbase"
  2759. The image base address may be relocated using address space layout
  2760. randomization (\s-1ASLR\s0). This feature was introduced with \s-1MS\s0 Windows
  2761. Vista for i386 \s-1PE\s0 targets.
  2762. This option also implies \fB\-\-enable\-reloc\-section\fR.
  2763. .IP "\fB\-\-forceinteg\fR" 4
  2764. .IX Item "--forceinteg"
  2765. Code integrity checks are enforced.
  2766. .IP "\fB\-\-nxcompat\fR" 4
  2767. .IX Item "--nxcompat"
  2768. The image is compatible with the Data Execution Prevention.
  2769. This feature was introduced with \s-1MS\s0 Windows \s-1XP SP2\s0 for i386 \s-1PE\s0 targets.
  2770. .IP "\fB\-\-no\-isolation\fR" 4
  2771. .IX Item "--no-isolation"
  2772. Although the image understands isolation, do not isolate the image.
  2773. .IP "\fB\-\-no\-seh\fR" 4
  2774. .IX Item "--no-seh"
  2775. The image does not use \s-1SEH.\s0 No \s-1SE\s0 handler may be called from
  2776. this image.
  2777. .IP "\fB\-\-no\-bind\fR" 4
  2778. .IX Item "--no-bind"
  2779. Do not bind this image.
  2780. .IP "\fB\-\-wdmdriver\fR" 4
  2781. .IX Item "--wdmdriver"
  2782. The driver uses the \s-1MS\s0 Windows Driver Model.
  2783. .IP "\fB\-\-tsaware\fR" 4
  2784. .IX Item "--tsaware"
  2785. The image is Terminal Server aware.
  2786. .IP "\fB\-\-insert\-timestamp\fR" 4
  2787. .IX Item "--insert-timestamp"
  2788. .PD 0
  2789. .IP "\fB\-\-no\-insert\-timestamp\fR" 4
  2790. .IX Item "--no-insert-timestamp"
  2791. .PD
  2792. Insert a real timestamp into the image. This is the default behaviour
  2793. as it matches legacy code and it means that the image will work with
  2794. other, proprietary tools. The problem with this default is that it
  2795. will result in slightly different images being produced each time the
  2796. same sources are linked. The option \fB\-\-no\-insert\-timestamp\fR
  2797. can be used to insert a zero value for the timestamp, this ensuring
  2798. that binaries produced from identical sources will compare
  2799. identically.
  2800. .IP "\fB\-\-enable\-reloc\-section\fR" 4
  2801. .IX Item "--enable-reloc-section"
  2802. Create the base relocation table, which is necessary if the image
  2803. is loaded at a different image base than specified in the \s-1PE\s0 header.
  2804. .PP
  2805. The C6X uClinux target uses a binary format called \s-1DSBT\s0 to support shared
  2806. libraries. Each shared library in the system needs to have a unique index;
  2807. all executables use an index of 0.
  2808. .IP "\fB\-\-dsbt\-size\fR \fIsize\fR" 4
  2809. .IX Item "--dsbt-size size"
  2810. This option sets the number of entries in the \s-1DSBT\s0 of the current executable
  2811. or shared library to \fIsize\fR. The default is to create a table with 64
  2812. entries.
  2813. .IP "\fB\-\-dsbt\-index\fR \fIindex\fR" 4
  2814. .IX Item "--dsbt-index index"
  2815. This option sets the \s-1DSBT\s0 index of the current executable or shared library
  2816. to \fIindex\fR. The default is 0, which is appropriate for generating
  2817. executables. If a shared library is generated with a \s-1DSBT\s0 index of 0, the
  2818. \&\f(CW\*(C`R_C6000_DSBT_INDEX\*(C'\fR relocs are copied into the output file.
  2819. .Sp
  2820. The \fB\-\-no\-merge\-exidx\-entries\fR switch disables the merging of adjacent
  2821. exidx entries in frame unwind info.
  2822. .IP "\fB\-\-branch\-stub\fR" 4
  2823. .IX Item "--branch-stub"
  2824. This option enables linker branch relaxation by inserting branch stub
  2825. sections when needed to extend the range of branches. This option is
  2826. usually not required since C\-SKY supports branch and call instructions that
  2827. can access the full memory range and branch relaxation is normally handled by
  2828. the compiler or assembler.
  2829. .IP "\fB\-\-stub\-group\-size=\fR\fIN\fR" 4
  2830. .IX Item "--stub-group-size=N"
  2831. This option allows finer control of linker branch stub creation.
  2832. It sets the maximum size of a group of input sections that can
  2833. be handled by one stub section. A negative value of \fIN\fR locates
  2834. stub sections after their branches, while a positive value allows stub
  2835. sections to appear either before or after the branches. Values of
  2836. \&\fB1\fR or \fB\-1\fR indicate that the
  2837. linker should choose suitable defaults.
  2838. .PP
  2839. The 68HC11 and 68HC12 linkers support specific options to control the
  2840. memory bank switching mapping and trampoline code generation.
  2841. .IP "\fB\-\-no\-trampoline\fR" 4
  2842. .IX Item "--no-trampoline"
  2843. This option disables the generation of trampoline. By default a trampoline
  2844. is generated for each far function which is called using a \f(CW\*(C`jsr\*(C'\fR
  2845. instruction (this happens when a pointer to a far function is taken).
  2846. .IP "\fB\-\-bank\-window\fR \fIname\fR" 4
  2847. .IX Item "--bank-window name"
  2848. This option indicates to the linker the name of the memory region in
  2849. the \fB\s-1MEMORY\s0\fR specification that describes the memory bank window.
  2850. The definition of such region is then used by the linker to compute
  2851. paging and addresses within the memory window.
  2852. .PP
  2853. The following options are supported to control handling of \s-1GOT\s0 generation
  2854. when linking for 68K targets.
  2855. .IP "\fB\-\-got=\fR\fItype\fR" 4
  2856. .IX Item "--got=type"
  2857. This option tells the linker which \s-1GOT\s0 generation scheme to use.
  2858. \&\fItype\fR should be one of \fBsingle\fR, \fBnegative\fR,
  2859. \&\fBmultigot\fR or \fBtarget\fR. For more information refer to the
  2860. Info entry for \fIld\fR.
  2861. .PP
  2862. The following options are supported to control microMIPS instruction
  2863. generation and branch relocation checks for \s-1ISA\s0 mode transitions when
  2864. linking for \s-1MIPS\s0 targets.
  2865. .IP "\fB\-\-insn32\fR" 4
  2866. .IX Item "--insn32"
  2867. .PD 0
  2868. .IP "\fB\-\-no\-insn32\fR" 4
  2869. .IX Item "--no-insn32"
  2870. .PD
  2871. These options control the choice of microMIPS instructions used in code
  2872. generated by the linker, such as that in the \s-1PLT\s0 or lazy binding stubs,
  2873. or in relaxation. If \fB\-\-insn32\fR is used, then the linker only uses
  2874. 32\-bit instruction encodings. By default or if \fB\-\-no\-insn32\fR is
  2875. used, all instruction encodings are used, including 16\-bit ones where
  2876. possible.
  2877. .IP "\fB\-\-ignore\-branch\-isa\fR" 4
  2878. .IX Item "--ignore-branch-isa"
  2879. .PD 0
  2880. .IP "\fB\-\-no\-ignore\-branch\-isa\fR" 4
  2881. .IX Item "--no-ignore-branch-isa"
  2882. .PD
  2883. These options control branch relocation checks for invalid \s-1ISA\s0 mode
  2884. transitions. If \fB\-\-ignore\-branch\-isa\fR is used, then the linker
  2885. accepts any branch relocations and any \s-1ISA\s0 mode transition required
  2886. is lost in relocation calculation, except for some cases of \f(CW\*(C`BAL\*(C'\fR
  2887. instructions which meet relaxation conditions and are converted to
  2888. equivalent \f(CW\*(C`JALX\*(C'\fR instructions as the associated relocation is
  2889. calculated. By default or if \fB\-\-no\-ignore\-branch\-isa\fR is used
  2890. a check is made causing the loss of an \s-1ISA\s0 mode transition to produce
  2891. an error.
  2892. .IP "\fB\-\-compact\-branches\fR" 4
  2893. .IX Item "--compact-branches"
  2894. .PD 0
  2895. .IP "\fB\-\-compact\-branches\fR" 4
  2896. .IX Item "--compact-branches"
  2897. .PD
  2898. These options control the generation of compact instructions by the linker
  2899. in the \s-1PLT\s0 entries for \s-1MIPS R6.\s0
  2900. .SH "ENVIRONMENT"
  2901. .IX Header "ENVIRONMENT"
  2902. You can change the behaviour of \fBld\fR with the environment variables
  2903. \&\f(CW\*(C`GNUTARGET\*(C'\fR,
  2904. \&\f(CW\*(C`LDEMULATION\*(C'\fR and \f(CW\*(C`COLLECT_NO_DEMANGLE\*(C'\fR.
  2905. .PP
  2906. \&\f(CW\*(C`GNUTARGET\*(C'\fR determines the input-file object format if you don't
  2907. use \fB\-b\fR (or its synonym \fB\-\-format\fR). Its value should be one
  2908. of the \s-1BFD\s0 names for an input format. If there is no
  2909. \&\f(CW\*(C`GNUTARGET\*(C'\fR in the environment, \fBld\fR uses the natural format
  2910. of the target. If \f(CW\*(C`GNUTARGET\*(C'\fR is set to \f(CW\*(C`default\*(C'\fR then \s-1BFD\s0
  2911. attempts to discover the input format by examining binary input files;
  2912. this method often succeeds, but there are potential ambiguities, since
  2913. there is no method of ensuring that the magic number used to specify
  2914. object-file formats is unique. However, the configuration procedure for
  2915. \&\s-1BFD\s0 on each system places the conventional format for that system first
  2916. in the search-list, so ambiguities are resolved in favor of convention.
  2917. .PP
  2918. \&\f(CW\*(C`LDEMULATION\*(C'\fR determines the default emulation if you don't use the
  2919. \&\fB\-m\fR option. The emulation can affect various aspects of linker
  2920. behaviour, particularly the default linker script. You can list the
  2921. available emulations with the \fB\-\-verbose\fR or \fB\-V\fR options. If
  2922. the \fB\-m\fR option is not used, and the \f(CW\*(C`LDEMULATION\*(C'\fR environment
  2923. variable is not defined, the default emulation depends upon how the
  2924. linker was configured.
  2925. .PP
  2926. Normally, the linker will default to demangling symbols. However, if
  2927. \&\f(CW\*(C`COLLECT_NO_DEMANGLE\*(C'\fR is set in the environment, then it will
  2928. default to not demangling symbols. This environment variable is used in
  2929. a similar fashion by the \f(CW\*(C`gcc\*(C'\fR linker wrapper program. The default
  2930. may be overridden by the \fB\-\-demangle\fR and \fB\-\-no\-demangle\fR
  2931. options.
  2932. .SH "SEE ALSO"
  2933. .IX Header "SEE ALSO"
  2934. \&\fBar\fR\|(1), \fBnm\fR\|(1), \fBobjcopy\fR\|(1), \fBobjdump\fR\|(1), \fBreadelf\fR\|(1) and
  2935. the Info entries for \fIbinutils\fR and
  2936. \&\fIld\fR.
  2937. .SH "COPYRIGHT"
  2938. .IX Header "COPYRIGHT"
  2939. Copyright (c) 1991\-2020 Free Software Foundation, Inc.
  2940. .PP
  2941. Permission is granted to copy, distribute and/or modify this document
  2942. under the terms of the \s-1GNU\s0 Free Documentation License, Version 1.3
  2943. or any later version published by the Free Software Foundation;
  2944. with no Invariant Sections, with no Front-Cover Texts, and with no
  2945. Back-Cover Texts. A copy of the license is included in the
  2946. section entitled \*(L"\s-1GNU\s0 Free Documentation License\*(R".