binutils.info 227 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652
  1. This is binutils.info, produced by makeinfo version 6.6 from
  2. binutils.texi.
  3. Copyright (C) 1991-2019 Free Software Foundation, Inc.
  4. Permission is granted to copy, distribute and/or modify this document
  5. under the terms of the GNU Free Documentation License, Version 1.3 or
  6. any later version published by the Free Software Foundation; with no
  7. Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
  8. Texts. A copy of the license is included in the section entitled "GNU
  9. Free Documentation License".
  10. INFO-DIR-SECTION Software development
  11. START-INFO-DIR-ENTRY
  12. * Binutils: (binutils). The GNU binary utilities.
  13. END-INFO-DIR-ENTRY
  14. INFO-DIR-SECTION Individual utilities
  15. START-INFO-DIR-ENTRY
  16. * addr2line: (binutils)addr2line. Convert addresses to file and line.
  17. * ar: (binutils)ar. Create, modify, and extract from archives.
  18. * c++filt: (binutils)c++filt. Filter to demangle encoded C++ symbols.
  19. * cxxfilt: (binutils)c++filt. MS-DOS name for c++filt.
  20. * dlltool: (binutils)dlltool. Create files needed to build and use DLLs.
  21. * nm: (binutils)nm. List symbols from object files.
  22. * objcopy: (binutils)objcopy. Copy and translate object files.
  23. * objdump: (binutils)objdump. Display information from object files.
  24. * ranlib: (binutils)ranlib. Generate index to archive contents.
  25. * readelf: (binutils)readelf. Display the contents of ELF format files.
  26. * size: (binutils)size. List section sizes and total size.
  27. * strings: (binutils)strings. List printable strings from files.
  28. * strip: (binutils)strip. Discard symbols.
  29. * elfedit: (binutils)elfedit. Update ELF header and property of ELF files.
  30. * windmc: (binutils)windmc. Generator for Windows message resources.
  31. * windres: (binutils)windres. Manipulate Windows resources.
  32. END-INFO-DIR-ENTRY
  33. 
  34. File: binutils.info, Node: Top, Next: ar, Up: (dir)
  35. Introduction
  36. ************
  37. This brief manual contains documentation for the GNU binary utilities
  38. (xPack GNU Arm Embedded GCC\x2C 64-bit) version 2.33.1:
  39. This document is distributed under the terms of the GNU Free
  40. Documentation License version 1.3. A copy of the license is included in
  41. the section entitled "GNU Free Documentation License".
  42. * Menu:
  43. * ar:: Create, modify, and extract from archives
  44. * nm:: List symbols from object files
  45. * objcopy:: Copy and translate object files
  46. * objdump:: Display information from object files
  47. * ranlib:: Generate index to archive contents
  48. * size:: List section sizes and total size
  49. * strings:: List printable strings from files
  50. * strip:: Discard symbols
  51. * c++filt:: Filter to demangle encoded C++ symbols
  52. * cxxfilt: c++filt. MS-DOS name for c++filt
  53. * addr2line:: Convert addresses to file and line
  54. * windmc:: Generator for Windows message resources
  55. * windres:: Manipulate Windows resources
  56. * dlltool:: Create files needed to build and use DLLs
  57. * readelf:: Display the contents of ELF format files
  58. * elfedit:: Update ELF header and property of ELF files
  59. * Common Options:: Command-line options for all utilities
  60. * Selecting the Target System:: How these utilities determine the target
  61. * Reporting Bugs:: Reporting Bugs
  62. * GNU Free Documentation License:: GNU Free Documentation License
  63. * Binutils Index:: Binutils Index
  64. 
  65. File: binutils.info, Node: ar, Next: nm, Prev: Top, Up: Top
  66. 1 ar
  67. ****
  68. ar [-]P[MOD] [--plugin NAME] [--target BFDNAME] [RELPOS] [COUNT] ARCHIVE [MEMBER...]
  69. ar -M [ <mri-script ]
  70. The GNU 'ar' program creates, modifies, and extracts from archives.
  71. An "archive" is a single file holding a collection of other files in a
  72. structure that makes it possible to retrieve the original individual
  73. files (called "members" of the archive).
  74. The original files' contents, mode (permissions), timestamp, owner,
  75. and group are preserved in the archive, and can be restored on
  76. extraction.
  77. GNU 'ar' can maintain archives whose members have names of any
  78. length; however, depending on how 'ar' is configured on your system, a
  79. limit on member-name length may be imposed for compatibility with
  80. archive formats maintained with other tools. If it exists, the limit is
  81. often 15 characters (typical of formats related to a.out) or 16
  82. characters (typical of formats related to coff).
  83. 'ar' is considered a binary utility because archives of this sort are
  84. most often used as "libraries" holding commonly needed subroutines.
  85. 'ar' creates an index to the symbols defined in relocatable object
  86. modules in the archive when you specify the modifier 's'. Once created,
  87. this index is updated in the archive whenever 'ar' makes a change to its
  88. contents (save for the 'q' update operation). An archive with such an
  89. index speeds up linking to the library, and allows routines in the
  90. library to call each other without regard to their placement in the
  91. archive.
  92. You may use 'nm -s' or 'nm --print-armap' to list this index table.
  93. If an archive lacks the table, another form of 'ar' called 'ranlib' can
  94. be used to add just the table.
  95. GNU 'ar' can optionally create a _thin_ archive, which contains a
  96. symbol index and references to the original copies of the member files
  97. of the archive. This is useful for building libraries for use within a
  98. local build tree, where the relocatable objects are expected to remain
  99. available, and copying the contents of each object would only waste time
  100. and space.
  101. An archive can either be _thin_ or it can be normal. It cannot be
  102. both at the same time. Once an archive is created its format cannot be
  103. changed without first deleting it and then creating a new archive in its
  104. place.
  105. Thin archives are also _flattened_, so that adding one thin archive
  106. to another thin archive does not nest it, as would happen with a normal
  107. archive. Instead the elements of the first archive are added
  108. individually to the second archive.
  109. The paths to the elements of the archive are stored relative to the
  110. archive itself.
  111. GNU 'ar' is designed to be compatible with two different facilities.
  112. You can control its activity using command-line options, like the
  113. different varieties of 'ar' on Unix systems; or, if you specify the
  114. single command-line option '-M', you can control it with a script
  115. supplied via standard input, like the MRI "librarian" program.
  116. * Menu:
  117. * ar cmdline:: Controlling 'ar' on the command line
  118. * ar scripts:: Controlling 'ar' with a script
  119. 
  120. File: binutils.info, Node: ar cmdline, Next: ar scripts, Up: ar
  121. 1.1 Controlling 'ar' on the Command Line
  122. ========================================
  123. ar [-X32_64] [-]P[MOD] [--plugin NAME] [--target BFDNAME] [RELPOS] [COUNT] ARCHIVE [MEMBER...]
  124. When you use 'ar' in the Unix style, 'ar' insists on at least two
  125. arguments to execute: one keyletter specifying the _operation_
  126. (optionally accompanied by other keyletters specifying _modifiers_), and
  127. the archive name to act on.
  128. Most operations can also accept further MEMBER arguments, specifying
  129. particular files to operate on.
  130. GNU 'ar' allows you to mix the operation code P and modifier flags
  131. MOD in any order, within the first command-line argument.
  132. If you wish, you may begin the first command-line argument with a
  133. dash.
  134. The P keyletter specifies what operation to execute; it may be any of
  135. the following, but you must specify only one of them:
  136. 'd'
  137. _Delete_ modules from the archive. Specify the names of modules to
  138. be deleted as MEMBER...; the archive is untouched if you specify no
  139. files to delete.
  140. If you specify the 'v' modifier, 'ar' lists each module as it is
  141. deleted.
  142. 'm'
  143. Use this operation to _move_ members in an archive.
  144. The ordering of members in an archive can make a difference in how
  145. programs are linked using the library, if a symbol is defined in
  146. more than one member.
  147. If no modifiers are used with 'm', any members you name in the
  148. MEMBER arguments are moved to the _end_ of the archive; you can use
  149. the 'a', 'b', or 'i' modifiers to move them to a specified place
  150. instead.
  151. 'p'
  152. _Print_ the specified members of the archive, to the standard
  153. output file. If the 'v' modifier is specified, show the member
  154. name before copying its contents to standard output.
  155. If you specify no MEMBER arguments, all the files in the archive
  156. are printed.
  157. 'q'
  158. _Quick append_; Historically, add the files MEMBER... to the end of
  159. ARCHIVE, without checking for replacement.
  160. The modifiers 'a', 'b', and 'i' do _not_ affect this operation; new
  161. members are always placed at the end of the archive.
  162. The modifier 'v' makes 'ar' list each file as it is appended.
  163. Since the point of this operation is speed, implementations of 'ar'
  164. have the option of not updating the archive's symbol table if one
  165. exists. Too many different systems however assume that symbol
  166. tables are always up-to-date, so GNU 'ar' will rebuild the table
  167. even with a quick append.
  168. Note - GNU 'ar' treats the command 'qs' as a synonym for 'r' -
  169. replacing already existing files in the archive and appending new
  170. ones at the end.
  171. 'r'
  172. Insert the files MEMBER... into ARCHIVE (with _replacement_). This
  173. operation differs from 'q' in that any previously existing members
  174. are deleted if their names match those being added.
  175. If one of the files named in MEMBER... does not exist, 'ar'
  176. displays an error message, and leaves undisturbed any existing
  177. members of the archive matching that name.
  178. By default, new members are added at the end of the file; but you
  179. may use one of the modifiers 'a', 'b', or 'i' to request placement
  180. relative to some existing member.
  181. The modifier 'v' used with this operation elicits a line of output
  182. for each file inserted, along with one of the letters 'a' or 'r' to
  183. indicate whether the file was appended (no old member deleted) or
  184. replaced.
  185. 's'
  186. Add an index to the archive, or update it if it already exists.
  187. Note this command is an exception to the rule that there can only
  188. be one command letter, as it is possible to use it as either a
  189. command or a modifier. In either case it does the same thing.
  190. 't'
  191. Display a _table_ listing the contents of ARCHIVE, or those of the
  192. files listed in MEMBER... that are present in the archive.
  193. Normally only the member name is shown, but if the modifier 'O' is
  194. specified, then the corresponding offset of the member is also
  195. displayed. Finally, in order to see the modes (permissions),
  196. timestamp, owner, group, and size the 'v' modifier should be
  197. included.
  198. If you do not specify a MEMBER, all files in the archive are
  199. listed.
  200. If there is more than one file with the same name (say, 'fie') in
  201. an archive (say 'b.a'), 'ar t b.a fie' lists only the first
  202. instance; to see them all, you must ask for a complete listing--in
  203. our example, 'ar t b.a'.
  204. 'x'
  205. _Extract_ members (named MEMBER) from the archive. You can use the
  206. 'v' modifier with this operation, to request that 'ar' list each
  207. name as it extracts it.
  208. If you do not specify a MEMBER, all files in the archive are
  209. extracted.
  210. Files cannot be extracted from a thin archive.
  211. A number of modifiers (MOD) may immediately follow the P keyletter,
  212. to specify variations on an operation's behavior:
  213. 'a'
  214. Add new files _after_ an existing member of the archive. If you
  215. use the modifier 'a', the name of an existing archive member must
  216. be present as the RELPOS argument, before the ARCHIVE
  217. specification.
  218. 'b'
  219. Add new files _before_ an existing member of the archive. If you
  220. use the modifier 'b', the name of an existing archive member must
  221. be present as the RELPOS argument, before the ARCHIVE
  222. specification. (same as 'i').
  223. 'c'
  224. _Create_ the archive. The specified ARCHIVE is always created if
  225. it did not exist, when you request an update. But a warning is
  226. issued unless you specify in advance that you expect to create it,
  227. by using this modifier.
  228. 'D'
  229. Operate in _deterministic_ mode. When adding files and the archive
  230. index use zero for UIDs, GIDs, timestamps, and use consistent file
  231. modes for all files. When this option is used, if 'ar' is used
  232. with identical options and identical input files, multiple runs
  233. will create identical output files regardless of the input files'
  234. owners, groups, file modes, or modification times.
  235. If 'binutils' was configured with
  236. '--enable-deterministic-archives', then this mode is on by default.
  237. It can be disabled with the 'U' modifier, below.
  238. 'f'
  239. Truncate names in the archive. GNU 'ar' will normally permit file
  240. names of any length. This will cause it to create archives which
  241. are not compatible with the native 'ar' program on some systems.
  242. If this is a concern, the 'f' modifier may be used to truncate file
  243. names when putting them in the archive.
  244. 'i'
  245. Insert new files _before_ an existing member of the archive. If
  246. you use the modifier 'i', the name of an existing archive member
  247. must be present as the RELPOS argument, before the ARCHIVE
  248. specification. (same as 'b').
  249. 'l'
  250. This modifier is accepted but not used.
  251. 'N'
  252. Uses the COUNT parameter. This is used if there are multiple
  253. entries in the archive with the same name. Extract or delete
  254. instance COUNT of the given name from the archive.
  255. 'o'
  256. Preserve the _original_ dates of members when extracting them. If
  257. you do not specify this modifier, files extracted from the archive
  258. are stamped with the time of extraction.
  259. 'O'
  260. Display member offsets inside the archive. Use together with the
  261. 't' option.
  262. 'P'
  263. Use the full path name when matching names in the archive. GNU
  264. 'ar' can not create an archive with a full path name (such archives
  265. are not POSIX compliant), but other archive creators can. This
  266. option will cause GNU 'ar' to match file names using a complete
  267. path name, which can be convenient when extracting a single file
  268. from an archive created by another tool.
  269. 's'
  270. Write an object-file index into the archive, or update an existing
  271. one, even if no other change is made to the archive. You may use
  272. this modifier flag either with any operation, or alone. Running
  273. 'ar s' on an archive is equivalent to running 'ranlib' on it.
  274. 'S'
  275. Do not generate an archive symbol table. This can speed up
  276. building a large library in several steps. The resulting archive
  277. can not be used with the linker. In order to build a symbol table,
  278. you must omit the 'S' modifier on the last execution of 'ar', or
  279. you must run 'ranlib' on the archive.
  280. 'T'
  281. Make the specified ARCHIVE a _thin_ archive. If it already exists
  282. and is a regular archive, the existing members must be present in
  283. the same directory as ARCHIVE.
  284. 'u'
  285. Normally, 'ar r'... inserts all files listed into the archive. If
  286. you would like to insert _only_ those of the files you list that
  287. are newer than existing members of the same names, use this
  288. modifier. The 'u' modifier is allowed only for the operation 'r'
  289. (replace). In particular, the combination 'qu' is not allowed,
  290. since checking the timestamps would lose any speed advantage from
  291. the operation 'q'.
  292. 'U'
  293. Do _not_ operate in _deterministic_ mode. This is the inverse of
  294. the 'D' modifier, above: added files and the archive index will get
  295. their actual UID, GID, timestamp, and file mode values.
  296. This is the default unless 'binutils' was configured with
  297. '--enable-deterministic-archives'.
  298. 'v'
  299. This modifier requests the _verbose_ version of an operation. Many
  300. operations display additional information, such as filenames
  301. processed, when the modifier 'v' is appended.
  302. 'V'
  303. This modifier shows the version number of 'ar'.
  304. The 'ar' program also supports some command-line options which are
  305. neither modifiers nor actions, but which do change its behaviour in
  306. specific ways:
  307. '--help'
  308. Displays the list of command-line options supported by 'ar' and
  309. then exits.
  310. '--version'
  311. Displays the version information of 'ar' and then exits.
  312. '-X32_64'
  313. 'ar' ignores an initial option spelt '-X32_64', for compatibility
  314. with AIX. The behaviour produced by this option is the default for
  315. GNU 'ar'. 'ar' does not support any of the other '-X' options; in
  316. particular, it does not support '-X32' which is the default for AIX
  317. 'ar'.
  318. '--plugin NAME'
  319. The optional command-line switch '--plugin NAME' causes 'ar' to
  320. load the plugin called NAME which adds support for more file
  321. formats, including object files with link-time optimization
  322. information.
  323. This option is only available if the toolchain has been built with
  324. plugin support enabled.
  325. If '--plugin' is not provided, but plugin support has been enabled
  326. then 'ar' iterates over the files in '${libdir}/bfd-plugins' in
  327. alphabetic order and the first plugin that claims the object in
  328. question is used.
  329. Please note that this plugin search directory is _not_ the one used
  330. by 'ld''s '-plugin' option. In order to make 'ar' use the linker
  331. plugin it must be copied into the '${libdir}/bfd-plugins'
  332. directory. For GCC based compilations the linker plugin is called
  333. 'liblto_plugin.so.0.0.0'. For Clang based compilations it is
  334. called 'LLVMgold.so'. The GCC plugin is always backwards
  335. compatible with earlier versions, so it is sufficient to just copy
  336. the newest one.
  337. '--target TARGET'
  338. The optional command-line switch '--target BFDNAME' specifies that
  339. the archive members are in an object code format different from
  340. your system's default format. See *Note Target Selection::, for
  341. more information.
  342. 
  343. File: binutils.info, Node: ar scripts, Prev: ar cmdline, Up: ar
  344. 1.2 Controlling 'ar' with a Script
  345. ==================================
  346. ar -M [ <SCRIPT ]
  347. If you use the single command-line option '-M' with 'ar', you can
  348. control its operation with a rudimentary command language. This form of
  349. 'ar' operates interactively if standard input is coming directly from a
  350. terminal. During interactive use, 'ar' prompts for input (the prompt is
  351. 'AR >'), and continues executing even after errors. If you redirect
  352. standard input to a script file, no prompts are issued, and 'ar'
  353. abandons execution (with a nonzero exit code) on any error.
  354. The 'ar' command language is _not_ designed to be equivalent to the
  355. command-line options; in fact, it provides somewhat less control over
  356. archives. The only purpose of the command language is to ease the
  357. transition to GNU 'ar' for developers who already have scripts written
  358. for the MRI "librarian" program.
  359. The syntax for the 'ar' command language is straightforward:
  360. * commands are recognized in upper or lower case; for example, 'LIST'
  361. is the same as 'list'. In the following descriptions, commands are
  362. shown in upper case for clarity.
  363. * a single command may appear on each line; it is the first word on
  364. the line.
  365. * empty lines are allowed, and have no effect.
  366. * comments are allowed; text after either of the characters '*' or
  367. ';' is ignored.
  368. * Whenever you use a list of names as part of the argument to an 'ar'
  369. command, you can separate the individual names with either commas
  370. or blanks. Commas are shown in the explanations below, for
  371. clarity.
  372. * '+' is used as a line continuation character; if '+' appears at the
  373. end of a line, the text on the following line is considered part of
  374. the current command.
  375. Here are the commands you can use in 'ar' scripts, or when using 'ar'
  376. interactively. Three of them have special significance:
  377. 'OPEN' or 'CREATE' specify a "current archive", which is a temporary
  378. file required for most of the other commands.
  379. 'SAVE' commits the changes so far specified by the script. Prior to
  380. 'SAVE', commands affect only the temporary copy of the current archive.
  381. 'ADDLIB ARCHIVE'
  382. 'ADDLIB ARCHIVE (MODULE, MODULE, ... MODULE)'
  383. Add all the contents of ARCHIVE (or, if specified, each named
  384. MODULE from ARCHIVE) to the current archive.
  385. Requires prior use of 'OPEN' or 'CREATE'.
  386. 'ADDMOD MEMBER, MEMBER, ... MEMBER'
  387. Add each named MEMBER as a module in the current archive.
  388. Requires prior use of 'OPEN' or 'CREATE'.
  389. 'CLEAR'
  390. Discard the contents of the current archive, canceling the effect
  391. of any operations since the last 'SAVE'. May be executed (with no
  392. effect) even if no current archive is specified.
  393. 'CREATE ARCHIVE'
  394. Creates an archive, and makes it the current archive (required for
  395. many other commands). The new archive is created with a temporary
  396. name; it is not actually saved as ARCHIVE until you use 'SAVE'.
  397. You can overwrite existing archives; similarly, the contents of any
  398. existing file named ARCHIVE will not be destroyed until 'SAVE'.
  399. 'DELETE MODULE, MODULE, ... MODULE'
  400. Delete each listed MODULE from the current archive; equivalent to
  401. 'ar -d ARCHIVE MODULE ... MODULE'.
  402. Requires prior use of 'OPEN' or 'CREATE'.
  403. 'DIRECTORY ARCHIVE (MODULE, ... MODULE)'
  404. 'DIRECTORY ARCHIVE (MODULE, ... MODULE) OUTPUTFILE'
  405. List each named MODULE present in ARCHIVE. The separate command
  406. 'VERBOSE' specifies the form of the output: when verbose output is
  407. off, output is like that of 'ar -t ARCHIVE MODULE...'. When
  408. verbose output is on, the listing is like 'ar -tv ARCHIVE
  409. MODULE...'.
  410. Output normally goes to the standard output stream; however, if you
  411. specify OUTPUTFILE as a final argument, 'ar' directs the output to
  412. that file.
  413. 'END'
  414. Exit from 'ar', with a '0' exit code to indicate successful
  415. completion. This command does not save the output file; if you
  416. have changed the current archive since the last 'SAVE' command,
  417. those changes are lost.
  418. 'EXTRACT MODULE, MODULE, ... MODULE'
  419. Extract each named MODULE from the current archive, writing them
  420. into the current directory as separate files. Equivalent to 'ar -x
  421. ARCHIVE MODULE...'.
  422. Requires prior use of 'OPEN' or 'CREATE'.
  423. 'LIST'
  424. Display full contents of the current archive, in "verbose" style
  425. regardless of the state of 'VERBOSE'. The effect is like 'ar tv
  426. ARCHIVE'. (This single command is a GNU 'ar' enhancement, rather
  427. than present for MRI compatibility.)
  428. Requires prior use of 'OPEN' or 'CREATE'.
  429. 'OPEN ARCHIVE'
  430. Opens an existing archive for use as the current archive (required
  431. for many other commands). Any changes as the result of subsequent
  432. commands will not actually affect ARCHIVE until you next use
  433. 'SAVE'.
  434. 'REPLACE MODULE, MODULE, ... MODULE'
  435. In the current archive, replace each existing MODULE (named in the
  436. 'REPLACE' arguments) from files in the current working directory.
  437. To execute this command without errors, both the file, and the
  438. module in the current archive, must exist.
  439. Requires prior use of 'OPEN' or 'CREATE'.
  440. 'VERBOSE'
  441. Toggle an internal flag governing the output from 'DIRECTORY'.
  442. When the flag is on, 'DIRECTORY' output matches output from 'ar -tv
  443. '....
  444. 'SAVE'
  445. Commit your changes to the current archive, and actually save it as
  446. a file with the name specified in the last 'CREATE' or 'OPEN'
  447. command.
  448. Requires prior use of 'OPEN' or 'CREATE'.
  449. 
  450. File: binutils.info, Node: nm, Next: objcopy, Prev: ar, Up: Top
  451. 2 nm
  452. ****
  453. nm [-A|-o|--print-file-name] [-a|--debug-syms]
  454. [-B|--format=bsd] [-C|--demangle[=STYLE]]
  455. [-D|--dynamic] [-fFORMAT|--format=FORMAT]
  456. [-g|--extern-only] [-h|--help]
  457. [-l|--line-numbers] [--inlines]
  458. [-n|-v|--numeric-sort]
  459. [-P|--portability] [-p|--no-sort]
  460. [-r|--reverse-sort] [-S|--print-size]
  461. [-s|--print-armap] [-t RADIX|--radix=RADIX]
  462. [-u|--undefined-only] [-V|--version]
  463. [-X 32_64] [--defined-only] [--no-demangle]
  464. [--plugin NAME]
  465. [--no-recurse-limit|--recurse-limit]]
  466. [--size-sort] [--special-syms]
  467. [--synthetic] [--with-symbol-versions] [--target=BFDNAME]
  468. [OBJFILE...]
  469. GNU 'nm' lists the symbols from object files OBJFILE.... If no
  470. object files are listed as arguments, 'nm' assumes the file 'a.out'.
  471. For each symbol, 'nm' shows:
  472. * The symbol value, in the radix selected by options (see below), or
  473. hexadecimal by default.
  474. * The symbol type. At least the following types are used; others
  475. are, as well, depending on the object file format. If lowercase,
  476. the symbol is usually local; if uppercase, the symbol is global
  477. (external). There are however a few lowercase symbols that are
  478. shown for special global symbols ('u', 'v' and 'w').
  479. 'A'
  480. The symbol's value is absolute, and will not be changed by
  481. further linking.
  482. 'B'
  483. 'b'
  484. The symbol is in the BSS data section. This section typically
  485. contains zero-initialized or uninitialized data, although the
  486. exact behavior is system dependent.
  487. 'C'
  488. The symbol is common. Common symbols are uninitialized data.
  489. When linking, multiple common symbols may appear with the same
  490. name. If the symbol is defined anywhere, the common symbols
  491. are treated as undefined references. For more details on
  492. common symbols, see the discussion of -warn-common in *note
  493. Linker options: (ld.info)Options.
  494. 'D'
  495. 'd'
  496. The symbol is in the initialized data section.
  497. 'G'
  498. 'g'
  499. The symbol is in an initialized data section for small
  500. objects. Some object file formats permit more efficient
  501. access to small data objects, such as a global int variable as
  502. opposed to a large global array.
  503. 'i'
  504. For PE format files this indicates that the symbol is in a
  505. section specific to the implementation of DLLs. For ELF
  506. format files this indicates that the symbol is an indirect
  507. function. This is a GNU extension to the standard set of ELF
  508. symbol types. It indicates a symbol which if referenced by a
  509. relocation does not evaluate to its address, but instead must
  510. be invoked at runtime. The runtime execution will then return
  511. the value to be used in the relocation.
  512. 'I'
  513. The symbol is an indirect reference to another symbol.
  514. 'N'
  515. The symbol is a debugging symbol.
  516. 'n'
  517. The symbol is in the read-only data section.
  518. 'p'
  519. The symbol is in a stack unwind section.
  520. 'R'
  521. 'r'
  522. The symbol is in a read only data section.
  523. 'S'
  524. 's'
  525. The symbol is in an uninitialized or zero-initialized data
  526. section for small objects.
  527. 'T'
  528. 't'
  529. The symbol is in the text (code) section.
  530. 'U'
  531. The symbol is undefined.
  532. 'u'
  533. The symbol is a unique global symbol. This is a GNU extension
  534. to the standard set of ELF symbol bindings. For such a symbol
  535. the dynamic linker will make sure that in the entire process
  536. there is just one symbol with this name and type in use.
  537. 'V'
  538. 'v'
  539. The symbol is a weak object. When a weak defined symbol is
  540. linked with a normal defined symbol, the normal defined symbol
  541. is used with no error. When a weak undefined symbol is linked
  542. and the symbol is not defined, the value of the weak symbol
  543. becomes zero with no error. On some systems, uppercase
  544. indicates that a default value has been specified.
  545. 'W'
  546. 'w'
  547. The symbol is a weak symbol that has not been specifically
  548. tagged as a weak object symbol. When a weak defined symbol is
  549. linked with a normal defined symbol, the normal defined symbol
  550. is used with no error. When a weak undefined symbol is linked
  551. and the symbol is not defined, the value of the symbol is
  552. determined in a system-specific manner without error. On some
  553. systems, uppercase indicates that a default value has been
  554. specified.
  555. '-'
  556. The symbol is a stabs symbol in an a.out object file. In this
  557. case, the next values printed are the stabs other field, the
  558. stabs desc field, and the stab type. Stabs symbols are used
  559. to hold debugging information.
  560. '?'
  561. The symbol type is unknown, or object file format specific.
  562. * The symbol name.
  563. The long and short forms of options, shown here as alternatives, are
  564. equivalent.
  565. '-A'
  566. '-o'
  567. '--print-file-name'
  568. Precede each symbol by the name of the input file (or archive
  569. member) in which it was found, rather than identifying the input
  570. file once only, before all of its symbols.
  571. '-a'
  572. '--debug-syms'
  573. Display all symbols, even debugger-only symbols; normally these are
  574. not listed.
  575. '-B'
  576. The same as '--format=bsd' (for compatibility with the MIPS 'nm').
  577. '-C'
  578. '--demangle[=STYLE]'
  579. Decode ("demangle") low-level symbol names into user-level names.
  580. Besides removing any initial underscore prepended by the system,
  581. this makes C++ function names readable. Different compilers have
  582. different mangling styles. The optional demangling style argument
  583. can be used to choose an appropriate demangling style for your
  584. compiler. *Note c++filt::, for more information on demangling.
  585. '--no-demangle'
  586. Do not demangle low-level symbol names. This is the default.
  587. '--recurse-limit'
  588. '--no-recurse-limit'
  589. '--recursion-limit'
  590. '--no-recursion-limit'
  591. Enables or disables a limit on the amount of recursion performed
  592. whilst demangling strings. Since the name mangling formats allow
  593. for an inifinite level of recursion it is possible to create
  594. strings whose decoding will exhaust the amount of stack space
  595. available on the host machine, triggering a memory fault. The
  596. limit tries to prevent this from happening by restricting recursion
  597. to 2048 levels of nesting.
  598. The default is for this limit to be enabled, but disabling it may
  599. be necessary in order to demangle truly complicated names. Note
  600. however that if the recursion limit is disabled then stack
  601. exhaustion is possible and any bug reports about such an event will
  602. be rejected.
  603. '-D'
  604. '--dynamic'
  605. Display the dynamic symbols rather than the normal symbols. This
  606. is only meaningful for dynamic objects, such as certain types of
  607. shared libraries.
  608. '-f FORMAT'
  609. '--format=FORMAT'
  610. Use the output format FORMAT, which can be 'bsd', 'sysv', or
  611. 'posix'. The default is 'bsd'. Only the first character of FORMAT
  612. is significant; it can be either upper or lower case.
  613. '-g'
  614. '--extern-only'
  615. Display only external symbols.
  616. '-h'
  617. '--help'
  618. Show a summary of the options to 'nm' and exit.
  619. '-l'
  620. '--line-numbers'
  621. For each symbol, use debugging information to try to find a
  622. filename and line number. For a defined symbol, look for the line
  623. number of the address of the symbol. For an undefined symbol, look
  624. for the line number of a relocation entry which refers to the
  625. symbol. If line number information can be found, print it after
  626. the other symbol information.
  627. '--inlines'
  628. When option '-l' is active, if the address belongs to a function
  629. that was inlined, then this option causes the source information
  630. for all enclosing scopes back to the first non-inlined function to
  631. be printed as well. For example, if 'main' inlines 'callee1' which
  632. inlines 'callee2', and address is from 'callee2', the source
  633. information for 'callee1' and 'main' will also be printed.
  634. '-n'
  635. '-v'
  636. '--numeric-sort'
  637. Sort symbols numerically by their addresses, rather than
  638. alphabetically by their names.
  639. '-p'
  640. '--no-sort'
  641. Do not bother to sort the symbols in any order; print them in the
  642. order encountered.
  643. '-P'
  644. '--portability'
  645. Use the POSIX.2 standard output format instead of the default
  646. format. Equivalent to '-f posix'.
  647. '-r'
  648. '--reverse-sort'
  649. Reverse the order of the sort (whether numeric or alphabetic); let
  650. the last come first.
  651. '-S'
  652. '--print-size'
  653. Print both value and size of defined symbols for the 'bsd' output
  654. style. This option has no effect for object formats that do not
  655. record symbol sizes, unless '--size-sort' is also used in which
  656. case a calculated size is displayed.
  657. '-s'
  658. '--print-armap'
  659. When listing symbols from archive members, include the index: a
  660. mapping (stored in the archive by 'ar' or 'ranlib') of which
  661. modules contain definitions for which names.
  662. '-t RADIX'
  663. '--radix=RADIX'
  664. Use RADIX as the radix for printing the symbol values. It must be
  665. 'd' for decimal, 'o' for octal, or 'x' for hexadecimal.
  666. '-u'
  667. '--undefined-only'
  668. Display only undefined symbols (those external to each object
  669. file).
  670. '-V'
  671. '--version'
  672. Show the version number of 'nm' and exit.
  673. '-X'
  674. This option is ignored for compatibility with the AIX version of
  675. 'nm'. It takes one parameter which must be the string '32_64'.
  676. The default mode of AIX 'nm' corresponds to '-X 32', which is not
  677. supported by GNU 'nm'.
  678. '--defined-only'
  679. Display only defined symbols for each object file.
  680. '--plugin NAME'
  681. Load the plugin called NAME to add support for extra target types.
  682. This option is only available if the toolchain has been built with
  683. plugin support enabled.
  684. If '--plugin' is not provided, but plugin support has been enabled
  685. then 'nm' iterates over the files in '${libdir}/bfd-plugins' in
  686. alphabetic order and the first plugin that claims the object in
  687. question is used.
  688. Please note that this plugin search directory is _not_ the one used
  689. by 'ld''s '-plugin' option. In order to make 'nm' use the linker
  690. plugin it must be copied into the '${libdir}/bfd-plugins'
  691. directory. For GCC based compilations the linker plugin is called
  692. 'liblto_plugin.so.0.0.0'. For Clang based compilations it is
  693. called 'LLVMgold.so'. The GCC plugin is always backwards
  694. compatible with earlier versions, so it is sufficient to just copy
  695. the newest one.
  696. '--size-sort'
  697. Sort symbols by size. For ELF objects symbol sizes are read from
  698. the ELF, for other object types the symbol sizes are computed as
  699. the difference between the value of the symbol and the value of the
  700. symbol with the next higher value. If the 'bsd' output format is
  701. used the size of the symbol is printed, rather than the value, and
  702. '-S' must be used in order both size and value to be printed.
  703. '--special-syms'
  704. Display symbols which have a target-specific special meaning.
  705. These symbols are usually used by the target for some special
  706. processing and are not normally helpful when included in the normal
  707. symbol lists. For example for ARM targets this option would skip
  708. the mapping symbols used to mark transitions between ARM code,
  709. THUMB code and data.
  710. '--synthetic'
  711. Include synthetic symbols in the output. These are special symbols
  712. created by the linker for various purposes. They are not shown by
  713. default since they are not part of the binary's original source
  714. code.
  715. '--with-symbol-versions'
  716. Enables the display of symbol version information if any exists.
  717. The version string is displayed as a suffix to the symbol name,
  718. preceeded by an @ character. For example 'foo@VER_1'. If the
  719. version is the default version to be used when resolving
  720. unversioned references to the symbol then it is displayed as a
  721. suffix preceeded by two @ characters. For example 'foo@@VER_2'.
  722. '--target=BFDNAME'
  723. Specify an object code format other than your system's default
  724. format. *Note Target Selection::, for more information.
  725. 
  726. File: binutils.info, Node: objcopy, Next: objdump, Prev: nm, Up: Top
  727. 3 objcopy
  728. *********
  729. objcopy [-F BFDNAME|--target=BFDNAME]
  730. [-I BFDNAME|--input-target=BFDNAME]
  731. [-O BFDNAME|--output-target=BFDNAME]
  732. [-B BFDARCH|--binary-architecture=BFDARCH]
  733. [-S|--strip-all]
  734. [-g|--strip-debug]
  735. [--strip-unneeded]
  736. [-K SYMBOLNAME|--keep-symbol=SYMBOLNAME]
  737. [-N SYMBOLNAME|--strip-symbol=SYMBOLNAME]
  738. [--strip-unneeded-symbol=SYMBOLNAME]
  739. [-G SYMBOLNAME|--keep-global-symbol=SYMBOLNAME]
  740. [--localize-hidden]
  741. [-L SYMBOLNAME|--localize-symbol=SYMBOLNAME]
  742. [--globalize-symbol=SYMBOLNAME]
  743. [--globalize-symbols=FILENAME]
  744. [-W SYMBOLNAME|--weaken-symbol=SYMBOLNAME]
  745. [-w|--wildcard]
  746. [-x|--discard-all]
  747. [-X|--discard-locals]
  748. [-b BYTE|--byte=BYTE]
  749. [-i [BREADTH]|--interleave[=BREADTH]]
  750. [--interleave-width=WIDTH]
  751. [-j SECTIONPATTERN|--only-section=SECTIONPATTERN]
  752. [-R SECTIONPATTERN|--remove-section=SECTIONPATTERN]
  753. [--remove-relocations=SECTIONPATTERN]
  754. [-p|--preserve-dates]
  755. [-D|--enable-deterministic-archives]
  756. [-U|--disable-deterministic-archives]
  757. [--debugging]
  758. [--gap-fill=VAL]
  759. [--pad-to=ADDRESS]
  760. [--set-start=VAL]
  761. [--adjust-start=INCR]
  762. [--change-addresses=INCR]
  763. [--change-section-address SECTIONPATTERN{=,+,-}VAL]
  764. [--change-section-lma SECTIONPATTERN{=,+,-}VAL]
  765. [--change-section-vma SECTIONPATTERN{=,+,-}VAL]
  766. [--change-warnings] [--no-change-warnings]
  767. [--set-section-flags SECTIONPATTERN=FLAGS]
  768. [--set-section-alignment SECTIONPATTERN=ALIGN]
  769. [--add-section SECTIONNAME=FILENAME]
  770. [--dump-section SECTIONNAME=FILENAME]
  771. [--update-section SECTIONNAME=FILENAME]
  772. [--rename-section OLDNAME=NEWNAME[,FLAGS]]
  773. [--long-section-names {enable,disable,keep}]
  774. [--change-leading-char] [--remove-leading-char]
  775. [--reverse-bytes=NUM]
  776. [--srec-len=IVAL] [--srec-forceS3]
  777. [--redefine-sym OLD=NEW]
  778. [--redefine-syms=FILENAME]
  779. [--weaken]
  780. [--keep-symbols=FILENAME]
  781. [--strip-symbols=FILENAME]
  782. [--strip-unneeded-symbols=FILENAME]
  783. [--keep-global-symbols=FILENAME]
  784. [--localize-symbols=FILENAME]
  785. [--weaken-symbols=FILENAME]
  786. [--add-symbol NAME=[SECTION:]VALUE[,FLAGS]]
  787. [--alt-machine-code=INDEX]
  788. [--prefix-symbols=STRING]
  789. [--prefix-sections=STRING]
  790. [--prefix-alloc-sections=STRING]
  791. [--add-gnu-debuglink=PATH-TO-FILE]
  792. [--keep-file-symbols]
  793. [--only-keep-debug]
  794. [--strip-dwo]
  795. [--extract-dwo]
  796. [--extract-symbol]
  797. [--writable-text]
  798. [--readonly-text]
  799. [--pure]
  800. [--impure]
  801. [--file-alignment=NUM]
  802. [--heap=SIZE]
  803. [--image-base=ADDRESS]
  804. [--section-alignment=NUM]
  805. [--stack=SIZE]
  806. [--subsystem=WHICH:MAJOR.MINOR]
  807. [--compress-debug-sections]
  808. [--decompress-debug-sections]
  809. [--elf-stt-common=VAL]
  810. [--merge-notes]
  811. [--no-merge-notes]
  812. [--verilog-data-width=VAL]
  813. [-v|--verbose]
  814. [-V|--version]
  815. [--help] [--info]
  816. INFILE [OUTFILE]
  817. The GNU 'objcopy' utility copies the contents of an object file to
  818. another. 'objcopy' uses the GNU BFD Library to read and write the
  819. object files. It can write the destination object file in a format
  820. different from that of the source object file. The exact behavior of
  821. 'objcopy' is controlled by command-line options. Note that 'objcopy'
  822. should be able to copy a fully linked file between any two formats.
  823. However, copying a relocatable object file between any two formats may
  824. not work as expected.
  825. 'objcopy' creates temporary files to do its translations and deletes
  826. them afterward. 'objcopy' uses BFD to do all its translation work; it
  827. has access to all the formats described in BFD and thus is able to
  828. recognize most formats without being told explicitly. *Note BFD:
  829. (ld.info)BFD.
  830. 'objcopy' can be used to generate S-records by using an output target
  831. of 'srec' (e.g., use '-O srec').
  832. 'objcopy' can be used to generate a raw binary file by using an
  833. output target of 'binary' (e.g., use '-O binary'). When 'objcopy'
  834. generates a raw binary file, it will essentially produce a memory dump
  835. of the contents of the input object file. All symbols and relocation
  836. information will be discarded. The memory dump will start at the load
  837. address of the lowest section copied into the output file.
  838. When generating an S-record or a raw binary file, it may be helpful
  839. to use '-S' to remove sections containing debugging information. In
  840. some cases '-R' will be useful to remove sections which contain
  841. information that is not needed by the binary file.
  842. Note--'objcopy' is not able to change the endianness of its input
  843. files. If the input format has an endianness (some formats do not),
  844. 'objcopy' can only copy the inputs into file formats that have the same
  845. endianness or which have no endianness (e.g., 'srec'). (However, see
  846. the '--reverse-bytes' option.)
  847. 'INFILE'
  848. 'OUTFILE'
  849. The input and output files, respectively. If you do not specify
  850. OUTFILE, 'objcopy' creates a temporary file and destructively
  851. renames the result with the name of INFILE.
  852. '-I BFDNAME'
  853. '--input-target=BFDNAME'
  854. Consider the source file's object format to be BFDNAME, rather than
  855. attempting to deduce it. *Note Target Selection::, for more
  856. information.
  857. '-O BFDNAME'
  858. '--output-target=BFDNAME'
  859. Write the output file using the object format BFDNAME. *Note
  860. Target Selection::, for more information.
  861. '-F BFDNAME'
  862. '--target=BFDNAME'
  863. Use BFDNAME as the object format for both the input and the output
  864. file; i.e., simply transfer data from source to destination with no
  865. translation. *Note Target Selection::, for more information.
  866. '-B BFDARCH'
  867. '--binary-architecture=BFDARCH'
  868. Useful when transforming a architecture-less input file into an
  869. object file. In this case the output architecture can be set to
  870. BFDARCH. This option will be ignored if the input file has a known
  871. BFDARCH. You can access this binary data inside a program by
  872. referencing the special symbols that are created by the conversion
  873. process. These symbols are called _binary_OBJFILE_start,
  874. _binary_OBJFILE_end and _binary_OBJFILE_size. e.g. you can
  875. transform a picture file into an object file and then access it in
  876. your code using these symbols.
  877. '-j SECTIONPATTERN'
  878. '--only-section=SECTIONPATTERN'
  879. Copy only the indicated sections from the input file to the output
  880. file. This option may be given more than once. Note that using
  881. this option inappropriately may make the output file unusable.
  882. Wildcard characters are accepted in SECTIONPATTERN.
  883. If the first character of SECTIONPATTERN is the exclamation point
  884. (!) then matching sections will not be copied, even if earlier use
  885. of '--only-section' on the same command line would otherwise copy
  886. it. For example:
  887. --only-section=.text.* --only-section=!.text.foo
  888. will copy all sectinos maching '.text.*' but not the section
  889. '.text.foo'.
  890. '-R SECTIONPATTERN'
  891. '--remove-section=SECTIONPATTERN'
  892. Remove any section matching SECTIONPATTERN from the output file.
  893. This option may be given more than once. Note that using this
  894. option inappropriately may make the output file unusable. Wildcard
  895. characters are accepted in SECTIONPATTERN. Using both the '-j' and
  896. '-R' options together results in undefined behaviour.
  897. If the first character of SECTIONPATTERN is the exclamation point
  898. (!) then matching sections will not be removed even if an earlier
  899. use of '--remove-section' on the same command line would otherwise
  900. remove it. For example:
  901. --remove-section=.text.* --remove-section=!.text.foo
  902. will remove all sections matching the pattern '.text.*', but will
  903. not remove the section '.text.foo'.
  904. '--remove-relocations=SECTIONPATTERN'
  905. Remove non-dynamic relocations from the output file for any section
  906. matching SECTIONPATTERN. This option may be given more than once.
  907. Note that using this option inappropriately may make the output
  908. file unusable, and attempting to remove a dynamic relocation
  909. section such as '.rela.plt' from an executable or shared library
  910. with '--remove-relocations=.plt' will not work. Wildcard
  911. characters are accepted in SECTIONPATTERN. For example:
  912. --remove-relocations=.text.*
  913. will remove the relocations for all sections matching the pattern
  914. '.text.*'.
  915. If the first character of SECTIONPATTERN is the exclamation point
  916. (!) then matching sections will not have their relocation removed
  917. even if an earlier use of '--remove-relocations' on the same
  918. command line would otherwise cause the relocations to be removed.
  919. For example:
  920. --remove-relocations=.text.* --remove-relocations=!.text.foo
  921. will remove all relocations for sections matching the pattern
  922. '.text.*', but will not remove relocations for the section
  923. '.text.foo'.
  924. '-S'
  925. '--strip-all'
  926. Do not copy relocation and symbol information from the source file.
  927. '-g'
  928. '--strip-debug'
  929. Do not copy debugging symbols or sections from the source file.
  930. '--strip-unneeded'
  931. Strip all symbols that are not needed for relocation processing.
  932. '-K SYMBOLNAME'
  933. '--keep-symbol=SYMBOLNAME'
  934. When stripping symbols, keep symbol SYMBOLNAME even if it would
  935. normally be stripped. This option may be given more than once.
  936. '-N SYMBOLNAME'
  937. '--strip-symbol=SYMBOLNAME'
  938. Do not copy symbol SYMBOLNAME from the source file. This option
  939. may be given more than once.
  940. '--strip-unneeded-symbol=SYMBOLNAME'
  941. Do not copy symbol SYMBOLNAME from the source file unless it is
  942. needed by a relocation. This option may be given more than once.
  943. '-G SYMBOLNAME'
  944. '--keep-global-symbol=SYMBOLNAME'
  945. Keep only symbol SYMBOLNAME global. Make all other symbols local
  946. to the file, so that they are not visible externally. This option
  947. may be given more than once. Note: this option cannot be used in
  948. conjunction with the '--globalize-symbol' or '--globalize-symbols'
  949. options.
  950. '--localize-hidden'
  951. In an ELF object, mark all symbols that have hidden or internal
  952. visibility as local. This option applies on top of symbol-specific
  953. localization options such as '-L'.
  954. '-L SYMBOLNAME'
  955. '--localize-symbol=SYMBOLNAME'
  956. Convert a global or weak symbol called SYMBOLNAME into a local
  957. symbol, so that it is not visible externally. This option may be
  958. given more than once. Note - unique symbols are not converted.
  959. '-W SYMBOLNAME'
  960. '--weaken-symbol=SYMBOLNAME'
  961. Make symbol SYMBOLNAME weak. This option may be given more than
  962. once.
  963. '--globalize-symbol=SYMBOLNAME'
  964. Give symbol SYMBOLNAME global scoping so that it is visible outside
  965. of the file in which it is defined. This option may be given more
  966. than once. Note: this option cannot be used in conjunction with
  967. the '-G' or '--keep-global-symbol' options.
  968. '-w'
  969. '--wildcard'
  970. Permit regular expressions in SYMBOLNAMEs used in other command
  971. line options. The question mark (?), asterisk (*), backslash (\)
  972. and square brackets ([]) operators can be used anywhere in the
  973. symbol name. If the first character of the symbol name is the
  974. exclamation point (!) then the sense of the switch is reversed for
  975. that symbol. For example:
  976. -w -W !foo -W fo*
  977. would cause objcopy to weaken all symbols that start with "fo"
  978. except for the symbol "foo".
  979. '-x'
  980. '--discard-all'
  981. Do not copy non-global symbols from the source file.
  982. '-X'
  983. '--discard-locals'
  984. Do not copy compiler-generated local symbols. (These usually start
  985. with 'L' or '.'.)
  986. '-b BYTE'
  987. '--byte=BYTE'
  988. If interleaving has been enabled via the '--interleave' option then
  989. start the range of bytes to keep at the BYTEth byte. BYTE can be
  990. in the range from 0 to BREADTH-1, where BREADTH is the value given
  991. by the '--interleave' option.
  992. '-i [BREADTH]'
  993. '--interleave[=BREADTH]'
  994. Only copy a range out of every BREADTH bytes. (Header data is not
  995. affected). Select which byte in the range begins the copy with the
  996. '--byte' option. Select the width of the range with the
  997. '--interleave-width' option.
  998. This option is useful for creating files to program ROM. It is
  999. typically used with an 'srec' output target. Note that 'objcopy'
  1000. will complain if you do not specify the '--byte' option as well.
  1001. The default interleave breadth is 4, so with '--byte' set to 0,
  1002. 'objcopy' would copy the first byte out of every four bytes from
  1003. the input to the output.
  1004. '--interleave-width=WIDTH'
  1005. When used with the '--interleave' option, copy WIDTH bytes at a
  1006. time. The start of the range of bytes to be copied is set by the
  1007. '--byte' option, and the extent of the range is set with the
  1008. '--interleave' option.
  1009. The default value for this option is 1. The value of WIDTH plus
  1010. the BYTE value set by the '--byte' option must not exceed the
  1011. interleave breadth set by the '--interleave' option.
  1012. This option can be used to create images for two 16-bit flashes
  1013. interleaved in a 32-bit bus by passing '-b 0 -i 4
  1014. --interleave-width=2' and '-b 2 -i 4 --interleave-width=2' to two
  1015. 'objcopy' commands. If the input was '12345678' then the outputs
  1016. would be '1256' and '3478' respectively.
  1017. '-p'
  1018. '--preserve-dates'
  1019. Set the access and modification dates of the output file to be the
  1020. same as those of the input file.
  1021. '-D'
  1022. '--enable-deterministic-archives'
  1023. Operate in _deterministic_ mode. When copying archive members and
  1024. writing the archive index, use zero for UIDs, GIDs, timestamps, and
  1025. use consistent file modes for all files.
  1026. If 'binutils' was configured with
  1027. '--enable-deterministic-archives', then this mode is on by default.
  1028. It can be disabled with the '-U' option, below.
  1029. '-U'
  1030. '--disable-deterministic-archives'
  1031. Do _not_ operate in _deterministic_ mode. This is the inverse of
  1032. the '-D' option, above: when copying archive members and writing
  1033. the archive index, use their actual UID, GID, timestamp, and file
  1034. mode values.
  1035. This is the default unless 'binutils' was configured with
  1036. '--enable-deterministic-archives'.
  1037. '--debugging'
  1038. Convert debugging information, if possible. This is not the
  1039. default because only certain debugging formats are supported, and
  1040. the conversion process can be time consuming.
  1041. '--gap-fill VAL'
  1042. Fill gaps between sections with VAL. This operation applies to the
  1043. _load address_ (LMA) of the sections. It is done by increasing the
  1044. size of the section with the lower address, and filling in the
  1045. extra space created with VAL.
  1046. '--pad-to ADDRESS'
  1047. Pad the output file up to the load address ADDRESS. This is done
  1048. by increasing the size of the last section. The extra space is
  1049. filled in with the value specified by '--gap-fill' (default zero).
  1050. '--set-start VAL'
  1051. Set the start address of the new file to VAL. Not all object file
  1052. formats support setting the start address.
  1053. '--change-start INCR'
  1054. '--adjust-start INCR'
  1055. Change the start address by adding INCR. Not all object file
  1056. formats support setting the start address.
  1057. '--change-addresses INCR'
  1058. '--adjust-vma INCR'
  1059. Change the VMA and LMA addresses of all sections, as well as the
  1060. start address, by adding INCR. Some object file formats do not
  1061. permit section addresses to be changed arbitrarily. Note that this
  1062. does not relocate the sections; if the program expects sections to
  1063. be loaded at a certain address, and this option is used to change
  1064. the sections such that they are loaded at a different address, the
  1065. program may fail.
  1066. '--change-section-address SECTIONPATTERN{=,+,-}VAL'
  1067. '--adjust-section-vma SECTIONPATTERN{=,+,-}VAL'
  1068. Set or change both the VMA address and the LMA address of any
  1069. section matching SECTIONPATTERN. If '=' is used, the section
  1070. address is set to VAL. Otherwise, VAL is added to or subtracted
  1071. from the section address. See the comments under
  1072. '--change-addresses', above. If SECTIONPATTERN does not match any
  1073. sections in the input file, a warning will be issued, unless
  1074. '--no-change-warnings' is used.
  1075. '--change-section-lma SECTIONPATTERN{=,+,-}VAL'
  1076. Set or change the LMA address of any sections matching
  1077. SECTIONPATTERN. The LMA address is the address where the section
  1078. will be loaded into memory at program load time. Normally this is
  1079. the same as the VMA address, which is the address of the section at
  1080. program run time, but on some systems, especially those where a
  1081. program is held in ROM, the two can be different. If '=' is used,
  1082. the section address is set to VAL. Otherwise, VAL is added to or
  1083. subtracted from the section address. See the comments under
  1084. '--change-addresses', above. If SECTIONPATTERN does not match any
  1085. sections in the input file, a warning will be issued, unless
  1086. '--no-change-warnings' is used.
  1087. '--change-section-vma SECTIONPATTERN{=,+,-}VAL'
  1088. Set or change the VMA address of any section matching
  1089. SECTIONPATTERN. The VMA address is the address where the section
  1090. will be located once the program has started executing. Normally
  1091. this is the same as the LMA address, which is the address where the
  1092. section will be loaded into memory, but on some systems, especially
  1093. those where a program is held in ROM, the two can be different. If
  1094. '=' is used, the section address is set to VAL. Otherwise, VAL is
  1095. added to or subtracted from the section address. See the comments
  1096. under '--change-addresses', above. If SECTIONPATTERN does not
  1097. match any sections in the input file, a warning will be issued,
  1098. unless '--no-change-warnings' is used.
  1099. '--change-warnings'
  1100. '--adjust-warnings'
  1101. If '--change-section-address' or '--change-section-lma' or
  1102. '--change-section-vma' is used, and the section pattern does not
  1103. match any sections, issue a warning. This is the default.
  1104. '--no-change-warnings'
  1105. '--no-adjust-warnings'
  1106. Do not issue a warning if '--change-section-address' or
  1107. '--adjust-section-lma' or '--adjust-section-vma' is used, even if
  1108. the section pattern does not match any sections.
  1109. '--set-section-flags SECTIONPATTERN=FLAGS'
  1110. Set the flags for any sections matching SECTIONPATTERN. The FLAGS
  1111. argument is a comma separated string of flag names. The recognized
  1112. names are 'alloc', 'contents', 'load', 'noload', 'readonly',
  1113. 'code', 'data', 'rom', 'share', and 'debug'. You can set the
  1114. 'contents' flag for a section which does not have contents, but it
  1115. is not meaningful to clear the 'contents' flag of a section which
  1116. does have contents-just remove the section instead. Not all flags
  1117. are meaningful for all object file formats.
  1118. '--set-section-alignment SECTIONPATTERN=ALIGN'
  1119. Set the alignment for any sections matching SECTIONPATTERN. ALIGN
  1120. specifies the alignment in bytes and must be a power of two, i.e.
  1121. 1, 2, 4, 8....
  1122. '--add-section SECTIONNAME=FILENAME'
  1123. Add a new section named SECTIONNAME while copying the file. The
  1124. contents of the new section are taken from the file FILENAME. The
  1125. size of the section will be the size of the file. This option only
  1126. works on file formats which can support sections with arbitrary
  1127. names. Note - it may be necessary to use the '--set-section-flags'
  1128. option to set the attributes of the newly created section.
  1129. '--dump-section SECTIONNAME=FILENAME'
  1130. Place the contents of section named SECTIONNAME into the file
  1131. FILENAME, overwriting any contents that may have been there
  1132. previously. This option is the inverse of '--add-section'. This
  1133. option is similar to the '--only-section' option except that it
  1134. does not create a formatted file, it just dumps the contents as raw
  1135. binary data, without applying any relocations. The option can be
  1136. specified more than once.
  1137. '--update-section SECTIONNAME=FILENAME'
  1138. Replace the existing contents of a section named SECTIONNAME with
  1139. the contents of file FILENAME. The size of the section will be
  1140. adjusted to the size of the file. The section flags for
  1141. SECTIONNAME will be unchanged. For ELF format files the section to
  1142. segment mapping will also remain unchanged, something which is not
  1143. possible using '--remove-section' followed by '--add-section'. The
  1144. option can be specified more than once.
  1145. Note - it is possible to use '--rename-section' and
  1146. '--update-section' to both update and rename a section from one
  1147. command line. In this case, pass the original section name to
  1148. '--update-section', and the original and new section names to
  1149. '--rename-section'.
  1150. '--add-symbol NAME=[SECTION:]VALUE[,FLAGS]'
  1151. Add a new symbol named NAME while copying the file. This option
  1152. may be specified multiple times. If the SECTION is given, the
  1153. symbol will be associated with and relative to that section,
  1154. otherwise it will be an ABS symbol. Specifying an undefined
  1155. section will result in a fatal error. There is no check for the
  1156. value, it will be taken as specified. Symbol flags can be
  1157. specified and not all flags will be meaningful for all object file
  1158. formats. By default, the symbol will be global. The special flag
  1159. 'before=OTHERSYM' will insert the new symbol in front of the
  1160. specified OTHERSYM, otherwise the symbol(s) will be added at the
  1161. end of the symbol table in the order they appear.
  1162. '--rename-section OLDNAME=NEWNAME[,FLAGS]'
  1163. Rename a section from OLDNAME to NEWNAME, optionally changing the
  1164. section's flags to FLAGS in the process. This has the advantage
  1165. over using a linker script to perform the rename in that the output
  1166. stays as an object file and does not become a linked executable.
  1167. This option is particularly helpful when the input format is
  1168. binary, since this will always create a section called .data. If
  1169. for example, you wanted instead to create a section called .rodata
  1170. containing binary data you could use the following command line to
  1171. achieve it:
  1172. objcopy -I binary -O <output_format> -B <architecture> \
  1173. --rename-section .data=.rodata,alloc,load,readonly,data,contents \
  1174. <input_binary_file> <output_object_file>
  1175. '--long-section-names {enable,disable,keep}'
  1176. Controls the handling of long section names when processing 'COFF'
  1177. and 'PE-COFF' object formats. The default behaviour, 'keep', is to
  1178. preserve long section names if any are present in the input file.
  1179. The 'enable' and 'disable' options forcibly enable or disable the
  1180. use of long section names in the output object; when 'disable' is
  1181. in effect, any long section names in the input object will be
  1182. truncated. The 'enable' option will only emit long section names
  1183. if any are present in the inputs; this is mostly the same as
  1184. 'keep', but it is left undefined whether the 'enable' option might
  1185. force the creation of an empty string table in the output file.
  1186. '--change-leading-char'
  1187. Some object file formats use special characters at the start of
  1188. symbols. The most common such character is underscore, which
  1189. compilers often add before every symbol. This option tells
  1190. 'objcopy' to change the leading character of every symbol when it
  1191. converts between object file formats. If the object file formats
  1192. use the same leading character, this option has no effect.
  1193. Otherwise, it will add a character, or remove a character, or
  1194. change a character, as appropriate.
  1195. '--remove-leading-char'
  1196. If the first character of a global symbol is a special symbol
  1197. leading character used by the object file format, remove the
  1198. character. The most common symbol leading character is underscore.
  1199. This option will remove a leading underscore from all global
  1200. symbols. This can be useful if you want to link together objects
  1201. of different file formats with different conventions for symbol
  1202. names. This is different from '--change-leading-char' because it
  1203. always changes the symbol name when appropriate, regardless of the
  1204. object file format of the output file.
  1205. '--reverse-bytes=NUM'
  1206. Reverse the bytes in a section with output contents. A section
  1207. length must be evenly divisible by the value given in order for the
  1208. swap to be able to take place. Reversing takes place before the
  1209. interleaving is performed.
  1210. This option is used typically in generating ROM images for
  1211. problematic target systems. For example, on some target boards,
  1212. the 32-bit words fetched from 8-bit ROMs are re-assembled in
  1213. little-endian byte order regardless of the CPU byte order.
  1214. Depending on the programming model, the endianness of the ROM may
  1215. need to be modified.
  1216. Consider a simple file with a section containing the following
  1217. eight bytes: '12345678'.
  1218. Using '--reverse-bytes=2' for the above example, the bytes in the
  1219. output file would be ordered '21436587'.
  1220. Using '--reverse-bytes=4' for the above example, the bytes in the
  1221. output file would be ordered '43218765'.
  1222. By using '--reverse-bytes=2' for the above example, followed by
  1223. '--reverse-bytes=4' on the output file, the bytes in the second
  1224. output file would be ordered '34127856'.
  1225. '--srec-len=IVAL'
  1226. Meaningful only for srec output. Set the maximum length of the
  1227. Srecords being produced to IVAL. This length covers both address,
  1228. data and crc fields.
  1229. '--srec-forceS3'
  1230. Meaningful only for srec output. Avoid generation of S1/S2
  1231. records, creating S3-only record format.
  1232. '--redefine-sym OLD=NEW'
  1233. Change the name of a symbol OLD, to NEW. This can be useful when
  1234. one is trying link two things together for which you have no
  1235. source, and there are name collisions.
  1236. '--redefine-syms=FILENAME'
  1237. Apply '--redefine-sym' to each symbol pair "OLD NEW" listed in the
  1238. file FILENAME. FILENAME is simply a flat file, with one symbol
  1239. pair per line. Line comments may be introduced by the hash
  1240. character. This option may be given more than once.
  1241. '--weaken'
  1242. Change all global symbols in the file to be weak. This can be
  1243. useful when building an object which will be linked against other
  1244. objects using the '-R' option to the linker. This option is only
  1245. effective when using an object file format which supports weak
  1246. symbols.
  1247. '--keep-symbols=FILENAME'
  1248. Apply '--keep-symbol' option to each symbol listed in the file
  1249. FILENAME. FILENAME is simply a flat file, with one symbol name per
  1250. line. Line comments may be introduced by the hash character. This
  1251. option may be given more than once.
  1252. '--strip-symbols=FILENAME'
  1253. Apply '--strip-symbol' option to each symbol listed in the file
  1254. FILENAME. FILENAME is simply a flat file, with one symbol name per
  1255. line. Line comments may be introduced by the hash character. This
  1256. option may be given more than once.
  1257. '--strip-unneeded-symbols=FILENAME'
  1258. Apply '--strip-unneeded-symbol' option to each symbol listed in the
  1259. file FILENAME. FILENAME is simply a flat file, with one symbol
  1260. name per line. Line comments may be introduced by the hash
  1261. character. This option may be given more than once.
  1262. '--keep-global-symbols=FILENAME'
  1263. Apply '--keep-global-symbol' option to each symbol listed in the
  1264. file FILENAME. FILENAME is simply a flat file, with one symbol
  1265. name per line. Line comments may be introduced by the hash
  1266. character. This option may be given more than once.
  1267. '--localize-symbols=FILENAME'
  1268. Apply '--localize-symbol' option to each symbol listed in the file
  1269. FILENAME. FILENAME is simply a flat file, with one symbol name per
  1270. line. Line comments may be introduced by the hash character. This
  1271. option may be given more than once.
  1272. '--globalize-symbols=FILENAME'
  1273. Apply '--globalize-symbol' option to each symbol listed in the file
  1274. FILENAME. FILENAME is simply a flat file, with one symbol name per
  1275. line. Line comments may be introduced by the hash character. This
  1276. option may be given more than once. Note: this option cannot be
  1277. used in conjunction with the '-G' or '--keep-global-symbol'
  1278. options.
  1279. '--weaken-symbols=FILENAME'
  1280. Apply '--weaken-symbol' option to each symbol listed in the file
  1281. FILENAME. FILENAME is simply a flat file, with one symbol name per
  1282. line. Line comments may be introduced by the hash character. This
  1283. option may be given more than once.
  1284. '--alt-machine-code=INDEX'
  1285. If the output architecture has alternate machine codes, use the
  1286. INDEXth code instead of the default one. This is useful in case a
  1287. machine is assigned an official code and the tool-chain adopts the
  1288. new code, but other applications still depend on the original code
  1289. being used. For ELF based architectures if the INDEX alternative
  1290. does not exist then the value is treated as an absolute number to
  1291. be stored in the e_machine field of the ELF header.
  1292. '--writable-text'
  1293. Mark the output text as writable. This option isn't meaningful for
  1294. all object file formats.
  1295. '--readonly-text'
  1296. Make the output text write protected. This option isn't meaningful
  1297. for all object file formats.
  1298. '--pure'
  1299. Mark the output file as demand paged. This option isn't meaningful
  1300. for all object file formats.
  1301. '--impure'
  1302. Mark the output file as impure. This option isn't meaningful for
  1303. all object file formats.
  1304. '--prefix-symbols=STRING'
  1305. Prefix all symbols in the output file with STRING.
  1306. '--prefix-sections=STRING'
  1307. Prefix all section names in the output file with STRING.
  1308. '--prefix-alloc-sections=STRING'
  1309. Prefix all the names of all allocated sections in the output file
  1310. with STRING.
  1311. '--add-gnu-debuglink=PATH-TO-FILE'
  1312. Creates a .gnu_debuglink section which contains a reference to
  1313. PATH-TO-FILE and adds it to the output file. Note: the file at
  1314. PATH-TO-FILE must exist. Part of the process of adding the
  1315. .gnu_debuglink section involves embedding a checksum of the
  1316. contents of the debug info file into the section.
  1317. If the debug info file is built in one location but it is going to
  1318. be installed at a later time into a different location then do not
  1319. use the path to the installed location. The '--add-gnu-debuglink'
  1320. option will fail because the installed file does not exist yet.
  1321. Instead put the debug info file in the current directory and use
  1322. the '--add-gnu-debuglink' option without any directory components,
  1323. like this:
  1324. objcopy --add-gnu-debuglink=foo.debug
  1325. At debug time the debugger will attempt to look for the separate
  1326. debug info file in a set of known locations. The exact set of
  1327. these locations varies depending upon the distribution being used,
  1328. but it typically includes:
  1329. '* The same directory as the executable.'
  1330. '* A sub-directory of the directory containing the executable'
  1331. called .debug
  1332. '* A global debug directory such as /usr/lib/debug.'
  1333. As long as the debug info file has been installed into one of these
  1334. locations before the debugger is run everything should work
  1335. correctly.
  1336. '--keep-file-symbols'
  1337. When stripping a file, perhaps with '--strip-debug' or
  1338. '--strip-unneeded', retain any symbols specifying source file
  1339. names, which would otherwise get stripped.
  1340. '--only-keep-debug'
  1341. Strip a file, removing contents of any sections that would not be
  1342. stripped by '--strip-debug' and leaving the debugging sections
  1343. intact. In ELF files, this preserves all note sections in the
  1344. output.
  1345. Note - the section headers of the stripped sections are preserved,
  1346. including their sizes, but the contents of the section are
  1347. discarded. The section headers are preserved so that other tools
  1348. can match up the debuginfo file with the real executable, even if
  1349. that executable has been relocated to a different address space.
  1350. The intention is that this option will be used in conjunction with
  1351. '--add-gnu-debuglink' to create a two part executable. One a
  1352. stripped binary which will occupy less space in RAM and in a
  1353. distribution and the second a debugging information file which is
  1354. only needed if debugging abilities are required. The suggested
  1355. procedure to create these files is as follows:
  1356. 1. Link the executable as normal. Assuming that it is called
  1357. 'foo' then...
  1358. 2. Run 'objcopy --only-keep-debug foo foo.dbg' to create a file
  1359. containing the debugging info.
  1360. 3. Run 'objcopy --strip-debug foo' to create a stripped
  1361. executable.
  1362. 4. Run 'objcopy --add-gnu-debuglink=foo.dbg foo' to add a link to
  1363. the debugging info into the stripped executable.
  1364. Note--the choice of '.dbg' as an extension for the debug info file
  1365. is arbitrary. Also the '--only-keep-debug' step is optional. You
  1366. could instead do this:
  1367. 1. Link the executable as normal.
  1368. 2. Copy 'foo' to 'foo.full'
  1369. 3. Run 'objcopy --strip-debug foo'
  1370. 4. Run 'objcopy --add-gnu-debuglink=foo.full foo'
  1371. i.e., the file pointed to by the '--add-gnu-debuglink' can be the
  1372. full executable. It does not have to be a file created by the
  1373. '--only-keep-debug' switch.
  1374. Note--this switch is only intended for use on fully linked files.
  1375. It does not make sense to use it on object files where the
  1376. debugging information may be incomplete. Besides the gnu_debuglink
  1377. feature currently only supports the presence of one filename
  1378. containing debugging information, not multiple filenames on a
  1379. one-per-object-file basis.
  1380. '--strip-dwo'
  1381. Remove the contents of all DWARF .dwo sections, leaving the
  1382. remaining debugging sections and all symbols intact. This option
  1383. is intended for use by the compiler as part of the '-gsplit-dwarf'
  1384. option, which splits debug information between the .o file and a
  1385. separate .dwo file. The compiler generates all debug information
  1386. in the same file, then uses the '--extract-dwo' option to copy the
  1387. .dwo sections to the .dwo file, then the '--strip-dwo' option to
  1388. remove those sections from the original .o file.
  1389. '--extract-dwo'
  1390. Extract the contents of all DWARF .dwo sections. See the
  1391. '--strip-dwo' option for more information.
  1392. '--file-alignment NUM'
  1393. Specify the file alignment. Sections in the file will always begin
  1394. at file offsets which are multiples of this number. This defaults
  1395. to 512. [This option is specific to PE targets.]
  1396. '--heap RESERVE'
  1397. '--heap RESERVE,COMMIT'
  1398. Specify the number of bytes of memory to reserve (and optionally
  1399. commit) to be used as heap for this program. [This option is
  1400. specific to PE targets.]
  1401. '--image-base VALUE'
  1402. Use VALUE as the base address of your program or dll. This is the
  1403. lowest memory location that will be used when your program or dll
  1404. is loaded. To reduce the need to relocate and improve performance
  1405. of your dlls, each should have a unique base address and not
  1406. overlap any other dlls. The default is 0x400000 for executables,
  1407. and 0x10000000 for dlls. [This option is specific to PE targets.]
  1408. '--section-alignment NUM'
  1409. Sets the section alignment field in the PE header. Sections in
  1410. memory will always begin at addresses which are a multiple of this
  1411. number. Defaults to 0x1000. [This option is specific to PE
  1412. targets.]
  1413. '--stack RESERVE'
  1414. '--stack RESERVE,COMMIT'
  1415. Specify the number of bytes of memory to reserve (and optionally
  1416. commit) to be used as stack for this program. [This option is
  1417. specific to PE targets.]
  1418. '--subsystem WHICH'
  1419. '--subsystem WHICH:MAJOR'
  1420. '--subsystem WHICH:MAJOR.MINOR'
  1421. Specifies the subsystem under which your program will execute. The
  1422. legal values for WHICH are 'native', 'windows', 'console', 'posix',
  1423. 'efi-app', 'efi-bsd', 'efi-rtd', 'sal-rtd', and 'xbox'. You may
  1424. optionally set the subsystem version also. Numeric values are also
  1425. accepted for WHICH. [This option is specific to PE targets.]
  1426. '--extract-symbol'
  1427. Keep the file's section flags and symbols but remove all section
  1428. data. Specifically, the option:
  1429. * removes the contents of all sections;
  1430. * sets the size of every section to zero; and
  1431. * sets the file's start address to zero.
  1432. This option is used to build a '.sym' file for a VxWorks kernel.
  1433. It can also be a useful way of reducing the size of a
  1434. '--just-symbols' linker input file.
  1435. '--compress-debug-sections'
  1436. Compress DWARF debug sections using zlib with SHF_COMPRESSED from
  1437. the ELF ABI. Note - if compression would actually make a section
  1438. _larger_, then it is not compressed.
  1439. '--compress-debug-sections=none'
  1440. '--compress-debug-sections=zlib'
  1441. '--compress-debug-sections=zlib-gnu'
  1442. '--compress-debug-sections=zlib-gabi'
  1443. For ELF files, these options control how DWARF debug sections are
  1444. compressed. '--compress-debug-sections=none' is equivalent to
  1445. '--decompress-debug-sections'. '--compress-debug-sections=zlib'
  1446. and '--compress-debug-sections=zlib-gabi' are equivalent to
  1447. '--compress-debug-sections'. '--compress-debug-sections=zlib-gnu'
  1448. compresses DWARF debug sections using zlib. The debug sections are
  1449. renamed to begin with '.zdebug' instead of '.debug'. Note - if
  1450. compression would actually make a section _larger_, then it is not
  1451. compressed nor renamed.
  1452. '--decompress-debug-sections'
  1453. Decompress DWARF debug sections using zlib. The original section
  1454. names of the compressed sections are restored.
  1455. '--elf-stt-common=yes'
  1456. '--elf-stt-common=no'
  1457. For ELF files, these options control whether common symbols should
  1458. be converted to the 'STT_COMMON' or 'STT_OBJECT' type.
  1459. '--elf-stt-common=yes' converts common symbol type to 'STT_COMMON'.
  1460. '--elf-stt-common=no' converts common symbol type to 'STT_OBJECT'.
  1461. '--merge-notes'
  1462. '--no-merge-notes'
  1463. For ELF files, attempt (or do not attempt) to reduce the size of
  1464. any SHT_NOTE type sections by removing duplicate notes.
  1465. '-V'
  1466. '--version'
  1467. Show the version number of 'objcopy'.
  1468. '--verilog-data-width=BYTES'
  1469. For Verilog output, this options controls the number of bytes
  1470. converted for each output data element. The input target controls
  1471. the endianness of the conversion.
  1472. '-v'
  1473. '--verbose'
  1474. Verbose output: list all object files modified. In the case of
  1475. archives, 'objcopy -V' lists all members of the archive.
  1476. '--help'
  1477. Show a summary of the options to 'objcopy'.
  1478. '--info'
  1479. Display a list showing all architectures and object formats
  1480. available.
  1481. 
  1482. File: binutils.info, Node: objdump, Next: ranlib, Prev: objcopy, Up: Top
  1483. 4 objdump
  1484. *********
  1485. objdump [-a|--archive-headers]
  1486. [-b BFDNAME|--target=BFDNAME]
  1487. [-C|--demangle[=STYLE] ]
  1488. [-d|--disassemble[=SYMBOL]]
  1489. [-D|--disassemble-all]
  1490. [-z|--disassemble-zeroes]
  1491. [-EB|-EL|--endian={big | little }]
  1492. [-f|--file-headers]
  1493. [-F|--file-offsets]
  1494. [--file-start-context]
  1495. [-g|--debugging]
  1496. [-e|--debugging-tags]
  1497. [-h|--section-headers|--headers]
  1498. [-i|--info]
  1499. [-j SECTION|--section=SECTION]
  1500. [-l|--line-numbers]
  1501. [-S|--source]
  1502. [--source-comment[=TEXT]]
  1503. [-m MACHINE|--architecture=MACHINE]
  1504. [-M OPTIONS|--disassembler-options=OPTIONS]
  1505. [-p|--private-headers]
  1506. [-P OPTIONS|--private=OPTIONS]
  1507. [-r|--reloc]
  1508. [-R|--dynamic-reloc]
  1509. [-s|--full-contents]
  1510. [-W[lLiaprmfFsoRtUuTgAckK]|
  1511. --dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index,=addr,=cu_index,=links,=follow-links]]
  1512. [--ctf=SECTION]
  1513. [-G|--stabs]
  1514. [-t|--syms]
  1515. [-T|--dynamic-syms]
  1516. [-x|--all-headers]
  1517. [-w|--wide]
  1518. [--start-address=ADDRESS]
  1519. [--stop-address=ADDRESS]
  1520. [--prefix-addresses]
  1521. [--[no-]show-raw-insn]
  1522. [--adjust-vma=OFFSET]
  1523. [--dwarf-depth=N]
  1524. [--dwarf-start=N]
  1525. [--ctf-parent=SECTION]
  1526. [--ctf-symbols=SECTION]
  1527. [--ctf-strings=SECTION]
  1528. [--no-recurse-limit|--recurse-limit]
  1529. [--special-syms]
  1530. [--prefix=PREFIX]
  1531. [--prefix-strip=LEVEL]
  1532. [--insn-width=WIDTH]
  1533. [-V|--version]
  1534. [-H|--help]
  1535. OBJFILE...
  1536. 'objdump' displays information about one or more object files. The
  1537. options control what particular information to display. This
  1538. information is mostly useful to programmers who are working on the
  1539. compilation tools, as opposed to programmers who just want their program
  1540. to compile and work.
  1541. OBJFILE... are the object files to be examined. When you specify
  1542. archives, 'objdump' shows information on each of the member object
  1543. files.
  1544. The long and short forms of options, shown here as alternatives, are
  1545. equivalent. At least one option from the list
  1546. '-a,-d,-D,-e,-f,-g,-G,-h,-H,-p,-P,-r,-R,-s,-S,-t,-T,-V,-x' must be
  1547. given.
  1548. '-a'
  1549. '--archive-header'
  1550. If any of the OBJFILE files are archives, display the archive
  1551. header information (in a format similar to 'ls -l'). Besides the
  1552. information you could list with 'ar tv', 'objdump -a' shows the
  1553. object file format of each archive member.
  1554. '--adjust-vma=OFFSET'
  1555. When dumping information, first add OFFSET to all the section
  1556. addresses. This is useful if the section addresses do not
  1557. correspond to the symbol table, which can happen when putting
  1558. sections at particular addresses when using a format which can not
  1559. represent section addresses, such as a.out.
  1560. '-b BFDNAME'
  1561. '--target=BFDNAME'
  1562. Specify that the object-code format for the object files is
  1563. BFDNAME. This option may not be necessary; OBJDUMP can
  1564. automatically recognize many formats.
  1565. For example,
  1566. objdump -b oasys -m vax -h fu.o
  1567. displays summary information from the section headers ('-h') of
  1568. 'fu.o', which is explicitly identified ('-m') as a VAX object file
  1569. in the format produced by Oasys compilers. You can list the
  1570. formats available with the '-i' option. *Note Target Selection::,
  1571. for more information.
  1572. '-C'
  1573. '--demangle[=STYLE]'
  1574. Decode ("demangle") low-level symbol names into user-level names.
  1575. Besides removing any initial underscore prepended by the system,
  1576. this makes C++ function names readable. Different compilers have
  1577. different mangling styles. The optional demangling style argument
  1578. can be used to choose an appropriate demangling style for your
  1579. compiler. *Note c++filt::, for more information on demangling.
  1580. '--recurse-limit'
  1581. '--no-recurse-limit'
  1582. '--recursion-limit'
  1583. '--no-recursion-limit'
  1584. Enables or disables a limit on the amount of recursion performed
  1585. whilst demangling strings. Since the name mangling formats allow
  1586. for an inifinite level of recursion it is possible to create
  1587. strings whose decoding will exhaust the amount of stack space
  1588. available on the host machine, triggering a memory fault. The
  1589. limit tries to prevent this from happening by restricting recursion
  1590. to 2048 levels of nesting.
  1591. The default is for this limit to be enabled, but disabling it may
  1592. be necessary in order to demangle truly complicated names. Note
  1593. however that if the recursion limit is disabled then stack
  1594. exhaustion is possible and any bug reports about such an event will
  1595. be rejected.
  1596. '-g'
  1597. '--debugging'
  1598. Display debugging information. This attempts to parse STABS
  1599. debugging format information stored in the file and print it out
  1600. using a C like syntax. If no STABS debuging was found this option
  1601. falls back on the '-W' option to print any DWARF information in the
  1602. file.
  1603. '-e'
  1604. '--debugging-tags'
  1605. Like '-g', but the information is generated in a format compatible
  1606. with ctags tool.
  1607. '-d'
  1608. '--disassemble'
  1609. '--disassemble=SYMBOL'
  1610. Display the assembler mnemonics for the machine instructions from
  1611. the input file. This option only disassembles those sections which
  1612. are expected to contain instructions. If the optional SYMBOL
  1613. argument is given, then display the assembler mnemonics starting at
  1614. SYMBOL. If SYMBOL is a function name then disassembly will stop at
  1615. the end of the function, otherwise it will stop when the next
  1616. symbol is encountered. If there are no matches for SYMBOL then
  1617. nothing will be displayed.
  1618. Note if the '--dwarf=follow-links' option has also been enabled
  1619. then any symbol tables in linked debug info files will be read in
  1620. and used when disassembling.
  1621. '-D'
  1622. '--disassemble-all'
  1623. Like '-d', but disassemble the contents of all sections, not just
  1624. those expected to contain instructions.
  1625. This option also has a subtle effect on the disassembly of
  1626. instructions in code sections. When option '-d' is in effect
  1627. objdump will assume that any symbols present in a code section
  1628. occur on the boundary between instructions and it will refuse to
  1629. disassemble across such a boundary. When option '-D' is in effect
  1630. however this assumption is supressed. This means that it is
  1631. possible for the output of '-d' and '-D' to differ if, for example,
  1632. data is stored in code sections.
  1633. If the target is an ARM architecture this switch also has the
  1634. effect of forcing the disassembler to decode pieces of data found
  1635. in code sections as if they were instructions.
  1636. Note if the '--dwarf=follow-links' option has also been enabled
  1637. then any symbol tables in linked debug info files will be read in
  1638. and used when disassembling.
  1639. '--prefix-addresses'
  1640. When disassembling, print the complete address on each line. This
  1641. is the older disassembly format.
  1642. '-EB'
  1643. '-EL'
  1644. '--endian={big|little}'
  1645. Specify the endianness of the object files. This only affects
  1646. disassembly. This can be useful when disassembling a file format
  1647. which does not describe endianness information, such as S-records.
  1648. '-f'
  1649. '--file-headers'
  1650. Display summary information from the overall header of each of the
  1651. OBJFILE files.
  1652. '-F'
  1653. '--file-offsets'
  1654. When disassembling sections, whenever a symbol is displayed, also
  1655. display the file offset of the region of data that is about to be
  1656. dumped. If zeroes are being skipped, then when disassembly
  1657. resumes, tell the user how many zeroes were skipped and the file
  1658. offset of the location from where the disassembly resumes. When
  1659. dumping sections, display the file offset of the location from
  1660. where the dump starts.
  1661. '--file-start-context'
  1662. Specify that when displaying interlisted source code/disassembly
  1663. (assumes '-S') from a file that has not yet been displayed, extend
  1664. the context to the start of the file.
  1665. '-h'
  1666. '--section-headers'
  1667. '--headers'
  1668. Display summary information from the section headers of the object
  1669. file.
  1670. File segments may be relocated to nonstandard addresses, for
  1671. example by using the '-Ttext', '-Tdata', or '-Tbss' options to
  1672. 'ld'. However, some object file formats, such as a.out, do not
  1673. store the starting address of the file segments. In those
  1674. situations, although 'ld' relocates the sections correctly, using
  1675. 'objdump -h' to list the file section headers cannot show the
  1676. correct addresses. Instead, it shows the usual addresses, which
  1677. are implicit for the target.
  1678. Note, in some cases it is possible for a section to have both the
  1679. READONLY and the NOREAD attributes set. In such cases the NOREAD
  1680. attribute takes precedence, but 'objdump' will report both since
  1681. the exact setting of the flag bits might be important.
  1682. '-H'
  1683. '--help'
  1684. Print a summary of the options to 'objdump' and exit.
  1685. '-i'
  1686. '--info'
  1687. Display a list showing all architectures and object formats
  1688. available for specification with '-b' or '-m'.
  1689. '-j NAME'
  1690. '--section=NAME'
  1691. Display information only for section NAME.
  1692. '-l'
  1693. '--line-numbers'
  1694. Label the display (using debugging information) with the filename
  1695. and source line numbers corresponding to the object code or relocs
  1696. shown. Only useful with '-d', '-D', or '-r'.
  1697. '-m MACHINE'
  1698. '--architecture=MACHINE'
  1699. Specify the architecture to use when disassembling object files.
  1700. This can be useful when disassembling object files which do not
  1701. describe architecture information, such as S-records. You can list
  1702. the available architectures with the '-i' option.
  1703. If the target is an ARM architecture then this switch has an
  1704. additional effect. It restricts the disassembly to only those
  1705. instructions supported by the architecture specified by MACHINE.
  1706. If it is necessary to use this switch because the input file does
  1707. not contain any architecture information, but it is also desired to
  1708. disassemble all the instructions use '-marm'.
  1709. '-M OPTIONS'
  1710. '--disassembler-options=OPTIONS'
  1711. Pass target specific information to the disassembler. Only
  1712. supported on some targets. If it is necessary to specify more than
  1713. one disassembler option then multiple '-M' options can be used or
  1714. can be placed together into a comma separated list.
  1715. For ARC, 'dsp' controls the printing of DSP instructions, 'spfp'
  1716. selects the printing of FPX single precision FP instructions,
  1717. 'dpfp' selects the printing of FPX double precision FP
  1718. instructions, 'quarkse_em' selects the printing of special
  1719. QuarkSE-EM instructions, 'fpuda' selects the printing of double
  1720. precision assist instructions, 'fpus' selects the printing of FPU
  1721. single precision FP instructions, while 'fpud' selects the printing
  1722. of FPU double precision FP instructions. Additionally, one can
  1723. choose to have all the immediates printed in hexadecimal using
  1724. 'hex'. By default, the short immediates are printed using the
  1725. decimal representation, while the long immediate values are printed
  1726. as hexadecimal.
  1727. 'cpu=...' allows to enforce a particular ISA when disassembling
  1728. instructions, overriding the '-m' value or whatever is in the ELF
  1729. file. This might be useful to select ARC EM or HS ISA, because
  1730. architecture is same for those and disassembler relies on private
  1731. ELF header data to decide if code is for EM or HS. This option
  1732. might be specified multiple times - only the latest value will be
  1733. used. Valid values are same as for the assembler '-mcpu=...'
  1734. option.
  1735. If the target is an ARM architecture then this switch can be used
  1736. to select which register name set is used during disassembler.
  1737. Specifying '-M reg-names-std' (the default) will select the
  1738. register names as used in ARM's instruction set documentation, but
  1739. with register 13 called 'sp', register 14 called 'lr' and register
  1740. 15 called 'pc'. Specifying '-M reg-names-apcs' will select the
  1741. name set used by the ARM Procedure Call Standard, whilst specifying
  1742. '-M reg-names-raw' will just use 'r' followed by the register
  1743. number.
  1744. There are also two variants on the APCS register naming scheme
  1745. enabled by '-M reg-names-atpcs' and '-M reg-names-special-atpcs'
  1746. which use the ARM/Thumb Procedure Call Standard naming conventions.
  1747. (Either with the normal register names or the special register
  1748. names).
  1749. This option can also be used for ARM architectures to force the
  1750. disassembler to interpret all instructions as Thumb instructions by
  1751. using the switch '--disassembler-options=force-thumb'. This can be
  1752. useful when attempting to disassemble thumb code produced by other
  1753. compilers.
  1754. For AArch64 targets this switch can be used to set whether
  1755. instructions are disassembled as the most general instruction using
  1756. the '-M no-aliases' option or whether instruction notes should be
  1757. generated as comments in the disasssembly using '-M notes'.
  1758. For the x86, some of the options duplicate functions of the '-m'
  1759. switch, but allow finer grained control. Multiple selections from
  1760. the following may be specified as a comma separated string.
  1761. 'x86-64'
  1762. 'i386'
  1763. 'i8086'
  1764. Select disassembly for the given architecture.
  1765. 'intel'
  1766. 'att'
  1767. Select between intel syntax mode and AT&T syntax mode.
  1768. 'amd64'
  1769. 'intel64'
  1770. Select between AMD64 ISA and Intel64 ISA.
  1771. 'intel-mnemonic'
  1772. 'att-mnemonic'
  1773. Select between intel mnemonic mode and AT&T mnemonic mode.
  1774. Note: 'intel-mnemonic' implies 'intel' and 'att-mnemonic'
  1775. implies 'att'.
  1776. 'addr64'
  1777. 'addr32'
  1778. 'addr16'
  1779. 'data32'
  1780. 'data16'
  1781. Specify the default address size and operand size. These five
  1782. options will be overridden if 'x86-64', 'i386' or 'i8086'
  1783. appear later in the option string.
  1784. 'suffix'
  1785. When in AT&T mode, instructs the disassembler to print a
  1786. mnemonic suffix even when the suffix could be inferred by the
  1787. operands.
  1788. For PowerPC, the '-M' argument 'raw' selects disasssembly of
  1789. hardware insns rather than aliases. For example, you will see
  1790. 'rlwinm' rather than 'clrlwi', and 'addi' rather than 'li'. All of
  1791. the '-m' arguments for 'gas' that select a CPU are supported.
  1792. These are: '403', '405', '440', '464', '476', '601', '603', '604',
  1793. '620', '7400', '7410', '7450', '7455', '750cl', '821', '850',
  1794. '860', 'a2', 'booke', 'booke32', 'cell', 'com', 'e200z4', 'e300',
  1795. 'e500', 'e500mc', 'e500mc64', 'e500x2', 'e5500', 'e6500', 'efs',
  1796. 'power4', 'power5', 'power6', 'power7', 'power8', 'power9', 'ppc',
  1797. 'ppc32', 'ppc64', 'ppc64bridge', 'ppcps', 'pwr', 'pwr2', 'pwr4',
  1798. 'pwr5', 'pwr5x', 'pwr6', 'pwr7', 'pwr8', 'pwr9', 'pwrx', 'titan',
  1799. and 'vle'. '32' and '64' modify the default or a prior CPU
  1800. selection, disabling and enabling 64-bit insns respectively. In
  1801. addition, 'altivec', 'any', 'htm', 'vsx', and 'spe' add
  1802. capabilities to a previous _or later_ CPU selection. 'any' will
  1803. disassemble any opcode known to binutils, but in cases where an
  1804. opcode has two different meanings or different arguments, you may
  1805. not see the disassembly you expect. If you disassemble without
  1806. giving a CPU selection, a default will be chosen from information
  1807. gleaned by BFD from the object files headers, but the result again
  1808. may not be as you expect.
  1809. For MIPS, this option controls the printing of instruction mnemonic
  1810. names and register names in disassembled instructions. Multiple
  1811. selections from the following may be specified as a comma separated
  1812. string, and invalid options are ignored:
  1813. 'no-aliases'
  1814. Print the 'raw' instruction mnemonic instead of some pseudo
  1815. instruction mnemonic. I.e., print 'daddu' or 'or' instead of
  1816. 'move', 'sll' instead of 'nop', etc.
  1817. 'msa'
  1818. Disassemble MSA instructions.
  1819. 'virt'
  1820. Disassemble the virtualization ASE instructions.
  1821. 'xpa'
  1822. Disassemble the eXtended Physical Address (XPA) ASE
  1823. instructions.
  1824. 'gpr-names=ABI'
  1825. Print GPR (general-purpose register) names as appropriate for
  1826. the specified ABI. By default, GPR names are selected
  1827. according to the ABI of the binary being disassembled.
  1828. 'fpr-names=ABI'
  1829. Print FPR (floating-point register) names as appropriate for
  1830. the specified ABI. By default, FPR numbers are printed rather
  1831. than names.
  1832. 'cp0-names=ARCH'
  1833. Print CP0 (system control coprocessor; coprocessor 0) register
  1834. names as appropriate for the CPU or architecture specified by
  1835. ARCH. By default, CP0 register names are selected according
  1836. to the architecture and CPU of the binary being disassembled.
  1837. 'hwr-names=ARCH'
  1838. Print HWR (hardware register, used by the 'rdhwr' instruction)
  1839. names as appropriate for the CPU or architecture specified by
  1840. ARCH. By default, HWR names are selected according to the
  1841. architecture and CPU of the binary being disassembled.
  1842. 'reg-names=ABI'
  1843. Print GPR and FPR names as appropriate for the selected ABI.
  1844. 'reg-names=ARCH'
  1845. Print CPU-specific register names (CP0 register and HWR names)
  1846. as appropriate for the selected CPU or architecture.
  1847. For any of the options listed above, ABI or ARCH may be specified
  1848. as 'numeric' to have numbers printed rather than names, for the
  1849. selected types of registers. You can list the available values of
  1850. ABI and ARCH using the '--help' option.
  1851. For VAX, you can specify function entry addresses with '-M
  1852. entry:0xf00ba'. You can use this multiple times to properly
  1853. disassemble VAX binary files that don't contain symbol tables (like
  1854. ROM dumps). In these cases, the function entry mask would
  1855. otherwise be decoded as VAX instructions, which would probably lead
  1856. the rest of the function being wrongly disassembled.
  1857. '-p'
  1858. '--private-headers'
  1859. Print information that is specific to the object file format. The
  1860. exact information printed depends upon the object file format. For
  1861. some object file formats, no additional information is printed.
  1862. '-P OPTIONS'
  1863. '--private=OPTIONS'
  1864. Print information that is specific to the object file format. The
  1865. argument OPTIONS is a comma separated list that depends on the
  1866. format (the lists of options is displayed with the help).
  1867. For XCOFF, the available options are:
  1868. 'header'
  1869. 'aout'
  1870. 'sections'
  1871. 'syms'
  1872. 'relocs'
  1873. 'lineno,'
  1874. 'loader'
  1875. 'except'
  1876. 'typchk'
  1877. 'traceback'
  1878. 'toc'
  1879. 'ldinfo'
  1880. Not all object formats support this option. In particular the ELF
  1881. format does not use it.
  1882. '-r'
  1883. '--reloc'
  1884. Print the relocation entries of the file. If used with '-d' or
  1885. '-D', the relocations are printed interspersed with the
  1886. disassembly.
  1887. '-R'
  1888. '--dynamic-reloc'
  1889. Print the dynamic relocation entries of the file. This is only
  1890. meaningful for dynamic objects, such as certain types of shared
  1891. libraries. As for '-r', if used with '-d' or '-D', the relocations
  1892. are printed interspersed with the disassembly.
  1893. '-s'
  1894. '--full-contents'
  1895. Display the full contents of any sections requested. By default
  1896. all non-empty sections are displayed.
  1897. '-S'
  1898. '--source'
  1899. Display source code intermixed with disassembly, if possible.
  1900. Implies '-d'.
  1901. '--source-comment[=TXT]'
  1902. Like the '-S' option, but all source code lines are displayed with
  1903. a prefix of TXT. Typically TXT will be a comment string which can
  1904. be used to distinguish the assembler code from the source code. If
  1905. TXT is not provided then a default string of "# " (hash followed by
  1906. a space), will be used.
  1907. '--prefix=PREFIX'
  1908. Specify PREFIX to add to the absolute paths when used with '-S'.
  1909. '--prefix-strip=LEVEL'
  1910. Indicate how many initial directory names to strip off the
  1911. hardwired absolute paths. It has no effect without
  1912. '--prefix='PREFIX.
  1913. '--show-raw-insn'
  1914. When disassembling instructions, print the instruction in hex as
  1915. well as in symbolic form. This is the default except when
  1916. '--prefix-addresses' is used.
  1917. '--no-show-raw-insn'
  1918. When disassembling instructions, do not print the instruction
  1919. bytes. This is the default when '--prefix-addresses' is used.
  1920. '--insn-width=WIDTH'
  1921. Display WIDTH bytes on a single line when disassembling
  1922. instructions.
  1923. '-W[lLiaprmfFsoRtUuTgAckK]'
  1924. '--dwarf[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index,=addr,=cu_index,=links,=follow-links]'
  1925. Displays the contents of the DWARF debug sections in the file, if
  1926. any are present. Compressed debug sections are automatically
  1927. decompressed (temporarily) before they are displayed. If one or
  1928. more of the optional letters or words follows the switch then only
  1929. those type(s) of data will be dumped. The letters and words refer
  1930. to the following information:
  1931. 'a'
  1932. '=abbrev'
  1933. Displays the contents of the '.debug_abbrev' section.
  1934. 'A'
  1935. '=addr'
  1936. Displays the contents of the '.debug_addr' section.
  1937. 'c'
  1938. '=cu_index'
  1939. Displays the contents of the '.debug_cu_index' and/or
  1940. '.debug_tu_index' sections.
  1941. 'f'
  1942. '=frames'
  1943. Display the raw contents of a '.debug_frame' section.
  1944. 'F'
  1945. '=frame-interp'
  1946. Display the interpreted contents of a '.debug_frame' section.
  1947. 'g'
  1948. '=gdb_index'
  1949. Displays the contents of the '.gdb_index' and/or
  1950. '.debug_names' sections.
  1951. 'i'
  1952. '=info'
  1953. Displays the contents of the '.debug_info' section. Note: the
  1954. output from this option can also be restricted by the use of
  1955. the '--dwarf-depth' and '--dwarf-start' options.
  1956. 'k'
  1957. '=links'
  1958. Displays the contents of the '.gnu_debuglink' and/or
  1959. '.gnu_debugaltlink' sections. Also displays any links to
  1960. separate dwarf object files (dwo), if they are specified by
  1961. the DW_AT_GNU_dwo_name or DW_AT_dwo_name attributes in the
  1962. '.debug_info' section.
  1963. 'K'
  1964. '=follow-links'
  1965. Display the contents of any selected debug sections that are
  1966. found in linked, separate debug info file(s). This can result
  1967. in multiple versions of the same debug section being displayed
  1968. if it exists in more than one file.
  1969. In addition, when displaying DWARF attributes, if a form is
  1970. found that references the separate debug info file, then the
  1971. referenced contents will also be displayed.
  1972. 'l'
  1973. '=rawline'
  1974. Displays the contents of the '.debug_line' section in a raw
  1975. format.
  1976. 'L'
  1977. '=decodedline'
  1978. Displays the interpreted contents of the '.debug_line'
  1979. section.
  1980. 'm'
  1981. '=macro'
  1982. Displays the contents of the '.debug_macro' and/or
  1983. '.debug_macinfo' sections.
  1984. 'o'
  1985. '=loc'
  1986. Displays the contents of the '.debug_loc' and/or
  1987. '.debug_loclists' sections.
  1988. 'p'
  1989. '=pubnames'
  1990. Displays the contents of the '.debug_pubnames' and/or
  1991. '.debug_gnu_pubnames' sections.
  1992. 'r'
  1993. '=aranges'
  1994. Displays the contents of the '.debug_aranges' section.
  1995. 'R'
  1996. '=Ranges'
  1997. Displays the contents of the '.debug_ranges' and/or
  1998. '.debug_rnglists' sections.
  1999. 's'
  2000. '=str'
  2001. Displays the contents of the '.debug_str', '.debug_line_str'
  2002. and/or '.debug_str_offsets' sections.
  2003. 't'
  2004. '=pubtype'
  2005. Displays the contents of the '.debug_pubtypes' and/or
  2006. '.debug_gnu_pubtypes' sections.
  2007. 'T'
  2008. '=trace_aranges'
  2009. Displays the contents of the '.trace_aranges' section.
  2010. 'u'
  2011. '=trace_abbrev'
  2012. Displays the contents of the '.trace_abbrev' section.
  2013. 'U'
  2014. '=trace_info'
  2015. Displays the contents of the '.trace_info' section.
  2016. Note: displaying the contents of '.debug_static_funcs',
  2017. '.debug_static_vars' and 'debug_weaknames' sections is not
  2018. currently supported.
  2019. '--dwarf-depth=N'
  2020. Limit the dump of the '.debug_info' section to N children. This is
  2021. only useful with '--debug-dump=info'. The default is to print all
  2022. DIEs; the special value 0 for N will also have this effect.
  2023. With a non-zero value for N, DIEs at or deeper than N levels will
  2024. not be printed. The range for N is zero-based.
  2025. '--dwarf-start=N'
  2026. Print only DIEs beginning with the DIE numbered N. This is only
  2027. useful with '--debug-dump=info'.
  2028. If specified, this option will suppress printing of any header
  2029. information and all DIEs before the DIE numbered N. Only siblings
  2030. and children of the specified DIE will be printed.
  2031. This can be used in conjunction with '--dwarf-depth'.
  2032. '--dwarf-check'
  2033. Enable additional checks for consistency of Dwarf information.
  2034. '--ctf=SECTION'
  2035. Display the contents of the specified CTF section. CTF sections
  2036. themselves contain many subsections, all of which are displayed in
  2037. order.
  2038. '--ctf-parent=SECTION'
  2039. Specify the name of another section from which the CTF file can
  2040. inherit types.
  2041. '-G'
  2042. '--stabs'
  2043. Display the full contents of any sections requested. Display the
  2044. contents of the .stab and .stab.index and .stab.excl sections from
  2045. an ELF file. This is only useful on systems (such as Solaris 2.0)
  2046. in which '.stab' debugging symbol-table entries are carried in an
  2047. ELF section. In most other file formats, debugging symbol-table
  2048. entries are interleaved with linkage symbols, and are visible in
  2049. the '--syms' output.
  2050. '--start-address=ADDRESS'
  2051. Start displaying data at the specified address. This affects the
  2052. output of the '-d', '-r' and '-s' options.
  2053. '--stop-address=ADDRESS'
  2054. Stop displaying data at the specified address. This affects the
  2055. output of the '-d', '-r' and '-s' options.
  2056. '-t'
  2057. '--syms'
  2058. Print the symbol table entries of the file. This is similar to the
  2059. information provided by the 'nm' program, although the display
  2060. format is different. The format of the output depends upon the
  2061. format of the file being dumped, but there are two main types. One
  2062. looks like this:
  2063. [ 4](sec 3)(fl 0x00)(ty 0)(scl 3) (nx 1) 0x00000000 .bss
  2064. [ 6](sec 1)(fl 0x00)(ty 0)(scl 2) (nx 0) 0x00000000 fred
  2065. where the number inside the square brackets is the number of the
  2066. entry in the symbol table, the SEC number is the section number,
  2067. the FL value are the symbol's flag bits, the TY number is the
  2068. symbol's type, the SCL number is the symbol's storage class and the
  2069. NX value is the number of auxilary entries associated with the
  2070. symbol. The last two fields are the symbol's value and its name.
  2071. The other common output format, usually seen with ELF based files,
  2072. looks like this:
  2073. 00000000 l d .bss 00000000 .bss
  2074. 00000000 g .text 00000000 fred
  2075. Here the first number is the symbol's value (sometimes refered to
  2076. as its address). The next field is actually a set of characters
  2077. and spaces indicating the flag bits that are set on the symbol.
  2078. These characters are described below. Next is the section with
  2079. which the symbol is associated or _*ABS*_ if the section is
  2080. absolute (ie not connected with any section), or _*UND*_ if the
  2081. section is referenced in the file being dumped, but not defined
  2082. there.
  2083. After the section name comes another field, a number, which for
  2084. common symbols is the alignment and for other symbol is the size.
  2085. Finally the symbol's name is displayed.
  2086. The flag characters are divided into 7 groups as follows:
  2087. 'l'
  2088. 'g'
  2089. 'u'
  2090. '!'
  2091. The symbol is a local (l), global (g), unique global (u),
  2092. neither global nor local (a space) or both global and local
  2093. (!). A symbol can be neither local or global for a variety of
  2094. reasons, e.g., because it is used for debugging, but it is
  2095. probably an indication of a bug if it is ever both local and
  2096. global. Unique global symbols are a GNU extension to the
  2097. standard set of ELF symbol bindings. For such a symbol the
  2098. dynamic linker will make sure that in the entire process there
  2099. is just one symbol with this name and type in use.
  2100. 'w'
  2101. The symbol is weak (w) or strong (a space).
  2102. 'C'
  2103. The symbol denotes a constructor (C) or an ordinary symbol (a
  2104. space).
  2105. 'W'
  2106. The symbol is a warning (W) or a normal symbol (a space). A
  2107. warning symbol's name is a message to be displayed if the
  2108. symbol following the warning symbol is ever referenced.
  2109. 'I'
  2110. 'i'
  2111. The symbol is an indirect reference to another symbol (I), a
  2112. function to be evaluated during reloc processing (i) or a
  2113. normal symbol (a space).
  2114. 'd'
  2115. 'D'
  2116. The symbol is a debugging symbol (d) or a dynamic symbol (D)
  2117. or a normal symbol (a space).
  2118. 'F'
  2119. 'f'
  2120. 'O'
  2121. The symbol is the name of a function (F) or a file (f) or an
  2122. object (O) or just a normal symbol (a space).
  2123. '-T'
  2124. '--dynamic-syms'
  2125. Print the dynamic symbol table entries of the file. This is only
  2126. meaningful for dynamic objects, such as certain types of shared
  2127. libraries. This is similar to the information provided by the 'nm'
  2128. program when given the '-D' ('--dynamic') option.
  2129. The output format is similar to that produced by the '--syms'
  2130. option, except that an extra field is inserted before the symbol's
  2131. name, giving the version information associated with the symbol.
  2132. If the version is the default version to be used when resolving
  2133. unversioned references to the symbol then it's displayed as is,
  2134. otherwise it's put into parentheses.
  2135. '--special-syms'
  2136. When displaying symbols include those which the target considers to
  2137. be special in some way and which would not normally be of interest
  2138. to the user.
  2139. '-V'
  2140. '--version'
  2141. Print the version number of 'objdump' and exit.
  2142. '-x'
  2143. '--all-headers'
  2144. Display all available header information, including the symbol
  2145. table and relocation entries. Using '-x' is equivalent to
  2146. specifying all of '-a -f -h -p -r -t'.
  2147. '-w'
  2148. '--wide'
  2149. Format some lines for output devices that have more than 80
  2150. columns. Also do not truncate symbol names when they are
  2151. displayed.
  2152. '-z'
  2153. '--disassemble-zeroes'
  2154. Normally the disassembly output will skip blocks of zeroes. This
  2155. option directs the disassembler to disassemble those blocks, just
  2156. like any other data.
  2157. 
  2158. File: binutils.info, Node: ranlib, Next: size, Prev: objdump, Up: Top
  2159. 5 ranlib
  2160. ********
  2161. ranlib [--plugin NAME] [-DhHvVt] ARCHIVE
  2162. 'ranlib' generates an index to the contents of an archive and stores
  2163. it in the archive. The index lists each symbol defined by a member of
  2164. an archive that is a relocatable object file.
  2165. You may use 'nm -s' or 'nm --print-armap' to list this index.
  2166. An archive with such an index speeds up linking to the library and
  2167. allows routines in the library to call each other without regard to
  2168. their placement in the archive.
  2169. The GNU 'ranlib' program is another form of GNU 'ar'; running
  2170. 'ranlib' is completely equivalent to executing 'ar -s'. *Note ar::.
  2171. '-h'
  2172. '-H'
  2173. '--help'
  2174. Show usage information for 'ranlib'.
  2175. '-v'
  2176. '-V'
  2177. '--version'
  2178. Show the version number of 'ranlib'.
  2179. '-D'
  2180. Operate in _deterministic_ mode. The symbol map archive member's
  2181. header will show zero for the UID, GID, and timestamp. When this
  2182. option is used, multiple runs will produce identical output files.
  2183. If 'binutils' was configured with
  2184. '--enable-deterministic-archives', then this mode is on by default.
  2185. It can be disabled with the '-U' option, described below.
  2186. '-t'
  2187. Update the timestamp of the symbol map of an archive.
  2188. '-U'
  2189. Do _not_ operate in _deterministic_ mode. This is the inverse of
  2190. the '-D' option, above: the archive index will get actual UID, GID,
  2191. timestamp, and file mode values.
  2192. If 'binutils' was configured _without_
  2193. '--enable-deterministic-archives', then this mode is on by default.
  2194. 
  2195. File: binutils.info, Node: size, Next: strings, Prev: ranlib, Up: Top
  2196. 6 size
  2197. ******
  2198. size [-A|-B|-G|--format=COMPATIBILITY]
  2199. [--help]
  2200. [-d|-o|-x|--radix=NUMBER]
  2201. [--common]
  2202. [-t|--totals]
  2203. [--target=BFDNAME] [-V|--version]
  2204. [OBJFILE...]
  2205. The GNU 'size' utility lists the section sizes and the total size for
  2206. each of the binary files OBJFILE on its argument list. By default, one
  2207. line of output is generated for each file or each module if the file is
  2208. an archive.
  2209. OBJFILE... are the files to be examined. If none are specified, the
  2210. file 'a.out' will be used instead.
  2211. The command-line options have the following meanings:
  2212. '-A'
  2213. '-B'
  2214. '-G'
  2215. '--format=COMPATIBILITY'
  2216. Using one of these options, you can choose whether the output from
  2217. GNU 'size' resembles output from System V 'size' (using '-A', or
  2218. '--format=sysv'), or Berkeley 'size' (using '-B', or
  2219. '--format=berkeley'). The default is the one-line format similar
  2220. to Berkeley's. Alternatively, you can choose the GNU format output
  2221. (using '-G', or '--format=gnu'), this is similar to Berkeley's
  2222. output format, but sizes are counted differently.
  2223. Here is an example of the Berkeley (default) format of output from
  2224. 'size':
  2225. $ size --format=Berkeley ranlib size
  2226. text data bss dec hex filename
  2227. 294880 81920 11592 388392 5ed28 ranlib
  2228. 294880 81920 11888 388688 5ee50 size
  2229. The Berkeley style output counts read only data in the 'text'
  2230. column, not in the 'data' column, the 'dec' and 'hex' columns both
  2231. display the sum of the 'text', 'data', and 'bss' columns in decimal
  2232. and hexadecimal respectively.
  2233. The GNU format counts read only data in the 'data' column, not the
  2234. 'text' column, and only displays the sum of the 'text', 'data', and
  2235. 'bss' columns once, in the 'total' column. The '--radix' option
  2236. can be used to change the number base for all columns. Here is the
  2237. same data displayed with GNU conventions:
  2238. $ size --format=GNU ranlib size
  2239. text data bss total filename
  2240. 279880 96920 11592 388392 ranlib
  2241. 279880 96920 11888 388688 size
  2242. This is the same data, but displayed closer to System V
  2243. conventions:
  2244. $ size --format=SysV ranlib size
  2245. ranlib :
  2246. section size addr
  2247. .text 294880 8192
  2248. .data 81920 303104
  2249. .bss 11592 385024
  2250. Total 388392
  2251. size :
  2252. section size addr
  2253. .text 294880 8192
  2254. .data 81920 303104
  2255. .bss 11888 385024
  2256. Total 388688
  2257. '--help'
  2258. Show a summary of acceptable arguments and options.
  2259. '-d'
  2260. '-o'
  2261. '-x'
  2262. '--radix=NUMBER'
  2263. Using one of these options, you can control whether the size of
  2264. each section is given in decimal ('-d', or '--radix=10'); octal
  2265. ('-o', or '--radix=8'); or hexadecimal ('-x', or '--radix=16'). In
  2266. '--radix=NUMBER', only the three values (8, 10, 16) are supported.
  2267. The total size is always given in two radices; decimal and
  2268. hexadecimal for '-d' or '-x' output, or octal and hexadecimal if
  2269. you're using '-o'.
  2270. '--common'
  2271. Print total size of common symbols in each file. When using
  2272. Berkeley or GNU format these are included in the bss size.
  2273. '-t'
  2274. '--totals'
  2275. Show totals of all objects listed (Berkeley or GNU format mode
  2276. only).
  2277. '--target=BFDNAME'
  2278. Specify that the object-code format for OBJFILE is BFDNAME. This
  2279. option may not be necessary; 'size' can automatically recognize
  2280. many formats. *Note Target Selection::, for more information.
  2281. '-V'
  2282. '--version'
  2283. Display the version number of 'size'.
  2284. 
  2285. File: binutils.info, Node: strings, Next: strip, Prev: size, Up: Top
  2286. 7 strings
  2287. *********
  2288. strings [-afovV] [-MIN-LEN]
  2289. [-n MIN-LEN] [--bytes=MIN-LEN]
  2290. [-t RADIX] [--radix=RADIX]
  2291. [-e ENCODING] [--encoding=ENCODING]
  2292. [-] [--all] [--print-file-name]
  2293. [-T BFDNAME] [--target=BFDNAME]
  2294. [-w] [--include-all-whitespace]
  2295. [-s] [--output-separatorSEP_STRING]
  2296. [--help] [--version] FILE...
  2297. For each FILE given, GNU 'strings' prints the printable character
  2298. sequences that are at least 4 characters long (or the number given with
  2299. the options below) and are followed by an unprintable character.
  2300. Depending upon how the strings program was configured it will default
  2301. to either displaying all the printable sequences that it can find in
  2302. each file, or only those sequences that are in loadable, initialized
  2303. data sections. If the file type in unrecognizable, or if strings is
  2304. reading from stdin then it will always display all of the printable
  2305. sequences that it can find.
  2306. For backwards compatibility any file that occurs after a command-line
  2307. option of just '-' will also be scanned in full, regardless of the
  2308. presence of any '-d' option.
  2309. 'strings' is mainly useful for determining the contents of non-text
  2310. files.
  2311. '-a'
  2312. '--all'
  2313. '-'
  2314. Scan the whole file, regardless of what sections it contains or
  2315. whether those sections are loaded or initialized. Normally this is
  2316. the default behaviour, but strings can be configured so that the
  2317. '-d' is the default instead.
  2318. The '-' option is position dependent and forces strings to perform
  2319. full scans of any file that is mentioned after the '-' on the
  2320. command line, even if the '-d' option has been specified.
  2321. '-d'
  2322. '--data'
  2323. Only print strings from initialized, loaded data sections in the
  2324. file. This may reduce the amount of garbage in the output, but it
  2325. also exposes the strings program to any security flaws that may be
  2326. present in the BFD library used to scan and load sections. Strings
  2327. can be configured so that this option is the default behaviour. In
  2328. such cases the '-a' option can be used to avoid using the BFD
  2329. library and instead just print all of the strings found in the
  2330. file.
  2331. '-f'
  2332. '--print-file-name'
  2333. Print the name of the file before each string.
  2334. '--help'
  2335. Print a summary of the program usage on the standard output and
  2336. exit.
  2337. '-MIN-LEN'
  2338. '-n MIN-LEN'
  2339. '--bytes=MIN-LEN'
  2340. Print sequences of characters that are at least MIN-LEN characters
  2341. long, instead of the default 4.
  2342. '-o'
  2343. Like '-t o'. Some other versions of 'strings' have '-o' act like
  2344. '-t d' instead. Since we can not be compatible with both ways, we
  2345. simply chose one.
  2346. '-t RADIX'
  2347. '--radix=RADIX'
  2348. Print the offset within the file before each string. The single
  2349. character argument specifies the radix of the offset--'o' for
  2350. octal, 'x' for hexadecimal, or 'd' for decimal.
  2351. '-e ENCODING'
  2352. '--encoding=ENCODING'
  2353. Select the character encoding of the strings that are to be found.
  2354. Possible values for ENCODING are: 's' = single-7-bit-byte
  2355. characters (ASCII, ISO 8859, etc., default), 'S' =
  2356. single-8-bit-byte characters, 'b' = 16-bit bigendian, 'l' = 16-bit
  2357. littleendian, 'B' = 32-bit bigendian, 'L' = 32-bit littleendian.
  2358. Useful for finding wide character strings. ('l' and 'b' apply to,
  2359. for example, Unicode UTF-16/UCS-2 encodings).
  2360. '-T BFDNAME'
  2361. '--target=BFDNAME'
  2362. Specify an object code format other than your system's default
  2363. format. *Note Target Selection::, for more information.
  2364. '-v'
  2365. '-V'
  2366. '--version'
  2367. Print the program version number on the standard output and exit.
  2368. '-w'
  2369. '--include-all-whitespace'
  2370. By default tab and space characters are included in the strings
  2371. that are displayed, but other whitespace characters, such a
  2372. newlines and carriage returns, are not. The '-w' option changes
  2373. this so that all whitespace characters are considered to be part of
  2374. a string.
  2375. '-s'
  2376. '--output-separator'
  2377. By default, output strings are delimited by a new-line. This
  2378. option allows you to supply any string to be used as the output
  2379. record separator. Useful with -include-all-whitespace where
  2380. strings may contain new-lines internally.
  2381. 
  2382. File: binutils.info, Node: strip, Next: c++filt, Prev: strings, Up: Top
  2383. 8 strip
  2384. *******
  2385. strip [-F BFDNAME |--target=BFDNAME]
  2386. [-I BFDNAME |--input-target=BFDNAME]
  2387. [-O BFDNAME |--output-target=BFDNAME]
  2388. [-s|--strip-all]
  2389. [-S|-g|-d|--strip-debug]
  2390. [--strip-dwo]
  2391. [-K SYMBOLNAME|--keep-symbol=SYMBOLNAME]
  2392. [-M|--merge-notes][--no-merge-notes]
  2393. [-N SYMBOLNAME |--strip-symbol=SYMBOLNAME]
  2394. [-w|--wildcard]
  2395. [-x|--discard-all] [-X |--discard-locals]
  2396. [-R SECTIONNAME |--remove-section=SECTIONNAME]
  2397. [--remove-relocations=SECTIONPATTERN]
  2398. [-o FILE] [-p|--preserve-dates]
  2399. [-D|--enable-deterministic-archives]
  2400. [-U|--disable-deterministic-archives]
  2401. [--keep-file-symbols]
  2402. [--only-keep-debug]
  2403. [-v |--verbose] [-V|--version]
  2404. [--help] [--info]
  2405. OBJFILE...
  2406. GNU 'strip' discards all symbols from object files OBJFILE. The list
  2407. of object files may include archives. At least one object file must be
  2408. given.
  2409. 'strip' modifies the files named in its argument, rather than writing
  2410. modified copies under different names.
  2411. '-F BFDNAME'
  2412. '--target=BFDNAME'
  2413. Treat the original OBJFILE as a file with the object code format
  2414. BFDNAME, and rewrite it in the same format. *Note Target
  2415. Selection::, for more information.
  2416. '--help'
  2417. Show a summary of the options to 'strip' and exit.
  2418. '--info'
  2419. Display a list showing all architectures and object formats
  2420. available.
  2421. '-I BFDNAME'
  2422. '--input-target=BFDNAME'
  2423. Treat the original OBJFILE as a file with the object code format
  2424. BFDNAME. *Note Target Selection::, for more information.
  2425. '-O BFDNAME'
  2426. '--output-target=BFDNAME'
  2427. Replace OBJFILE with a file in the output format BFDNAME. *Note
  2428. Target Selection::, for more information.
  2429. '-R SECTIONNAME'
  2430. '--remove-section=SECTIONNAME'
  2431. Remove any section named SECTIONNAME from the output file, in
  2432. addition to whatever sections would otherwise be removed. This
  2433. option may be given more than once. Note that using this option
  2434. inappropriately may make the output file unusable. The wildcard
  2435. character '*' may be given at the end of SECTIONNAME. If so, then
  2436. any section starting with SECTIONNAME will be removed.
  2437. If the first character of SECTIONPATTERN is the exclamation point
  2438. (!) then matching sections will not be removed even if an earlier
  2439. use of '--remove-section' on the same command line would otherwise
  2440. remove it. For example:
  2441. --remove-section=.text.* --remove-section=!.text.foo
  2442. will remove all sections matching the pattern '.text.*', but will
  2443. not remove the section '.text.foo'.
  2444. '--remove-relocations=SECTIONPATTERN'
  2445. Remove relocations from the output file for any section matching
  2446. SECTIONPATTERN. This option may be given more than once. Note
  2447. that using this option inappropriately may make the output file
  2448. unusable. Wildcard characters are accepted in SECTIONPATTERN. For
  2449. example:
  2450. --remove-relocations=.text.*
  2451. will remove the relocations for all sections matching the patter
  2452. '.text.*'.
  2453. If the first character of SECTIONPATTERN is the exclamation point
  2454. (!) then matching sections will not have their relocation removed
  2455. even if an earlier use of '--remove-relocations' on the same
  2456. command line would otherwise cause the relocations to be removed.
  2457. For example:
  2458. --remove-relocations=.text.* --remove-relocations=!.text.foo
  2459. will remove all relocations for sections matching the pattern
  2460. '.text.*', but will not remove relocations for the section
  2461. '.text.foo'.
  2462. '-s'
  2463. '--strip-all'
  2464. Remove all symbols.
  2465. '-g'
  2466. '-S'
  2467. '-d'
  2468. '--strip-debug'
  2469. Remove debugging symbols only.
  2470. '--strip-dwo'
  2471. Remove the contents of all DWARF .dwo sections, leaving the
  2472. remaining debugging sections and all symbols intact. See the
  2473. description of this option in the 'objcopy' section for more
  2474. information.
  2475. '--strip-unneeded'
  2476. Remove all symbols that are not needed for relocation processing.
  2477. '-K SYMBOLNAME'
  2478. '--keep-symbol=SYMBOLNAME'
  2479. When stripping symbols, keep symbol SYMBOLNAME even if it would
  2480. normally be stripped. This option may be given more than once.
  2481. '-M'
  2482. '--merge-notes'
  2483. '--no-merge-notes'
  2484. For ELF files, attempt (or do not attempt) to reduce the size of
  2485. any SHT_NOTE type sections by removing duplicate notes. The
  2486. default is to attempt this reduction unless stripping debug or DWO
  2487. information.
  2488. '-N SYMBOLNAME'
  2489. '--strip-symbol=SYMBOLNAME'
  2490. Remove symbol SYMBOLNAME from the source file. This option may be
  2491. given more than once, and may be combined with strip options other
  2492. than '-K'.
  2493. '-o FILE'
  2494. Put the stripped output in FILE, rather than replacing the existing
  2495. file. When this argument is used, only one OBJFILE argument may be
  2496. specified.
  2497. '-p'
  2498. '--preserve-dates'
  2499. Preserve the access and modification dates of the file.
  2500. '-D'
  2501. '--enable-deterministic-archives'
  2502. Operate in _deterministic_ mode. When copying archive members and
  2503. writing the archive index, use zero for UIDs, GIDs, timestamps, and
  2504. use consistent file modes for all files.
  2505. If 'binutils' was configured with
  2506. '--enable-deterministic-archives', then this mode is on by default.
  2507. It can be disabled with the '-U' option, below.
  2508. '-U'
  2509. '--disable-deterministic-archives'
  2510. Do _not_ operate in _deterministic_ mode. This is the inverse of
  2511. the '-D' option, above: when copying archive members and writing
  2512. the archive index, use their actual UID, GID, timestamp, and file
  2513. mode values.
  2514. This is the default unless 'binutils' was configured with
  2515. '--enable-deterministic-archives'.
  2516. '-w'
  2517. '--wildcard'
  2518. Permit regular expressions in SYMBOLNAMEs used in other command
  2519. line options. The question mark (?), asterisk (*), backslash (\)
  2520. and square brackets ([]) operators can be used anywhere in the
  2521. symbol name. If the first character of the symbol name is the
  2522. exclamation point (!) then the sense of the switch is reversed for
  2523. that symbol. For example:
  2524. -w -K !foo -K fo*
  2525. would cause strip to only keep symbols that start with the letters
  2526. "fo", but to discard the symbol "foo".
  2527. '-x'
  2528. '--discard-all'
  2529. Remove non-global symbols.
  2530. '-X'
  2531. '--discard-locals'
  2532. Remove compiler-generated local symbols. (These usually start with
  2533. 'L' or '.'.)
  2534. '--keep-file-symbols'
  2535. When stripping a file, perhaps with '--strip-debug' or
  2536. '--strip-unneeded', retain any symbols specifying source file
  2537. names, which would otherwise get stripped.
  2538. '--only-keep-debug'
  2539. Strip a file, emptying the contents of any sections that would not
  2540. be stripped by '--strip-debug' and leaving the debugging sections
  2541. intact. In ELF files, this preserves all the note sections in the
  2542. output as well.
  2543. Note - the section headers of the stripped sections are preserved,
  2544. including their sizes, but the contents of the section are
  2545. discarded. The section headers are preserved so that other tools
  2546. can match up the debuginfo file with the real executable, even if
  2547. that executable has been relocated to a different address space.
  2548. The intention is that this option will be used in conjunction with
  2549. '--add-gnu-debuglink' to create a two part executable. One a
  2550. stripped binary which will occupy less space in RAM and in a
  2551. distribution and the second a debugging information file which is
  2552. only needed if debugging abilities are required. The suggested
  2553. procedure to create these files is as follows:
  2554. 1. Link the executable as normal. Assuming that it is called
  2555. 'foo' then...
  2556. 2. Run 'objcopy --only-keep-debug foo foo.dbg' to create a file
  2557. containing the debugging info.
  2558. 3. Run 'objcopy --strip-debug foo' to create a stripped
  2559. executable.
  2560. 4. Run 'objcopy --add-gnu-debuglink=foo.dbg foo' to add a link to
  2561. the debugging info into the stripped executable.
  2562. Note--the choice of '.dbg' as an extension for the debug info file
  2563. is arbitrary. Also the '--only-keep-debug' step is optional. You
  2564. could instead do this:
  2565. 1. Link the executable as normal.
  2566. 2. Copy 'foo' to 'foo.full'
  2567. 3. Run 'strip --strip-debug foo'
  2568. 4. Run 'objcopy --add-gnu-debuglink=foo.full foo'
  2569. i.e., the file pointed to by the '--add-gnu-debuglink' can be the
  2570. full executable. It does not have to be a file created by the
  2571. '--only-keep-debug' switch.
  2572. Note--this switch is only intended for use on fully linked files.
  2573. It does not make sense to use it on object files where the
  2574. debugging information may be incomplete. Besides the gnu_debuglink
  2575. feature currently only supports the presence of one filename
  2576. containing debugging information, not multiple filenames on a
  2577. one-per-object-file basis.
  2578. '-V'
  2579. '--version'
  2580. Show the version number for 'strip'.
  2581. '-v'
  2582. '--verbose'
  2583. Verbose output: list all object files modified. In the case of
  2584. archives, 'strip -v' lists all members of the archive.
  2585. 
  2586. File: binutils.info, Node: c++filt, Next: addr2line, Prev: strip, Up: Top
  2587. 9 c++filt
  2588. *********
  2589. c++filt [-_|--strip-underscore]
  2590. [-n|--no-strip-underscore]
  2591. [-p|--no-params]
  2592. [-t|--types]
  2593. [-i|--no-verbose]
  2594. [-r|--no-recurse-limit]
  2595. [-R|--recurse-limit]
  2596. [-s FORMAT|--format=FORMAT]
  2597. [--help] [--version] [SYMBOL...]
  2598. The C++ and Java languages provide function overloading, which means
  2599. that you can write many functions with the same name, providing that
  2600. each function takes parameters of different types. In order to be able
  2601. to distinguish these similarly named functions C++ and Java encode them
  2602. into a low-level assembler name which uniquely identifies each different
  2603. version. This process is known as "mangling". The 'c++filt' (1)
  2604. program does the inverse mapping: it decodes ("demangles") low-level
  2605. names into user-level names so that they can be read.
  2606. Every alphanumeric word (consisting of letters, digits, underscores,
  2607. dollars, or periods) seen in the input is a potential mangled name. If
  2608. the name decodes into a C++ name, the C++ name replaces the low-level
  2609. name in the output, otherwise the original word is output. In this way
  2610. you can pass an entire assembler source file, containing mangled names,
  2611. through 'c++filt' and see the same source file containing demangled
  2612. names.
  2613. You can also use 'c++filt' to decipher individual symbols by passing
  2614. them on the command line:
  2615. c++filt SYMBOL
  2616. If no SYMBOL arguments are given, 'c++filt' reads symbol names from
  2617. the standard input instead. All the results are printed on the standard
  2618. output. The difference between reading names from the command line
  2619. versus reading names from the standard input is that command-line
  2620. arguments are expected to be just mangled names and no checking is
  2621. performed to separate them from surrounding text. Thus for example:
  2622. c++filt -n _Z1fv
  2623. will work and demangle the name to "f()" whereas:
  2624. c++filt -n _Z1fv,
  2625. will not work. (Note the extra comma at the end of the mangled name
  2626. which makes it invalid). This command however will work:
  2627. echo _Z1fv, | c++filt -n
  2628. and will display "f(),", i.e., the demangled name followed by a
  2629. trailing comma. This behaviour is because when the names are read from
  2630. the standard input it is expected that they might be part of an
  2631. assembler source file where there might be extra, extraneous characters
  2632. trailing after a mangled name. For example:
  2633. .type _Z1fv, @function
  2634. '-_'
  2635. '--strip-underscore'
  2636. On some systems, both the C and C++ compilers put an underscore in
  2637. front of every name. For example, the C name 'foo' gets the
  2638. low-level name '_foo'. This option removes the initial underscore.
  2639. Whether 'c++filt' removes the underscore by default is target
  2640. dependent.
  2641. '-n'
  2642. '--no-strip-underscore'
  2643. Do not remove the initial underscore.
  2644. '-p'
  2645. '--no-params'
  2646. When demangling the name of a function, do not display the types of
  2647. the function's parameters.
  2648. '-t'
  2649. '--types'
  2650. Attempt to demangle types as well as function names. This is
  2651. disabled by default since mangled types are normally only used
  2652. internally in the compiler, and they can be confused with
  2653. non-mangled names. For example, a function called "a" treated as a
  2654. mangled type name would be demangled to "signed char".
  2655. '-i'
  2656. '--no-verbose'
  2657. Do not include implementation details (if any) in the demangled
  2658. output.
  2659. '-r'
  2660. '-R'
  2661. '--recurse-limit'
  2662. '--no-recurse-limit'
  2663. '--recursion-limit'
  2664. '--no-recursion-limit'
  2665. Enables or disables a limit on the amount of recursion performed
  2666. whilst demangling strings. Since the name mangling formats allow
  2667. for an inifinite level of recursion it is possible to create
  2668. strings whose decoding will exhaust the amount of stack space
  2669. available on the host machine, triggering a memory fault. The
  2670. limit tries to prevent this from happening by restricting recursion
  2671. to 2048 levels of nesting.
  2672. The default is for this limit to be enabled, but disabling it may
  2673. be necessary in order to demangle truly complicated names. Note
  2674. however that if the recursion limit is disabled then stack
  2675. exhaustion is possible and any bug reports about such an event will
  2676. be rejected.
  2677. The '-r' option is a synonym for the '--no-recurse-limit' option.
  2678. The '-R' option is a synonym for the '--recurse-limit' option.
  2679. '-s FORMAT'
  2680. '--format=FORMAT'
  2681. 'c++filt' can decode various methods of mangling, used by different
  2682. compilers. The argument to this option selects which method it
  2683. uses:
  2684. 'auto'
  2685. Automatic selection based on executable (the default method)
  2686. 'gnu'
  2687. the one used by the GNU C++ compiler (g++)
  2688. 'lucid'
  2689. the one used by the Lucid compiler (lcc)
  2690. 'arm'
  2691. the one specified by the C++ Annotated Reference Manual
  2692. 'hp'
  2693. the one used by the HP compiler (aCC)
  2694. 'edg'
  2695. the one used by the EDG compiler
  2696. 'gnu-v3'
  2697. the one used by the GNU C++ compiler (g++) with the V3 ABI.
  2698. 'java'
  2699. the one used by the GNU Java compiler (gcj)
  2700. 'gnat'
  2701. the one used by the GNU Ada compiler (GNAT).
  2702. '--help'
  2703. Print a summary of the options to 'c++filt' and exit.
  2704. '--version'
  2705. Print the version number of 'c++filt' and exit.
  2706. _Warning:_ 'c++filt' is a new utility, and the details of its user
  2707. interface are subject to change in future releases. In particular,
  2708. a command-line option may be required in the future to decode a
  2709. name passed as an argument on the command line; in other words,
  2710. c++filt SYMBOL
  2711. may in a future release become
  2712. c++filt OPTION SYMBOL
  2713. ---------- Footnotes ----------
  2714. (1) MS-DOS does not allow '+' characters in file names, so on MS-DOS
  2715. this program is named 'CXXFILT'.
  2716. 
  2717. File: binutils.info, Node: addr2line, Next: windmc, Prev: c++filt, Up: Top
  2718. 10 addr2line
  2719. ************
  2720. addr2line [-a|--addresses]
  2721. [-b BFDNAME|--target=BFDNAME]
  2722. [-C|--demangle[=STYLE]]
  2723. [-r|--no-recurse-limit]
  2724. [-R|--recurse-limit]
  2725. [-e FILENAME|--exe=FILENAME]
  2726. [-f|--functions] [-s|--basename]
  2727. [-i|--inlines]
  2728. [-p|--pretty-print]
  2729. [-j|--section=NAME]
  2730. [-H|--help] [-V|--version]
  2731. [addr addr ...]
  2732. 'addr2line' translates addresses into file names and line numbers.
  2733. Given an address in an executable or an offset in a section of a
  2734. relocatable object, it uses the debugging information to figure out
  2735. which file name and line number are associated with it.
  2736. The executable or relocatable object to use is specified with the
  2737. '-e' option. The default is the file 'a.out'. The section in the
  2738. relocatable object to use is specified with the '-j' option.
  2739. 'addr2line' has two modes of operation.
  2740. In the first, hexadecimal addresses are specified on the command
  2741. line, and 'addr2line' displays the file name and line number for each
  2742. address.
  2743. In the second, 'addr2line' reads hexadecimal addresses from standard
  2744. input, and prints the file name and line number for each address on
  2745. standard output. In this mode, 'addr2line' may be used in a pipe to
  2746. convert dynamically chosen addresses.
  2747. The format of the output is 'FILENAME:LINENO'. By default each input
  2748. address generates one line of output.
  2749. Two options can generate additional lines before each
  2750. 'FILENAME:LINENO' line (in that order).
  2751. If the '-a' option is used then a line with the input address is
  2752. displayed.
  2753. If the '-f' option is used, then a line with the 'FUNCTIONNAME' is
  2754. displayed. This is the name of the function containing the address.
  2755. One option can generate additional lines after the 'FILENAME:LINENO'
  2756. line.
  2757. If the '-i' option is used and the code at the given address is
  2758. present there because of inlining by the compiler then additional lines
  2759. are displayed afterwards. One or two extra lines (if the '-f' option is
  2760. used) are displayed for each inlined function.
  2761. Alternatively if the '-p' option is used then each input address
  2762. generates a single, long, output line containing the address, the
  2763. function name, the file name and the line number. If the '-i' option
  2764. has also been used then any inlined functions will be displayed in the
  2765. same manner, but on separate lines, and prefixed by the text '(inlined
  2766. by)'.
  2767. If the file name or function name can not be determined, 'addr2line'
  2768. will print two question marks in their place. If the line number can
  2769. not be determined, 'addr2line' will print 0.
  2770. The long and short forms of options, shown here as alternatives, are
  2771. equivalent.
  2772. '-a'
  2773. '--addresses'
  2774. Display the address before the function name, file and line number
  2775. information. The address is printed with a '0x' prefix to easily
  2776. identify it.
  2777. '-b BFDNAME'
  2778. '--target=BFDNAME'
  2779. Specify that the object-code format for the object files is
  2780. BFDNAME.
  2781. '-C'
  2782. '--demangle[=STYLE]'
  2783. Decode ("demangle") low-level symbol names into user-level names.
  2784. Besides removing any initial underscore prepended by the system,
  2785. this makes C++ function names readable. Different compilers have
  2786. different mangling styles. The optional demangling style argument
  2787. can be used to choose an appropriate demangling style for your
  2788. compiler. *Note c++filt::, for more information on demangling.
  2789. '-e FILENAME'
  2790. '--exe=FILENAME'
  2791. Specify the name of the executable for which addresses should be
  2792. translated. The default file is 'a.out'.
  2793. '-f'
  2794. '--functions'
  2795. Display function names as well as file and line number information.
  2796. '-s'
  2797. '--basenames'
  2798. Display only the base of each file name.
  2799. '-i'
  2800. '--inlines'
  2801. If the address belongs to a function that was inlined, the source
  2802. information for all enclosing scopes back to the first non-inlined
  2803. function will also be printed. For example, if 'main' inlines
  2804. 'callee1' which inlines 'callee2', and address is from 'callee2',
  2805. the source information for 'callee1' and 'main' will also be
  2806. printed.
  2807. '-j'
  2808. '--section'
  2809. Read offsets relative to the specified section instead of absolute
  2810. addresses.
  2811. '-p'
  2812. '--pretty-print'
  2813. Make the output more human friendly: each location are printed on
  2814. one line. If option '-i' is specified, lines for all enclosing
  2815. scopes are prefixed with '(inlined by)'.
  2816. '-r'
  2817. '-R'
  2818. '--recurse-limit'
  2819. '--no-recurse-limit'
  2820. '--recursion-limit'
  2821. '--no-recursion-limit'
  2822. Enables or disables a limit on the amount of recursion performed
  2823. whilst demangling strings. Since the name mangling formats allow
  2824. for an inifinite level of recursion it is possible to create
  2825. strings whose decoding will exhaust the amount of stack space
  2826. available on the host machine, triggering a memory fault. The
  2827. limit tries to prevent this from happening by restricting recursion
  2828. to 2048 levels of nesting.
  2829. The default is for this limit to be enabled, but disabling it may
  2830. be necessary in order to demangle truly complicated names. Note
  2831. however that if the recursion limit is disabled then stack
  2832. exhaustion is possible and any bug reports about such an event will
  2833. be rejected.
  2834. The '-r' option is a synonym for the '--no-recurse-limit' option.
  2835. The '-R' option is a synonym for the '--recurse-limit' option.
  2836. Note this option is only effective if the '-C' or '--demangle'
  2837. option has been enabled.
  2838. 
  2839. File: binutils.info, Node: windmc, Next: windres, Prev: addr2line, Up: Top
  2840. 11 windmc
  2841. *********
  2842. 'windmc' may be used to generator Windows message resources.
  2843. _Warning:_ 'windmc' is not always built as part of the binary
  2844. utilities, since it is only useful for Windows targets.
  2845. windmc [options] input-file
  2846. 'windmc' reads message definitions from an input file (.mc) and
  2847. translate them into a set of output files. The output files may be of
  2848. four kinds:
  2849. 'h'
  2850. A C header file containing the message definitions.
  2851. 'rc'
  2852. A resource file compilable by the 'windres' tool.
  2853. 'bin'
  2854. One or more binary files containing the resource data for a
  2855. specific message language.
  2856. 'dbg'
  2857. A C include file that maps message id's to their symbolic name.
  2858. The exact description of these different formats is available in
  2859. documentation from Microsoft.
  2860. When 'windmc' converts from the 'mc' format to the 'bin' format,
  2861. 'rc', 'h', and optional 'dbg' it is acting like the Windows Message
  2862. Compiler.
  2863. '-a'
  2864. '--ascii_in'
  2865. Specifies that the input file specified is ASCII. This is the
  2866. default behaviour.
  2867. '-A'
  2868. '--ascii_out'
  2869. Specifies that messages in the output 'bin' files should be in
  2870. ASCII format.
  2871. '-b'
  2872. '--binprefix'
  2873. Specifies that 'bin' filenames should have to be prefixed by the
  2874. basename of the source file.
  2875. '-c'
  2876. '--customflag'
  2877. Sets the customer bit in all message id's.
  2878. '-C CODEPAGE'
  2879. '--codepage_in CODEPAGE'
  2880. Sets the default codepage to be used to convert input file to
  2881. UTF16. The default is ocdepage 1252.
  2882. '-d'
  2883. '--decimal_values'
  2884. Outputs the constants in the header file in decimal. Default is
  2885. using hexadecimal output.
  2886. '-e EXT'
  2887. '--extension EXT'
  2888. The extension for the header file. The default is .h extension.
  2889. '-F TARGET'
  2890. '--target TARGET'
  2891. Specify the BFD format to use for a bin file as output. This is a
  2892. BFD target name; you can use the '--help' option to see a list of
  2893. supported targets. Normally 'windmc' will use the default format,
  2894. which is the first one listed by the '--help' option. *note Target
  2895. Selection::.
  2896. '-h PATH'
  2897. '--headerdir PATH'
  2898. The target directory of the generated header file. The default is
  2899. the current directory.
  2900. '-H'
  2901. '--help'
  2902. Displays a list of command-line options and then exits.
  2903. '-m CHARACTERS'
  2904. '--maxlength CHARACTERS'
  2905. Instructs 'windmc' to generate a warning if the length of any
  2906. message exceeds the number specified.
  2907. '-n'
  2908. '--nullterminate'
  2909. Terminate message text in 'bin' files by zero. By default they are
  2910. terminated by CR/LF.
  2911. '-o'
  2912. '--hresult_use'
  2913. Not yet implemented. Instructs 'windmc' to generate an OLE2 header
  2914. file, using HRESULT definitions. Status codes are used if the flag
  2915. is not specified.
  2916. '-O CODEPAGE'
  2917. '--codepage_out CODEPAGE'
  2918. Sets the default codepage to be used to output text files. The
  2919. default is ocdepage 1252.
  2920. '-r PATH'
  2921. '--rcdir PATH'
  2922. The target directory for the generated 'rc' script and the
  2923. generated 'bin' files that the resource compiler script includes.
  2924. The default is the current directory.
  2925. '-u'
  2926. '--unicode_in'
  2927. Specifies that the input file is UTF16.
  2928. '-U'
  2929. '--unicode_out'
  2930. Specifies that messages in the output 'bin' file should be in UTF16
  2931. format. This is the default behaviour.
  2932. '-v'
  2933. '--verbose'
  2934. Enable verbose mode.
  2935. '-V'
  2936. '--version'
  2937. Prints the version number for 'windmc'.
  2938. '-x PATH'
  2939. '--xdgb PATH'
  2940. The path of the 'dbg' C include file that maps message id's to the
  2941. symbolic name. No such file is generated without specifying the
  2942. switch.
  2943. 
  2944. File: binutils.info, Node: windres, Next: dlltool, Prev: windmc, Up: Top
  2945. 12 windres
  2946. **********
  2947. 'windres' may be used to manipulate Windows resources.
  2948. _Warning:_ 'windres' is not always built as part of the binary
  2949. utilities, since it is only useful for Windows targets.
  2950. windres [options] [input-file] [output-file]
  2951. 'windres' reads resources from an input file and copies them into an
  2952. output file. Either file may be in one of three formats:
  2953. 'rc'
  2954. A text format read by the Resource Compiler.
  2955. 'res'
  2956. A binary format generated by the Resource Compiler.
  2957. 'coff'
  2958. A COFF object or executable.
  2959. The exact description of these different formats is available in
  2960. documentation from Microsoft.
  2961. When 'windres' converts from the 'rc' format to the 'res' format, it
  2962. is acting like the Windows Resource Compiler. When 'windres' converts
  2963. from the 'res' format to the 'coff' format, it is acting like the
  2964. Windows 'CVTRES' program.
  2965. When 'windres' generates an 'rc' file, the output is similar but not
  2966. identical to the format expected for the input. When an input 'rc' file
  2967. refers to an external filename, an output 'rc' file will instead include
  2968. the file contents.
  2969. If the input or output format is not specified, 'windres' will guess
  2970. based on the file name, or, for the input file, the file contents. A
  2971. file with an extension of '.rc' will be treated as an 'rc' file, a file
  2972. with an extension of '.res' will be treated as a 'res' file, and a file
  2973. with an extension of '.o' or '.exe' will be treated as a 'coff' file.
  2974. If no output file is specified, 'windres' will print the resources in
  2975. 'rc' format to standard output.
  2976. The normal use is for you to write an 'rc' file, use 'windres' to
  2977. convert it to a COFF object file, and then link the COFF file into your
  2978. application. This will make the resources described in the 'rc' file
  2979. available to Windows.
  2980. '-i FILENAME'
  2981. '--input FILENAME'
  2982. The name of the input file. If this option is not used, then
  2983. 'windres' will use the first non-option argument as the input file
  2984. name. If there are no non-option arguments, then 'windres' will
  2985. read from standard input. 'windres' can not read a COFF file from
  2986. standard input.
  2987. '-o FILENAME'
  2988. '--output FILENAME'
  2989. The name of the output file. If this option is not used, then
  2990. 'windres' will use the first non-option argument, after any used
  2991. for the input file name, as the output file name. If there is no
  2992. non-option argument, then 'windres' will write to standard output.
  2993. 'windres' can not write a COFF file to standard output. Note, for
  2994. compatibility with 'rc' the option '-fo' is also accepted, but its
  2995. use is not recommended.
  2996. '-J FORMAT'
  2997. '--input-format FORMAT'
  2998. The input format to read. FORMAT may be 'res', 'rc', or 'coff'.
  2999. If no input format is specified, 'windres' will guess, as described
  3000. above.
  3001. '-O FORMAT'
  3002. '--output-format FORMAT'
  3003. The output format to generate. FORMAT may be 'res', 'rc', or
  3004. 'coff'. If no output format is specified, 'windres' will guess, as
  3005. described above.
  3006. '-F TARGET'
  3007. '--target TARGET'
  3008. Specify the BFD format to use for a COFF file as input or output.
  3009. This is a BFD target name; you can use the '--help' option to see a
  3010. list of supported targets. Normally 'windres' will use the default
  3011. format, which is the first one listed by the '--help' option.
  3012. *note Target Selection::.
  3013. '--preprocessor PROGRAM'
  3014. When 'windres' reads an 'rc' file, it runs it through the C
  3015. preprocessor first. This option may be used to specify the
  3016. preprocessor to use, including any leading arguments. The default
  3017. preprocessor argument is 'gcc -E -xc-header -DRC_INVOKED'.
  3018. '--preprocessor-arg OPTION'
  3019. When 'windres' reads an 'rc' file, it runs it through the C
  3020. preprocessor first. This option may be used to specify additional
  3021. text to be passed to preprocessor on its command line. This option
  3022. can be used multiple times to add multiple options to the
  3023. preprocessor command line.
  3024. '-I DIRECTORY'
  3025. '--include-dir DIRECTORY'
  3026. Specify an include directory to use when reading an 'rc' file.
  3027. 'windres' will pass this to the preprocessor as an '-I' option.
  3028. 'windres' will also search this directory when looking for files
  3029. named in the 'rc' file. If the argument passed to this command
  3030. matches any of the supported FORMATS (as described in the '-J'
  3031. option), it will issue a deprecation warning, and behave just like
  3032. the '-J' option. New programs should not use this behaviour. If a
  3033. directory happens to match a FORMAT, simple prefix it with './' to
  3034. disable the backward compatibility.
  3035. '-D TARGET'
  3036. '--define SYM[=VAL]'
  3037. Specify a '-D' option to pass to the preprocessor when reading an
  3038. 'rc' file.
  3039. '-U TARGET'
  3040. '--undefine SYM'
  3041. Specify a '-U' option to pass to the preprocessor when reading an
  3042. 'rc' file.
  3043. '-r'
  3044. Ignored for compatibility with rc.
  3045. '-v'
  3046. Enable verbose mode. This tells you what the preprocessor is if
  3047. you didn't specify one.
  3048. '-c VAL'
  3049. '--codepage VAL'
  3050. Specify the default codepage to use when reading an 'rc' file. VAL
  3051. should be a hexadecimal prefixed by '0x' or decimal codepage code.
  3052. The valid range is from zero up to 0xffff, but the validity of the
  3053. codepage is host and configuration dependent.
  3054. '-l VAL'
  3055. '--language VAL'
  3056. Specify the default language to use when reading an 'rc' file. VAL
  3057. should be a hexadecimal language code. The low eight bits are the
  3058. language, and the high eight bits are the sublanguage.
  3059. '--use-temp-file'
  3060. Use a temporary file to instead of using popen to read the output
  3061. of the preprocessor. Use this option if the popen implementation
  3062. is buggy on the host (eg., certain non-English language versions of
  3063. Windows 95 and Windows 98 are known to have buggy popen where the
  3064. output will instead go the console).
  3065. '--no-use-temp-file'
  3066. Use popen, not a temporary file, to read the output of the
  3067. preprocessor. This is the default behaviour.
  3068. '-h'
  3069. '--help'
  3070. Prints a usage summary.
  3071. '-V'
  3072. '--version'
  3073. Prints the version number for 'windres'.
  3074. '--yydebug'
  3075. If 'windres' is compiled with 'YYDEBUG' defined as '1', this will
  3076. turn on parser debugging.
  3077. 
  3078. File: binutils.info, Node: dlltool, Next: readelf, Prev: windres, Up: Top
  3079. 13 dlltool
  3080. **********
  3081. 'dlltool' is used to create the files needed to create dynamic link
  3082. libraries (DLLs) on systems which understand PE format image files such
  3083. as Windows. A DLL contains an export table which contains information
  3084. that the runtime loader needs to resolve references from a referencing
  3085. program.
  3086. The export table is generated by this program by reading in a '.def'
  3087. file or scanning the '.a' and '.o' files which will be in the DLL. A
  3088. '.o' file can contain information in special '.drectve' sections with
  3089. export information.
  3090. _Note:_ 'dlltool' is not always built as part of the binary
  3091. utilities, since it is only useful for those targets which support
  3092. DLLs.
  3093. dlltool [-d|--input-def DEF-FILE-NAME]
  3094. [-b|--base-file BASE-FILE-NAME]
  3095. [-e|--output-exp EXPORTS-FILE-NAME]
  3096. [-z|--output-def DEF-FILE-NAME]
  3097. [-l|--output-lib LIBRARY-FILE-NAME]
  3098. [-y|--output-delaylib LIBRARY-FILE-NAME]
  3099. [--export-all-symbols] [--no-export-all-symbols]
  3100. [--exclude-symbols LIST]
  3101. [--no-default-excludes]
  3102. [-S|--as PATH-TO-ASSEMBLER] [-f|--as-flags OPTIONS]
  3103. [-D|--dllname NAME] [-m|--machine MACHINE]
  3104. [-a|--add-indirect]
  3105. [-U|--add-underscore] [--add-stdcall-underscore]
  3106. [-k|--kill-at] [-A|--add-stdcall-alias]
  3107. [-p|--ext-prefix-alias PREFIX]
  3108. [-x|--no-idata4] [-c|--no-idata5]
  3109. [--use-nul-prefixed-import-tables]
  3110. [-I|--identify LIBRARY-FILE-NAME] [--identify-strict]
  3111. [-i|--interwork]
  3112. [-n|--nodelete] [-t|--temp-prefix PREFIX]
  3113. [-v|--verbose]
  3114. [-h|--help] [-V|--version]
  3115. [--no-leading-underscore] [--leading-underscore]
  3116. [object-file ...]
  3117. 'dlltool' reads its inputs, which can come from the '-d' and '-b'
  3118. options as well as object files specified on the command line. It then
  3119. processes these inputs and if the '-e' option has been specified it
  3120. creates a exports file. If the '-l' option has been specified it
  3121. creates a library file and if the '-z' option has been specified it
  3122. creates a def file. Any or all of the '-e', '-l' and '-z' options can
  3123. be present in one invocation of dlltool.
  3124. When creating a DLL, along with the source for the DLL, it is
  3125. necessary to have three other files. 'dlltool' can help with the
  3126. creation of these files.
  3127. The first file is a '.def' file which specifies which functions are
  3128. exported from the DLL, which functions the DLL imports, and so on. This
  3129. is a text file and can be created by hand, or 'dlltool' can be used to
  3130. create it using the '-z' option. In this case 'dlltool' will scan the
  3131. object files specified on its command line looking for those functions
  3132. which have been specially marked as being exported and put entries for
  3133. them in the '.def' file it creates.
  3134. In order to mark a function as being exported from a DLL, it needs to
  3135. have an '-export:<name_of_function>' entry in the '.drectve' section of
  3136. the object file. This can be done in C by using the asm() operator:
  3137. asm (".section .drectve");
  3138. asm (".ascii \"-export:my_func\"");
  3139. int my_func (void) { ... }
  3140. The second file needed for DLL creation is an exports file. This
  3141. file is linked with the object files that make up the body of the DLL
  3142. and it handles the interface between the DLL and the outside world.
  3143. This is a binary file and it can be created by giving the '-e' option to
  3144. 'dlltool' when it is creating or reading in a '.def' file.
  3145. The third file needed for DLL creation is the library file that
  3146. programs will link with in order to access the functions in the DLL (an
  3147. 'import library'). This file can be created by giving the '-l' option
  3148. to dlltool when it is creating or reading in a '.def' file.
  3149. If the '-y' option is specified, dlltool generates a delay-import
  3150. library that can be used instead of the normal import library to allow a
  3151. program to link to the dll only as soon as an imported function is
  3152. called for the first time. The resulting executable will need to be
  3153. linked to the static delayimp library containing __delayLoadHelper2(),
  3154. which in turn will import LoadLibraryA and GetProcAddress from kernel32.
  3155. 'dlltool' builds the library file by hand, but it builds the exports
  3156. file by creating temporary files containing assembler statements and
  3157. then assembling these. The '-S' command-line option can be used to
  3158. specify the path to the assembler that dlltool will use, and the '-f'
  3159. option can be used to pass specific flags to that assembler. The '-n'
  3160. can be used to prevent dlltool from deleting these temporary assembler
  3161. files when it is done, and if '-n' is specified twice then this will
  3162. prevent dlltool from deleting the temporary object files it used to
  3163. build the library.
  3164. Here is an example of creating a DLL from a source file 'dll.c' and
  3165. also creating a program (from an object file called 'program.o') that
  3166. uses that DLL:
  3167. gcc -c dll.c
  3168. dlltool -e exports.o -l dll.lib dll.o
  3169. gcc dll.o exports.o -o dll.dll
  3170. gcc program.o dll.lib -o program
  3171. 'dlltool' may also be used to query an existing import library to
  3172. determine the name of the DLL to which it is associated. See the
  3173. description of the '-I' or '--identify' option.
  3174. The command-line options have the following meanings:
  3175. '-d FILENAME'
  3176. '--input-def FILENAME'
  3177. Specifies the name of a '.def' file to be read in and processed.
  3178. '-b FILENAME'
  3179. '--base-file FILENAME'
  3180. Specifies the name of a base file to be read in and processed. The
  3181. contents of this file will be added to the relocation section in
  3182. the exports file generated by dlltool.
  3183. '-e FILENAME'
  3184. '--output-exp FILENAME'
  3185. Specifies the name of the export file to be created by dlltool.
  3186. '-z FILENAME'
  3187. '--output-def FILENAME'
  3188. Specifies the name of the '.def' file to be created by dlltool.
  3189. '-l FILENAME'
  3190. '--output-lib FILENAME'
  3191. Specifies the name of the library file to be created by dlltool.
  3192. '-y FILENAME'
  3193. '--output-delaylib FILENAME'
  3194. Specifies the name of the delay-import library file to be created
  3195. by dlltool.
  3196. '--export-all-symbols'
  3197. Treat all global and weak defined symbols found in the input object
  3198. files as symbols to be exported. There is a small list of symbols
  3199. which are not exported by default; see the '--no-default-excludes'
  3200. option. You may add to the list of symbols to not export by using
  3201. the '--exclude-symbols' option.
  3202. '--no-export-all-symbols'
  3203. Only export symbols explicitly listed in an input '.def' file or in
  3204. '.drectve' sections in the input object files. This is the default
  3205. behaviour. The '.drectve' sections are created by 'dllexport'
  3206. attributes in the source code.
  3207. '--exclude-symbols LIST'
  3208. Do not export the symbols in LIST. This is a list of symbol names
  3209. separated by comma or colon characters. The symbol names should
  3210. not contain a leading underscore. This is only meaningful when
  3211. '--export-all-symbols' is used.
  3212. '--no-default-excludes'
  3213. When '--export-all-symbols' is used, it will by default avoid
  3214. exporting certain special symbols. The current list of symbols to
  3215. avoid exporting is 'DllMain@12', 'DllEntryPoint@0', 'impure_ptr'.
  3216. You may use the '--no-default-excludes' option to go ahead and
  3217. export these special symbols. This is only meaningful when
  3218. '--export-all-symbols' is used.
  3219. '-S PATH'
  3220. '--as PATH'
  3221. Specifies the path, including the filename, of the assembler to be
  3222. used to create the exports file.
  3223. '-f OPTIONS'
  3224. '--as-flags OPTIONS'
  3225. Specifies any specific command-line options to be passed to the
  3226. assembler when building the exports file. This option will work
  3227. even if the '-S' option is not used. This option only takes one
  3228. argument, and if it occurs more than once on the command line, then
  3229. later occurrences will override earlier occurrences. So if it is
  3230. necessary to pass multiple options to the assembler they should be
  3231. enclosed in double quotes.
  3232. '-D NAME'
  3233. '--dll-name NAME'
  3234. Specifies the name to be stored in the '.def' file as the name of
  3235. the DLL when the '-e' option is used. If this option is not
  3236. present, then the filename given to the '-e' option will be used as
  3237. the name of the DLL.
  3238. '-m MACHINE'
  3239. '-machine MACHINE'
  3240. Specifies the type of machine for which the library file should be
  3241. built. 'dlltool' has a built in default type, depending upon how
  3242. it was created, but this option can be used to override that. This
  3243. is normally only useful when creating DLLs for an ARM processor,
  3244. when the contents of the DLL are actually encode using Thumb
  3245. instructions.
  3246. '-a'
  3247. '--add-indirect'
  3248. Specifies that when 'dlltool' is creating the exports file it
  3249. should add a section which allows the exported functions to be
  3250. referenced without using the import library. Whatever the hell
  3251. that means!
  3252. '-U'
  3253. '--add-underscore'
  3254. Specifies that when 'dlltool' is creating the exports file it
  3255. should prepend an underscore to the names of _all_ exported
  3256. symbols.
  3257. '--no-leading-underscore'
  3258. '--leading-underscore'
  3259. Specifies whether standard symbol should be forced to be prefixed,
  3260. or not.
  3261. '--add-stdcall-underscore'
  3262. Specifies that when 'dlltool' is creating the exports file it
  3263. should prepend an underscore to the names of exported _stdcall_
  3264. functions. Variable names and non-stdcall function names are not
  3265. modified. This option is useful when creating GNU-compatible
  3266. import libs for third party DLLs that were built with MS-Windows
  3267. tools.
  3268. '-k'
  3269. '--kill-at'
  3270. Specifies that '@<number>' suffixes should be omitted from the
  3271. names of stdcall functions that will be imported from the DLL. This
  3272. is useful when creating an import library for a DLL which exports
  3273. stdcall functions but without the usual '@<number>' symbol name
  3274. suffix.
  3275. This does not change the naming of symbols provided by the import
  3276. library to programs linked against it, but only the entries in the
  3277. import table (ie the .idata section).
  3278. '-A'
  3279. '--add-stdcall-alias'
  3280. Specifies that when 'dlltool' is creating the exports file it
  3281. should add aliases for stdcall symbols without '@ <number>' in
  3282. addition to the symbols with '@ <number>'.
  3283. '-p'
  3284. '--ext-prefix-alias PREFIX'
  3285. Causes 'dlltool' to create external aliases for all DLL imports
  3286. with the specified prefix. The aliases are created for both
  3287. external and import symbols with no leading underscore.
  3288. '-x'
  3289. '--no-idata4'
  3290. Specifies that when 'dlltool' is creating the exports and library
  3291. files it should omit the '.idata4' section. This is for
  3292. compatibility with certain operating systems.
  3293. '--use-nul-prefixed-import-tables'
  3294. Specifies that when 'dlltool' is creating the exports and library
  3295. files it should prefix the '.idata4' and '.idata5' by zero an
  3296. element. This emulates old gnu import library generation of
  3297. 'dlltool'. By default this option is turned off.
  3298. '-c'
  3299. '--no-idata5'
  3300. Specifies that when 'dlltool' is creating the exports and library
  3301. files it should omit the '.idata5' section. This is for
  3302. compatibility with certain operating systems.
  3303. '-I FILENAME'
  3304. '--identify FILENAME'
  3305. Specifies that 'dlltool' should inspect the import library
  3306. indicated by FILENAME and report, on 'stdout', the name(s) of the
  3307. associated DLL(s). This can be performed in addition to any other
  3308. operations indicated by the other options and arguments. 'dlltool'
  3309. fails if the import library does not exist or is not actually an
  3310. import library. See also '--identify-strict'.
  3311. '--identify-strict'
  3312. Modifies the behavior of the '--identify' option, such that an
  3313. error is reported if FILENAME is associated with more than one DLL.
  3314. '-i'
  3315. '--interwork'
  3316. Specifies that 'dlltool' should mark the objects in the library
  3317. file and exports file that it produces as supporting interworking
  3318. between ARM and Thumb code.
  3319. '-n'
  3320. '--nodelete'
  3321. Makes 'dlltool' preserve the temporary assembler files it used to
  3322. create the exports file. If this option is repeated then dlltool
  3323. will also preserve the temporary object files it uses to create the
  3324. library file.
  3325. '-t PREFIX'
  3326. '--temp-prefix PREFIX'
  3327. Makes 'dlltool' use PREFIX when constructing the names of temporary
  3328. assembler and object files. By default, the temp file prefix is
  3329. generated from the pid.
  3330. '-v'
  3331. '--verbose'
  3332. Make dlltool describe what it is doing.
  3333. '-h'
  3334. '--help'
  3335. Displays a list of command-line options and then exits.
  3336. '-V'
  3337. '--version'
  3338. Displays dlltool's version number and then exits.
  3339. * Menu:
  3340. * def file format:: The format of the dlltool '.def' file
  3341. 
  3342. File: binutils.info, Node: def file format, Up: dlltool
  3343. 13.1 The format of the 'dlltool' '.def' file
  3344. ============================================
  3345. A '.def' file contains any number of the following commands:
  3346. 'NAME' NAME '[ ,' BASE ']'
  3347. The result is going to be named NAME'.exe'.
  3348. 'LIBRARY' NAME '[ ,' BASE ']'
  3349. The result is going to be named NAME'.dll'. Note: If you want to
  3350. use LIBRARY as name then you need to quote. Otherwise this will
  3351. fail due a necessary hack for libtool (see PR binutils/13710 for
  3352. more details).
  3353. 'EXPORTS ( ( (' NAME1 '[ = ' NAME2 '] ) | ( ' NAME1 '=' MODULE-NAME '.' EXTERNAL-NAME ') ) [ == ' ITS_NAME ']'
  3354. '[' INTEGER '] [ NONAME ] [ CONSTANT ] [ DATA ] [ PRIVATE ] ) *'
  3355. Declares NAME1 as an exported symbol from the DLL, with optional
  3356. ordinal number INTEGER, or declares NAME1 as an alias (forward) of
  3357. the function EXTERNAL-NAME in the DLL. If ITS_NAME is specified,
  3358. this name is used as string in export table. MODULE-NAME. Note:
  3359. The 'EXPORTS' has to be the last command in .def file, as keywords
  3360. are treated - beside 'LIBRARY' - as simple name-identifiers. If
  3361. you want to use LIBRARY as name then you need to quote it.
  3362. 'IMPORTS ( (' INTERNAL-NAME '=' MODULE-NAME '.' INTEGER ') | [' INTERNAL-NAME '= ]' MODULE-NAME '.' EXTERNAL-NAME ') [ == ) ITS_NAME ] *'
  3363. Declares that EXTERNAL-NAME or the exported function whose ordinal
  3364. number is INTEGER is to be imported from the file MODULE-NAME. If
  3365. INTERNAL-NAME is specified then this is the name that the imported
  3366. function will be referred to in the body of the DLL. If ITS_NAME is
  3367. specified, this name is used as string in import table. Note: The
  3368. 'IMPORTS' has to be the last command in .def file, as keywords are
  3369. treated - beside 'LIBRARY' - as simple name-identifiers. If you
  3370. want to use LIBRARY as name then you need to quote it.
  3371. 'DESCRIPTION' STRING
  3372. Puts STRING into the output '.exp' file in the '.rdata' section.
  3373. 'STACKSIZE' NUMBER-RESERVE '[, ' NUMBER-COMMIT ']'
  3374. 'HEAPSIZE' NUMBER-RESERVE '[, ' NUMBER-COMMIT ']'
  3375. Generates '--stack' or '--heap' NUMBER-RESERVE,NUMBER-COMMIT in the
  3376. output '.drectve' section. The linker will see this and act upon
  3377. it.
  3378. 'CODE' ATTR '+'
  3379. 'DATA' ATTR '+'
  3380. 'SECTIONS (' SECTION-NAME ATTR' + ) *'
  3381. Generates '--attr' SECTION-NAME ATTR in the output '.drectve'
  3382. section, where ATTR is one of 'READ', 'WRITE', 'EXECUTE' or
  3383. 'SHARED'. The linker will see this and act upon it.
  3384. 
  3385. File: binutils.info, Node: readelf, Next: elfedit, Prev: dlltool, Up: Top
  3386. 14 readelf
  3387. **********
  3388. readelf [-a|--all]
  3389. [-h|--file-header]
  3390. [-l|--program-headers|--segments]
  3391. [-S|--section-headers|--sections]
  3392. [-g|--section-groups]
  3393. [-t|--section-details]
  3394. [-e|--headers]
  3395. [-s|--syms|--symbols]
  3396. [--dyn-syms]
  3397. [-n|--notes]
  3398. [-r|--relocs]
  3399. [-u|--unwind]
  3400. [-d|--dynamic]
  3401. [-V|--version-info]
  3402. [-A|--arch-specific]
  3403. [-D|--use-dynamic]
  3404. [-x <number or name>|--hex-dump=<number or name>]
  3405. [-p <number or name>|--string-dump=<number or name>]
  3406. [-R <number or name>|--relocated-dump=<number or name>]
  3407. [-z|--decompress]
  3408. [-c|--archive-index]
  3409. [-w[lLiaprmfFsoRtUuTgAckK]|
  3410. --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index,=addr,=cu_index,=links,=follow-links]]
  3411. [--dwarf-depth=N]
  3412. [--dwarf-start=N]
  3413. [--ctf=SECTION]
  3414. [--ctf-parent=SECTION]
  3415. [--ctf-symbols=SECTION]
  3416. [--ctf-strings=SECTION]
  3417. [-I|--histogram]
  3418. [-v|--version]
  3419. [-W|--wide]
  3420. [-H|--help]
  3421. ELFFILE...
  3422. 'readelf' displays information about one or more ELF format object
  3423. files. The options control what particular information to display.
  3424. ELFFILE... are the object files to be examined. 32-bit and 64-bit
  3425. ELF files are supported, as are archives containing ELF files.
  3426. This program performs a similar function to 'objdump' but it goes
  3427. into more detail and it exists independently of the BFD library, so if
  3428. there is a bug in BFD then readelf will not be affected.
  3429. The long and short forms of options, shown here as alternatives, are
  3430. equivalent. At least one option besides '-v' or '-H' must be given.
  3431. '-a'
  3432. '--all'
  3433. Equivalent to specifying '--file-header', '--program-headers',
  3434. '--sections', '--symbols', '--relocs', '--dynamic', '--notes',
  3435. '--version-info', '--arch-specific', '--unwind', '--section-groups'
  3436. and '--histogram'.
  3437. Note - this option does not enable '--use-dynamic' itself, so if
  3438. that option is not present on the command line then dynamic symbols
  3439. and dynamic relocs will not be displayed.
  3440. '-h'
  3441. '--file-header'
  3442. Displays the information contained in the ELF header at the start
  3443. of the file.
  3444. '-l'
  3445. '--program-headers'
  3446. '--segments'
  3447. Displays the information contained in the file's segment headers,
  3448. if it has any.
  3449. '-S'
  3450. '--sections'
  3451. '--section-headers'
  3452. Displays the information contained in the file's section headers,
  3453. if it has any.
  3454. '-g'
  3455. '--section-groups'
  3456. Displays the information contained in the file's section groups, if
  3457. it has any.
  3458. '-t'
  3459. '--section-details'
  3460. Displays the detailed section information. Implies '-S'.
  3461. '-s'
  3462. '--symbols'
  3463. '--syms'
  3464. Displays the entries in symbol table section of the file, if it has
  3465. one. If a symbol has version information associated with it then
  3466. this is displayed as well. The version string is displayed as a
  3467. suffix to the symbol name, preceeded by an @ character. For
  3468. example 'foo@VER_1'. If the version is the default version to be
  3469. used when resolving unversioned references to the symbol then it is
  3470. displayed as a suffix preceeded by two @ characters. For example
  3471. 'foo@@VER_2'.
  3472. '--dyn-syms'
  3473. Displays the entries in dynamic symbol table section of the file,
  3474. if it has one. The output format is the same as the format used by
  3475. the '--syms' option.
  3476. '-e'
  3477. '--headers'
  3478. Display all the headers in the file. Equivalent to '-h -l -S'.
  3479. '-n'
  3480. '--notes'
  3481. Displays the contents of the NOTE segments and/or sections, if any.
  3482. '-r'
  3483. '--relocs'
  3484. Displays the contents of the file's relocation section, if it has
  3485. one.
  3486. '-u'
  3487. '--unwind'
  3488. Displays the contents of the file's unwind section, if it has one.
  3489. Only the unwind sections for IA64 ELF files, as well as ARM unwind
  3490. tables ('.ARM.exidx' / '.ARM.extab') are currently supported. If
  3491. support is not yet implemented for your architecture you could try
  3492. dumping the contents of the .EH_FRAMES section using the
  3493. '--debug-dump=frames' or '--debug-dump=frames-interp' options.
  3494. '-d'
  3495. '--dynamic'
  3496. Displays the contents of the file's dynamic section, if it has one.
  3497. '-V'
  3498. '--version-info'
  3499. Displays the contents of the version sections in the file, it they
  3500. exist.
  3501. '-A'
  3502. '--arch-specific'
  3503. Displays architecture-specific information in the file, if there is
  3504. any.
  3505. '-D'
  3506. '--use-dynamic'
  3507. When displaying symbols, this option makes 'readelf' use the symbol
  3508. hash tables in the file's dynamic section, rather than the symbol
  3509. table sections.
  3510. When displaying relocations, this option makes 'readelf' display
  3511. the dynamic relocations rather than the static relocations.
  3512. '-x <number or name>'
  3513. '--hex-dump=<number or name>'
  3514. Displays the contents of the indicated section as a hexadecimal
  3515. bytes. A number identifies a particular section by index in the
  3516. section table; any other string identifies all sections with that
  3517. name in the object file.
  3518. '-R <number or name>'
  3519. '--relocated-dump=<number or name>'
  3520. Displays the contents of the indicated section as a hexadecimal
  3521. bytes. A number identifies a particular section by index in the
  3522. section table; any other string identifies all sections with that
  3523. name in the object file. The contents of the section will be
  3524. relocated before they are displayed.
  3525. '-p <number or name>'
  3526. '--string-dump=<number or name>'
  3527. Displays the contents of the indicated section as printable
  3528. strings. A number identifies a particular section by index in the
  3529. section table; any other string identifies all sections with that
  3530. name in the object file.
  3531. '-z'
  3532. '--decompress'
  3533. Requests that the section(s) being dumped by 'x', 'R' or 'p'
  3534. options are decompressed before being displayed. If the section(s)
  3535. are not compressed then they are displayed as is.
  3536. '-c'
  3537. '--archive-index'
  3538. Displays the file symbol index information contained in the header
  3539. part of binary archives. Performs the same function as the 't'
  3540. command to 'ar', but without using the BFD library. *Note ar::.
  3541. '-w[lLiaprmfFsoRtUuTgAckK]'
  3542. '--debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges,=pubtypes,=trace_info,=trace_abbrev,=trace_aranges,=gdb_index,=addr,=cu_index,=links,=follow-links]'
  3543. Displays the contents of the DWARF debug sections in the file, if
  3544. any are present. Compressed debug sections are automatically
  3545. decompressed (temporarily) before they are displayed. If one or
  3546. more of the optional letters or words follows the switch then only
  3547. those type(s) of data will be dumped. The letters and words refer
  3548. to the following information:
  3549. 'a'
  3550. '=abbrev'
  3551. Displays the contents of the '.debug_abbrev' section.
  3552. 'A'
  3553. '=addr'
  3554. Displays the contents of the '.debug_addr' section.
  3555. 'c'
  3556. '=cu_index'
  3557. Displays the contents of the '.debug_cu_index' and/or
  3558. '.debug_tu_index' sections.
  3559. 'f'
  3560. '=frames'
  3561. Display the raw contents of a '.debug_frame' section.
  3562. 'F'
  3563. '=frame-interp'
  3564. Display the interpreted contents of a '.debug_frame' section.
  3565. 'g'
  3566. '=gdb_index'
  3567. Displays the contents of the '.gdb_index' and/or
  3568. '.debug_names' sections.
  3569. 'i'
  3570. '=info'
  3571. Displays the contents of the '.debug_info' section. Note: the
  3572. output from this option can also be restricted by the use of
  3573. the '--dwarf-depth' and '--dwarf-start' options.
  3574. 'k'
  3575. '=links'
  3576. Displays the contents of the '.gnu_debuglink' and/or
  3577. '.gnu_debugaltlink' sections. Also displays any links to
  3578. separate dwarf object files (dwo), if they are specified by
  3579. the DW_AT_GNU_dwo_name or DW_AT_dwo_name attributes in the
  3580. '.debug_info' section.
  3581. 'K'
  3582. '=follow-links'
  3583. Display the contents of any selected debug sections that are
  3584. found in linked, separate debug info file(s). This can result
  3585. in multiple versions of the same debug section being displayed
  3586. if it exists in more than one file.
  3587. In addition, when displaying DWARF attributes, if a form is
  3588. found that references the separate debug info file, then the
  3589. referenced contents will also be displayed.
  3590. 'l'
  3591. '=rawline'
  3592. Displays the contents of the '.debug_line' section in a raw
  3593. format.
  3594. 'L'
  3595. '=decodedline'
  3596. Displays the interpreted contents of the '.debug_line'
  3597. section.
  3598. 'm'
  3599. '=macro'
  3600. Displays the contents of the '.debug_macro' and/or
  3601. '.debug_macinfo' sections.
  3602. 'o'
  3603. '=loc'
  3604. Displays the contents of the '.debug_loc' and/or
  3605. '.debug_loclists' sections.
  3606. 'p'
  3607. '=pubnames'
  3608. Displays the contents of the '.debug_pubnames' and/or
  3609. '.debug_gnu_pubnames' sections.
  3610. 'r'
  3611. '=aranges'
  3612. Displays the contents of the '.debug_aranges' section.
  3613. 'R'
  3614. '=Ranges'
  3615. Displays the contents of the '.debug_ranges' and/or
  3616. '.debug_rnglists' sections.
  3617. 's'
  3618. '=str'
  3619. Displays the contents of the '.debug_str', '.debug_line_str'
  3620. and/or '.debug_str_offsets' sections.
  3621. 't'
  3622. '=pubtype'
  3623. Displays the contents of the '.debug_pubtypes' and/or
  3624. '.debug_gnu_pubtypes' sections.
  3625. 'T'
  3626. '=trace_aranges'
  3627. Displays the contents of the '.trace_aranges' section.
  3628. 'u'
  3629. '=trace_abbrev'
  3630. Displays the contents of the '.trace_abbrev' section.
  3631. 'U'
  3632. '=trace_info'
  3633. Displays the contents of the '.trace_info' section.
  3634. Note: displaying the contents of '.debug_static_funcs',
  3635. '.debug_static_vars' and 'debug_weaknames' sections is not
  3636. currently supported.
  3637. '--dwarf-depth=N'
  3638. Limit the dump of the '.debug_info' section to N children. This is
  3639. only useful with '--debug-dump=info'. The default is to print all
  3640. DIEs; the special value 0 for N will also have this effect.
  3641. With a non-zero value for N, DIEs at or deeper than N levels will
  3642. not be printed. The range for N is zero-based.
  3643. '--dwarf-start=N'
  3644. Print only DIEs beginning with the DIE numbered N. This is only
  3645. useful with '--debug-dump=info'.
  3646. If specified, this option will suppress printing of any header
  3647. information and all DIEs before the DIE numbered N. Only siblings
  3648. and children of the specified DIE will be printed.
  3649. This can be used in conjunction with '--dwarf-depth'.
  3650. '--ctf=SECTION'
  3651. Display the contents of the specified CTF section. CTF sections
  3652. themselves contain many subsections, all of which are displayed in
  3653. order.
  3654. '--ctf-parent=SECTION'
  3655. Specify the name of another section from which the CTF file can
  3656. inherit types.
  3657. '--ctf-symbols=SECTION'
  3658. '--ctf-strings=SECTION'
  3659. Specify the name of another section from which the CTF file can
  3660. inherit strings and symbols.
  3661. If either of '--ctf-symbols' or '--ctf-strings' is specified, the
  3662. other must be specified as well.
  3663. '-I'
  3664. '--histogram'
  3665. Display a histogram of bucket list lengths when displaying the
  3666. contents of the symbol tables.
  3667. '-v'
  3668. '--version'
  3669. Display the version number of readelf.
  3670. '-W'
  3671. '--wide'
  3672. Don't break output lines to fit into 80 columns. By default
  3673. 'readelf' breaks section header and segment listing lines for
  3674. 64-bit ELF files, so that they fit into 80 columns. This option
  3675. causes 'readelf' to print each section header resp. each segment
  3676. one a single line, which is far more readable on terminals wider
  3677. than 80 columns.
  3678. '-H'
  3679. '--help'
  3680. Display the command-line options understood by 'readelf'.
  3681. 
  3682. File: binutils.info, Node: elfedit, Next: Common Options, Prev: readelf, Up: Top
  3683. 15 elfedit
  3684. **********
  3685. elfedit [--input-mach=MACHINE]
  3686. [--input-type=TYPE]
  3687. [--input-osabi=OSABI]
  3688. --output-mach=MACHINE
  3689. --output-type=TYPE
  3690. --output-osabi=OSABI
  3691. --enable-x86-feature=FEATURE
  3692. --disable-x86-feature=FEATURE
  3693. [-v|--version]
  3694. [-h|--help]
  3695. ELFFILE...
  3696. 'elfedit' updates the ELF header and program property of ELF files
  3697. which have the matching ELF machine and file types. The options control
  3698. how and which fields in the ELF header and program property should be
  3699. updated.
  3700. ELFFILE... are the ELF files to be updated. 32-bit and 64-bit ELF
  3701. files are supported, as are archives containing ELF files.
  3702. The long and short forms of options, shown here as alternatives, are
  3703. equivalent. At least one of the '--output-mach', '--output-type',
  3704. '--output-osabi', '--enable-x86-feature' and '--disable-x86-feature'
  3705. options must be given.
  3706. '--input-mach=MACHINE'
  3707. Set the matching input ELF machine type to MACHINE. If
  3708. '--input-mach' isn't specified, it will match any ELF machine
  3709. types.
  3710. The supported ELF machine types are, I386, IAMCU, L1OM, K1OM and
  3711. X86-64.
  3712. '--output-mach=MACHINE'
  3713. Change the ELF machine type in the ELF header to MACHINE. The
  3714. supported ELF machine types are the same as '--input-mach'.
  3715. '--input-type=TYPE'
  3716. Set the matching input ELF file type to TYPE. If '--input-type'
  3717. isn't specified, it will match any ELF file types.
  3718. The supported ELF file types are, REL, EXEC and DYN.
  3719. '--output-type=TYPE'
  3720. Change the ELF file type in the ELF header to TYPE. The supported
  3721. ELF types are the same as '--input-type'.
  3722. '--input-osabi=OSABI'
  3723. Set the matching input ELF file OSABI to OSABI. If '--input-osabi'
  3724. isn't specified, it will match any ELF OSABIs.
  3725. The supported ELF OSABIs are, NONE, HPUX, NETBSD, GNU, LINUX (alias
  3726. for GNU), SOLARIS, AIX, IRIX, FREEBSD, TRU64, MODESTO, OPENBSD,
  3727. OPENVMS, NSK, AROS and FENIXOS.
  3728. '--output-osabi=OSABI'
  3729. Change the ELF OSABI in the ELF header to OSABI. The supported ELF
  3730. OSABI are the same as '--input-osabi'.
  3731. '--enable-x86-feature=FEATURE'
  3732. Set the FEATURE bit in program property in EXEC or DYN ELF files
  3733. with machine types of I386 or X86-64. The supported features are,
  3734. IBT and SHSTK.
  3735. '--disable-x86-feature=FEATURE'
  3736. Clear the FEATURE bit in program property in EXEC or DYN ELF files
  3737. with machine types of I386 or X86-64. The supported features are
  3738. the same as '--enable-x86-feature'.
  3739. Note: '--enable-x86-feature' and '--disable-x86-feature' are
  3740. available only on hosts with 'mmap' support.
  3741. '-v'
  3742. '--version'
  3743. Display the version number of 'elfedit'.
  3744. '-h'
  3745. '--help'
  3746. Display the command-line options understood by 'elfedit'.
  3747. 
  3748. File: binutils.info, Node: Common Options, Next: Selecting the Target System, Prev: elfedit, Up: Top
  3749. 16 Common Options
  3750. *****************
  3751. The following command-line options are supported by all of the programs
  3752. described in this manual.
  3753. '@FILE'
  3754. Read command-line options from FILE. The options read are inserted
  3755. in place of the original @FILE option. If FILE does not exist, or
  3756. cannot be read, then the option will be treated literally, and not
  3757. removed.
  3758. Options in FILE are separated by whitespace. A whitespace
  3759. character may be included in an option by surrounding the entire
  3760. option in either single or double quotes. Any character (including
  3761. a backslash) may be included by prefixing the character to be
  3762. included with a backslash. The FILE may itself contain additional
  3763. @FILE options; any such options will be processed recursively.
  3764. '--help'
  3765. Display the command-line options supported by the program.
  3766. '--version'
  3767. Display the version number of the program.
  3768. 
  3769. File: binutils.info, Node: Selecting the Target System, Next: Reporting Bugs, Prev: Common Options, Up: Top
  3770. 17 Selecting the Target System
  3771. ******************************
  3772. You can specify two aspects of the target system to the GNU binary file
  3773. utilities, each in several ways:
  3774. * the target
  3775. * the architecture
  3776. In the following summaries, the lists of ways to specify values are
  3777. in order of decreasing precedence. The ways listed first override those
  3778. listed later.
  3779. The commands to list valid values only list the values for which the
  3780. programs you are running were configured. If they were configured with
  3781. '--enable-targets=all', the commands list most of the available values,
  3782. but a few are left out; not all targets can be configured in at once
  3783. because some of them can only be configured "native" (on hosts with the
  3784. same type as the target system).
  3785. * Menu:
  3786. * Target Selection::
  3787. * Architecture Selection::
  3788. 
  3789. File: binutils.info, Node: Target Selection, Next: Architecture Selection, Up: Selecting the Target System
  3790. 17.1 Target Selection
  3791. =====================
  3792. A "target" is an object file format. A given target may be supported
  3793. for multiple architectures (*note Architecture Selection::). A target
  3794. selection may also have variations for different operating systems or
  3795. architectures.
  3796. The command to list valid target values is 'objdump -i' (the first
  3797. column of output contains the relevant information).
  3798. Some sample values are: 'a.out-hp300bsd', 'ecoff-littlemips',
  3799. 'a.out-sunos-big'.
  3800. You can also specify a target using a configuration triplet. This is
  3801. the same sort of name that is passed to 'configure' to specify a target.
  3802. When you use a configuration triplet as an argument, it must be fully
  3803. canonicalized. You can see the canonical version of a triplet by
  3804. running the shell script 'config.sub' which is included with the
  3805. sources.
  3806. Some sample configuration triplets are: 'm68k-hp-bsd',
  3807. 'mips-dec-ultrix', 'sparc-sun-sunos'.
  3808. 'objdump' Target
  3809. ----------------
  3810. Ways to specify:
  3811. 1. command-line option: '-b' or '--target'
  3812. 2. environment variable 'GNUTARGET'
  3813. 3. deduced from the input file
  3814. 'objcopy' and 'strip' Input Target
  3815. ----------------------------------
  3816. Ways to specify:
  3817. 1. command-line options: '-I' or '--input-target', or '-F' or
  3818. '--target'
  3819. 2. environment variable 'GNUTARGET'
  3820. 3. deduced from the input file
  3821. 'objcopy' and 'strip' Output Target
  3822. -----------------------------------
  3823. Ways to specify:
  3824. 1. command-line options: '-O' or '--output-target', or '-F' or
  3825. '--target'
  3826. 2. the input target (see "'objcopy' and 'strip' Input Target" above)
  3827. 3. environment variable 'GNUTARGET'
  3828. 4. deduced from the input file
  3829. 'nm', 'size', and 'strings' Target
  3830. ----------------------------------
  3831. Ways to specify:
  3832. 1. command-line option: '--target'
  3833. 2. environment variable 'GNUTARGET'
  3834. 3. deduced from the input file
  3835. 
  3836. File: binutils.info, Node: Architecture Selection, Prev: Target Selection, Up: Selecting the Target System
  3837. 17.2 Architecture Selection
  3838. ===========================
  3839. An "architecture" is a type of CPU on which an object file is to run.
  3840. Its name may contain a colon, separating the name of the processor
  3841. family from the name of the particular CPU.
  3842. The command to list valid architecture values is 'objdump -i' (the
  3843. second column contains the relevant information).
  3844. Sample values: 'm68k:68020', 'mips:3000', 'sparc'.
  3845. 'objdump' Architecture
  3846. ----------------------
  3847. Ways to specify:
  3848. 1. command-line option: '-m' or '--architecture'
  3849. 2. deduced from the input file
  3850. 'objcopy', 'nm', 'size', 'strings' Architecture
  3851. -----------------------------------------------
  3852. Ways to specify:
  3853. 1. deduced from the input file
  3854. 
  3855. File: binutils.info, Node: Reporting Bugs, Next: GNU Free Documentation License, Prev: Selecting the Target System, Up: Top
  3856. 18 Reporting Bugs
  3857. *****************
  3858. Your bug reports play an essential role in making the binary utilities
  3859. reliable.
  3860. Reporting a bug may help you by bringing a solution to your problem,
  3861. or it may not. But in any case the principal function of a bug report
  3862. is to help the entire community by making the next version of the binary
  3863. utilities work better. Bug reports are your contribution to their
  3864. maintenance.
  3865. In order for a bug report to serve its purpose, you must include the
  3866. information that enables us to fix the bug.
  3867. * Menu:
  3868. * Bug Criteria:: Have you found a bug?
  3869. * Bug Reporting:: How to report bugs
  3870. 
  3871. File: binutils.info, Node: Bug Criteria, Next: Bug Reporting, Up: Reporting Bugs
  3872. 18.1 Have You Found a Bug?
  3873. ==========================
  3874. If you are not sure whether you have found a bug, here are some
  3875. guidelines:
  3876. * If a binary utility gets a fatal signal, for any input whatever,
  3877. that is a bug. Reliable utilities never crash.
  3878. * If a binary utility produces an error message for valid input, that
  3879. is a bug.
  3880. * If you are an experienced user of binary utilities, your
  3881. suggestions for improvement are welcome in any case.
  3882. 
  3883. File: binutils.info, Node: Bug Reporting, Prev: Bug Criteria, Up: Reporting Bugs
  3884. 18.2 How to Report Bugs
  3885. =======================
  3886. A number of companies and individuals offer support for GNU products.
  3887. If you obtained the binary utilities from a support organization, we
  3888. recommend you contact that organization first.
  3889. You can find contact information for many support companies and
  3890. individuals in the file 'etc/SERVICE' in the GNU Emacs distribution.
  3891. In any event, we also recommend that you send bug reports for the
  3892. binary utilities to <http://www.sourceware.org/bugzilla/>.
  3893. The fundamental principle of reporting bugs usefully is this: *report
  3894. all the facts*. If you are not sure whether to state a fact or leave it
  3895. out, state it!
  3896. Often people omit facts because they think they know what causes the
  3897. problem and assume that some details do not matter. Thus, you might
  3898. assume that the name of a file you use in an example does not matter.
  3899. Well, probably it does not, but one cannot be sure. Perhaps the bug is
  3900. a stray memory reference which happens to fetch from the location where
  3901. that pathname is stored in memory; perhaps, if the pathname were
  3902. different, the contents of that location would fool the utility into
  3903. doing the right thing despite the bug. Play it safe and give a
  3904. specific, complete example. That is the easiest thing for you to do,
  3905. and the most helpful.
  3906. Keep in mind that the purpose of a bug report is to enable us to fix
  3907. the bug if it is new to us. Therefore, always write your bug reports on
  3908. the assumption that the bug has not been reported previously.
  3909. Sometimes people give a few sketchy facts and ask, "Does this ring a
  3910. bell?" This cannot help us fix a bug, so it is basically useless. We
  3911. respond by asking for enough details to enable us to investigate. You
  3912. might as well expedite matters by sending them to begin with.
  3913. To enable us to fix the bug, you should include all these things:
  3914. * The version of the utility. Each utility announces it if you start
  3915. it with the '--version' argument.
  3916. Without this, we will not know whether there is any point in
  3917. looking for the bug in the current version of the binary utilities.
  3918. * Any patches you may have applied to the source, including any
  3919. patches made to the 'BFD' library.
  3920. * The type of machine you are using, and the operating system name
  3921. and version number.
  3922. * What compiler (and its version) was used to compile the
  3923. utilities--e.g. "'gcc-2.7'".
  3924. * The command arguments you gave the utility to observe the bug. To
  3925. guarantee you will not omit something important, list them all. A
  3926. copy of the Makefile (or the output from make) is sufficient.
  3927. If we were to try to guess the arguments, we would probably guess
  3928. wrong and then we might not encounter the bug.
  3929. * A complete input file, or set of input files, that will reproduce
  3930. the bug. If the utility is reading an object file or files, then
  3931. it is generally most helpful to send the actual object files.
  3932. If the source files were produced exclusively using GNU programs
  3933. (e.g., 'gcc', 'gas', and/or the GNU 'ld'), then it may be OK to
  3934. send the source files rather than the object files. In this case,
  3935. be sure to say exactly what version of 'gcc', or whatever, was used
  3936. to produce the object files. Also say how 'gcc', or whatever, was
  3937. configured.
  3938. * A description of what behavior you observe that you believe is
  3939. incorrect. For example, "It gets a fatal signal."
  3940. Of course, if the bug is that the utility gets a fatal signal, then
  3941. we will certainly notice it. But if the bug is incorrect output,
  3942. we might not notice unless it is glaringly wrong. You might as
  3943. well not give us a chance to make a mistake.
  3944. Even if the problem you experience is a fatal signal, you should
  3945. still say so explicitly. Suppose something strange is going on,
  3946. such as your copy of the utility is out of sync, or you have
  3947. encountered a bug in the C library on your system. (This has
  3948. happened!) Your copy might crash and ours would not. If you told
  3949. us to expect a crash, then when ours fails to crash, we would know
  3950. that the bug was not happening for us. If you had not told us to
  3951. expect a crash, then we would not be able to draw any conclusion
  3952. from our observations.
  3953. * If you wish to suggest changes to the source, send us context
  3954. diffs, as generated by 'diff' with the '-u', '-c', or '-p' option.
  3955. Always send diffs from the old file to the new file. If you wish
  3956. to discuss something in the 'ld' source, refer to it by context,
  3957. not by line number.
  3958. The line numbers in our development sources will not match those in
  3959. your sources. Your line numbers would convey no useful information
  3960. to us.
  3961. Here are some things that are not necessary:
  3962. * A description of the envelope of the bug.
  3963. Often people who encounter a bug spend a lot of time investigating
  3964. which changes to the input file will make the bug go away and which
  3965. changes will not affect it.
  3966. This is often time consuming and not very useful, because the way
  3967. we will find the bug is by running a single example under the
  3968. debugger with breakpoints, not by pure deduction from a series of
  3969. examples. We recommend that you save your time for something else.
  3970. Of course, if you can find a simpler example to report _instead_ of
  3971. the original one, that is a convenience for us. Errors in the
  3972. output will be easier to spot, running under the debugger will take
  3973. less time, and so on.
  3974. However, simplification is not vital; if you do not want to do
  3975. this, report the bug anyway and send us the entire test case you
  3976. used.
  3977. * A patch for the bug.
  3978. A patch for the bug does help us if it is a good one. But do not
  3979. omit the necessary information, such as the test case, on the
  3980. assumption that a patch is all we need. We might see problems with
  3981. your patch and decide to fix the problem another way, or we might
  3982. not understand it at all.
  3983. Sometimes with programs as complicated as the binary utilities it
  3984. is very hard to construct an example that will make the program
  3985. follow a certain path through the code. If you do not send us the
  3986. example, we will not be able to construct one, so we will not be
  3987. able to verify that the bug is fixed.
  3988. And if we cannot understand what bug you are trying to fix, or why
  3989. your patch should be an improvement, we will not install it. A
  3990. test case will help us to understand.
  3991. * A guess about what the bug is or what it depends on.
  3992. Such guesses are usually wrong. Even we cannot guess right about
  3993. such things without first using the debugger to find the facts.
  3994. 
  3995. File: binutils.info, Node: GNU Free Documentation License, Next: Binutils Index, Prev: Reporting Bugs, Up: Top
  3996. Appendix A GNU Free Documentation License
  3997. *****************************************
  3998. Version 1.3, 3 November 2008
  3999. Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
  4000. <http://fsf.org/>
  4001. Everyone is permitted to copy and distribute verbatim copies
  4002. of this license document, but changing it is not allowed.
  4003. 0. PREAMBLE
  4004. The purpose of this License is to make a manual, textbook, or other
  4005. functional and useful document "free" in the sense of freedom: to
  4006. assure everyone the effective freedom to copy and redistribute it,
  4007. with or without modifying it, either commercially or
  4008. noncommercially. Secondarily, this License preserves for the
  4009. author and publisher a way to get credit for their work, while not
  4010. being considered responsible for modifications made by others.
  4011. This License is a kind of "copyleft", which means that derivative
  4012. works of the document must themselves be free in the same sense.
  4013. It complements the GNU General Public License, which is a copyleft
  4014. license designed for free software.
  4015. We have designed this License in order to use it for manuals for
  4016. free software, because free software needs free documentation: a
  4017. free program should come with manuals providing the same freedoms
  4018. that the software does. But this License is not limited to
  4019. software manuals; it can be used for any textual work, regardless
  4020. of subject matter or whether it is published as a printed book. We
  4021. recommend this License principally for works whose purpose is
  4022. instruction or reference.
  4023. 1. APPLICABILITY AND DEFINITIONS
  4024. This License applies to any manual or other work, in any medium,
  4025. that contains a notice placed by the copyright holder saying it can
  4026. be distributed under the terms of this License. Such a notice
  4027. grants a world-wide, royalty-free license, unlimited in duration,
  4028. to use that work under the conditions stated herein. The
  4029. "Document", below, refers to any such manual or work. Any member
  4030. of the public is a licensee, and is addressed as "you". You accept
  4031. the license if you copy, modify or distribute the work in a way
  4032. requiring permission under copyright law.
  4033. A "Modified Version" of the Document means any work containing the
  4034. Document or a portion of it, either copied verbatim, or with
  4035. modifications and/or translated into another language.
  4036. A "Secondary Section" is a named appendix or a front-matter section
  4037. of the Document that deals exclusively with the relationship of the
  4038. publishers or authors of the Document to the Document's overall
  4039. subject (or to related matters) and contains nothing that could
  4040. fall directly within that overall subject. (Thus, if the Document
  4041. is in part a textbook of mathematics, a Secondary Section may not
  4042. explain any mathematics.) The relationship could be a matter of
  4043. historical connection with the subject or with related matters, or
  4044. of legal, commercial, philosophical, ethical or political position
  4045. regarding them.
  4046. The "Invariant Sections" are certain Secondary Sections whose
  4047. titles are designated, as being those of Invariant Sections, in the
  4048. notice that says that the Document is released under this License.
  4049. If a section does not fit the above definition of Secondary then it
  4050. is not allowed to be designated as Invariant. The Document may
  4051. contain zero Invariant Sections. If the Document does not identify
  4052. any Invariant Sections then there are none.
  4053. The "Cover Texts" are certain short passages of text that are
  4054. listed, as Front-Cover Texts or Back-Cover Texts, in the notice
  4055. that says that the Document is released under this License. A
  4056. Front-Cover Text may be at most 5 words, and a Back-Cover Text may
  4057. be at most 25 words.
  4058. A "Transparent" copy of the Document means a machine-readable copy,
  4059. represented in a format whose specification is available to the
  4060. general public, that is suitable for revising the document
  4061. straightforwardly with generic text editors or (for images composed
  4062. of pixels) generic paint programs or (for drawings) some widely
  4063. available drawing editor, and that is suitable for input to text
  4064. formatters or for automatic translation to a variety of formats
  4065. suitable for input to text formatters. A copy made in an otherwise
  4066. Transparent file format whose markup, or absence of markup, has
  4067. been arranged to thwart or discourage subsequent modification by
  4068. readers is not Transparent. An image format is not Transparent if
  4069. used for any substantial amount of text. A copy that is not
  4070. "Transparent" is called "Opaque".
  4071. Examples of suitable formats for Transparent copies include plain
  4072. ASCII without markup, Texinfo input format, LaTeX input format,
  4073. SGML or XML using a publicly available DTD, and standard-conforming
  4074. simple HTML, PostScript or PDF designed for human modification.
  4075. Examples of transparent image formats include PNG, XCF and JPG.
  4076. Opaque formats include proprietary formats that can be read and
  4077. edited only by proprietary word processors, SGML or XML for which
  4078. the DTD and/or processing tools are not generally available, and
  4079. the machine-generated HTML, PostScript or PDF produced by some word
  4080. processors for output purposes only.
  4081. The "Title Page" means, for a printed book, the title page itself,
  4082. plus such following pages as are needed to hold, legibly, the
  4083. material this License requires to appear in the title page. For
  4084. works in formats which do not have any title page as such, "Title
  4085. Page" means the text near the most prominent appearance of the
  4086. work's title, preceding the beginning of the body of the text.
  4087. The "publisher" means any person or entity that distributes copies
  4088. of the Document to the public.
  4089. A section "Entitled XYZ" means a named subunit of the Document
  4090. whose title either is precisely XYZ or contains XYZ in parentheses
  4091. following text that translates XYZ in another language. (Here XYZ
  4092. stands for a specific section name mentioned below, such as
  4093. "Acknowledgements", "Dedications", "Endorsements", or "History".)
  4094. To "Preserve the Title" of such a section when you modify the
  4095. Document means that it remains a section "Entitled XYZ" according
  4096. to this definition.
  4097. The Document may include Warranty Disclaimers next to the notice
  4098. which states that this License applies to the Document. These
  4099. Warranty Disclaimers are considered to be included by reference in
  4100. this License, but only as regards disclaiming warranties: any other
  4101. implication that these Warranty Disclaimers may have is void and
  4102. has no effect on the meaning of this License.
  4103. 2. VERBATIM COPYING
  4104. You may copy and distribute the Document in any medium, either
  4105. commercially or noncommercially, provided that this License, the
  4106. copyright notices, and the license notice saying this License
  4107. applies to the Document are reproduced in all copies, and that you
  4108. add no other conditions whatsoever to those of this License. You
  4109. may not use technical measures to obstruct or control the reading
  4110. or further copying of the copies you make or distribute. However,
  4111. you may accept compensation in exchange for copies. If you
  4112. distribute a large enough number of copies you must also follow the
  4113. conditions in section 3.
  4114. You may also lend copies, under the same conditions stated above,
  4115. and you may publicly display copies.
  4116. 3. COPYING IN QUANTITY
  4117. If you publish printed copies (or copies in media that commonly
  4118. have printed covers) of the Document, numbering more than 100, and
  4119. the Document's license notice requires Cover Texts, you must
  4120. enclose the copies in covers that carry, clearly and legibly, all
  4121. these Cover Texts: Front-Cover Texts on the front cover, and
  4122. Back-Cover Texts on the back cover. Both covers must also clearly
  4123. and legibly identify you as the publisher of these copies. The
  4124. front cover must present the full title with all words of the title
  4125. equally prominent and visible. You may add other material on the
  4126. covers in addition. Copying with changes limited to the covers, as
  4127. long as they preserve the title of the Document and satisfy these
  4128. conditions, can be treated as verbatim copying in other respects.
  4129. If the required texts for either cover are too voluminous to fit
  4130. legibly, you should put the first ones listed (as many as fit
  4131. reasonably) on the actual cover, and continue the rest onto
  4132. adjacent pages.
  4133. If you publish or distribute Opaque copies of the Document
  4134. numbering more than 100, you must either include a machine-readable
  4135. Transparent copy along with each Opaque copy, or state in or with
  4136. each Opaque copy a computer-network location from which the general
  4137. network-using public has access to download using public-standard
  4138. network protocols a complete Transparent copy of the Document, free
  4139. of added material. If you use the latter option, you must take
  4140. reasonably prudent steps, when you begin distribution of Opaque
  4141. copies in quantity, to ensure that this Transparent copy will
  4142. remain thus accessible at the stated location until at least one
  4143. year after the last time you distribute an Opaque copy (directly or
  4144. through your agents or retailers) of that edition to the public.
  4145. It is requested, but not required, that you contact the authors of
  4146. the Document well before redistributing any large number of copies,
  4147. to give them a chance to provide you with an updated version of the
  4148. Document.
  4149. 4. MODIFICATIONS
  4150. You may copy and distribute a Modified Version of the Document
  4151. under the conditions of sections 2 and 3 above, provided that you
  4152. release the Modified Version under precisely this License, with the
  4153. Modified Version filling the role of the Document, thus licensing
  4154. distribution and modification of the Modified Version to whoever
  4155. possesses a copy of it. In addition, you must do these things in
  4156. the Modified Version:
  4157. A. Use in the Title Page (and on the covers, if any) a title
  4158. distinct from that of the Document, and from those of previous
  4159. versions (which should, if there were any, be listed in the
  4160. History section of the Document). You may use the same title
  4161. as a previous version if the original publisher of that
  4162. version gives permission.
  4163. B. List on the Title Page, as authors, one or more persons or
  4164. entities responsible for authorship of the modifications in
  4165. the Modified Version, together with at least five of the
  4166. principal authors of the Document (all of its principal
  4167. authors, if it has fewer than five), unless they release you
  4168. from this requirement.
  4169. C. State on the Title page the name of the publisher of the
  4170. Modified Version, as the publisher.
  4171. D. Preserve all the copyright notices of the Document.
  4172. E. Add an appropriate copyright notice for your modifications
  4173. adjacent to the other copyright notices.
  4174. F. Include, immediately after the copyright notices, a license
  4175. notice giving the public permission to use the Modified
  4176. Version under the terms of this License, in the form shown in
  4177. the Addendum below.
  4178. G. Preserve in that license notice the full lists of Invariant
  4179. Sections and required Cover Texts given in the Document's
  4180. license notice.
  4181. H. Include an unaltered copy of this License.
  4182. I. Preserve the section Entitled "History", Preserve its Title,
  4183. and add to it an item stating at least the title, year, new
  4184. authors, and publisher of the Modified Version as given on the
  4185. Title Page. If there is no section Entitled "History" in the
  4186. Document, create one stating the title, year, authors, and
  4187. publisher of the Document as given on its Title Page, then add
  4188. an item describing the Modified Version as stated in the
  4189. previous sentence.
  4190. J. Preserve the network location, if any, given in the Document
  4191. for public access to a Transparent copy of the Document, and
  4192. likewise the network locations given in the Document for
  4193. previous versions it was based on. These may be placed in the
  4194. "History" section. You may omit a network location for a work
  4195. that was published at least four years before the Document
  4196. itself, or if the original publisher of the version it refers
  4197. to gives permission.
  4198. K. For any section Entitled "Acknowledgements" or "Dedications",
  4199. Preserve the Title of the section, and preserve in the section
  4200. all the substance and tone of each of the contributor
  4201. acknowledgements and/or dedications given therein.
  4202. L. Preserve all the Invariant Sections of the Document, unaltered
  4203. in their text and in their titles. Section numbers or the
  4204. equivalent are not considered part of the section titles.
  4205. M. Delete any section Entitled "Endorsements". Such a section
  4206. may not be included in the Modified Version.
  4207. N. Do not retitle any existing section to be Entitled
  4208. "Endorsements" or to conflict in title with any Invariant
  4209. Section.
  4210. O. Preserve any Warranty Disclaimers.
  4211. If the Modified Version includes new front-matter sections or
  4212. appendices that qualify as Secondary Sections and contain no
  4213. material copied from the Document, you may at your option designate
  4214. some or all of these sections as invariant. To do this, add their
  4215. titles to the list of Invariant Sections in the Modified Version's
  4216. license notice. These titles must be distinct from any other
  4217. section titles.
  4218. You may add a section Entitled "Endorsements", provided it contains
  4219. nothing but endorsements of your Modified Version by various
  4220. parties--for example, statements of peer review or that the text
  4221. has been approved by an organization as the authoritative
  4222. definition of a standard.
  4223. You may add a passage of up to five words as a Front-Cover Text,
  4224. and a passage of up to 25 words as a Back-Cover Text, to the end of
  4225. the list of Cover Texts in the Modified Version. Only one passage
  4226. of Front-Cover Text and one of Back-Cover Text may be added by (or
  4227. through arrangements made by) any one entity. If the Document
  4228. already includes a cover text for the same cover, previously added
  4229. by you or by arrangement made by the same entity you are acting on
  4230. behalf of, you may not add another; but you may replace the old
  4231. one, on explicit permission from the previous publisher that added
  4232. the old one.
  4233. The author(s) and publisher(s) of the Document do not by this
  4234. License give permission to use their names for publicity for or to
  4235. assert or imply endorsement of any Modified Version.
  4236. 5. COMBINING DOCUMENTS
  4237. You may combine the Document with other documents released under
  4238. this License, under the terms defined in section 4 above for
  4239. modified versions, provided that you include in the combination all
  4240. of the Invariant Sections of all of the original documents,
  4241. unmodified, and list them all as Invariant Sections of your
  4242. combined work in its license notice, and that you preserve all
  4243. their Warranty Disclaimers.
  4244. The combined work need only contain one copy of this License, and
  4245. multiple identical Invariant Sections may be replaced with a single
  4246. copy. If there are multiple Invariant Sections with the same name
  4247. but different contents, make the title of each such section unique
  4248. by adding at the end of it, in parentheses, the name of the
  4249. original author or publisher of that section if known, or else a
  4250. unique number. Make the same adjustment to the section titles in
  4251. the list of Invariant Sections in the license notice of the
  4252. combined work.
  4253. In the combination, you must combine any sections Entitled
  4254. "History" in the various original documents, forming one section
  4255. Entitled "History"; likewise combine any sections Entitled
  4256. "Acknowledgements", and any sections Entitled "Dedications". You
  4257. must delete all sections Entitled "Endorsements."
  4258. 6. COLLECTIONS OF DOCUMENTS
  4259. You may make a collection consisting of the Document and other
  4260. documents released under this License, and replace the individual
  4261. copies of this License in the various documents with a single copy
  4262. that is included in the collection, provided that you follow the
  4263. rules of this License for verbatim copying of each of the documents
  4264. in all other respects.
  4265. You may extract a single document from such a collection, and
  4266. distribute it individually under this License, provided you insert
  4267. a copy of this License into the extracted document, and follow this
  4268. License in all other respects regarding verbatim copying of that
  4269. document.
  4270. 7. AGGREGATION WITH INDEPENDENT WORKS
  4271. A compilation of the Document or its derivatives with other
  4272. separate and independent documents or works, in or on a volume of a
  4273. storage or distribution medium, is called an "aggregate" if the
  4274. copyright resulting from the compilation is not used to limit the
  4275. legal rights of the compilation's users beyond what the individual
  4276. works permit. When the Document is included in an aggregate, this
  4277. License does not apply to the other works in the aggregate which
  4278. are not themselves derivative works of the Document.
  4279. If the Cover Text requirement of section 3 is applicable to these
  4280. copies of the Document, then if the Document is less than one half
  4281. of the entire aggregate, the Document's Cover Texts may be placed
  4282. on covers that bracket the Document within the aggregate, or the
  4283. electronic equivalent of covers if the Document is in electronic
  4284. form. Otherwise they must appear on printed covers that bracket
  4285. the whole aggregate.
  4286. 8. TRANSLATION
  4287. Translation is considered a kind of modification, so you may
  4288. distribute translations of the Document under the terms of section
  4289. 4. Replacing Invariant Sections with translations requires special
  4290. permission from their copyright holders, but you may include
  4291. translations of some or all Invariant Sections in addition to the
  4292. original versions of these Invariant Sections. You may include a
  4293. translation of this License, and all the license notices in the
  4294. Document, and any Warranty Disclaimers, provided that you also
  4295. include the original English version of this License and the
  4296. original versions of those notices and disclaimers. In case of a
  4297. disagreement between the translation and the original version of
  4298. this License or a notice or disclaimer, the original version will
  4299. prevail.
  4300. If a section in the Document is Entitled "Acknowledgements",
  4301. "Dedications", or "History", the requirement (section 4) to
  4302. Preserve its Title (section 1) will typically require changing the
  4303. actual title.
  4304. 9. TERMINATION
  4305. You may not copy, modify, sublicense, or distribute the Document
  4306. except as expressly provided under this License. Any attempt
  4307. otherwise to copy, modify, sublicense, or distribute it is void,
  4308. and will automatically terminate your rights under this License.
  4309. However, if you cease all violation of this License, then your
  4310. license from a particular copyright holder is reinstated (a)
  4311. provisionally, unless and until the copyright holder explicitly and
  4312. finally terminates your license, and (b) permanently, if the
  4313. copyright holder fails to notify you of the violation by some
  4314. reasonable means prior to 60 days after the cessation.
  4315. Moreover, your license from a particular copyright holder is
  4316. reinstated permanently if the copyright holder notifies you of the
  4317. violation by some reasonable means, this is the first time you have
  4318. received notice of violation of this License (for any work) from
  4319. that copyright holder, and you cure the violation prior to 30 days
  4320. after your receipt of the notice.
  4321. Termination of your rights under this section does not terminate
  4322. the licenses of parties who have received copies or rights from you
  4323. under this License. If your rights have been terminated and not
  4324. permanently reinstated, receipt of a copy of some or all of the
  4325. same material does not give you any rights to use it.
  4326. 10. FUTURE REVISIONS OF THIS LICENSE
  4327. The Free Software Foundation may publish new, revised versions of
  4328. the GNU Free Documentation License from time to time. Such new
  4329. versions will be similar in spirit to the present version, but may
  4330. differ in detail to address new problems or concerns. See
  4331. <http://www.gnu.org/copyleft/>.
  4332. Each version of the License is given a distinguishing version
  4333. number. If the Document specifies that a particular numbered
  4334. version of this License "or any later version" applies to it, you
  4335. have the option of following the terms and conditions either of
  4336. that specified version or of any later version that has been
  4337. published (not as a draft) by the Free Software Foundation. If the
  4338. Document does not specify a version number of this License, you may
  4339. choose any version ever published (not as a draft) by the Free
  4340. Software Foundation. If the Document specifies that a proxy can
  4341. decide which future versions of this License can be used, that
  4342. proxy's public statement of acceptance of a version permanently
  4343. authorizes you to choose that version for the Document.
  4344. 11. RELICENSING
  4345. "Massive Multiauthor Collaboration Site" (or "MMC Site") means any
  4346. World Wide Web server that publishes copyrightable works and also
  4347. provides prominent facilities for anybody to edit those works. A
  4348. public wiki that anybody can edit is an example of such a server.
  4349. A "Massive Multiauthor Collaboration" (or "MMC") contained in the
  4350. site means any set of copyrightable works thus published on the MMC
  4351. site.
  4352. "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0
  4353. license published by Creative Commons Corporation, a not-for-profit
  4354. corporation with a principal place of business in San Francisco,
  4355. California, as well as future copyleft versions of that license
  4356. published by that same organization.
  4357. "Incorporate" means to publish or republish a Document, in whole or
  4358. in part, as part of another Document.
  4359. An MMC is "eligible for relicensing" if it is licensed under this
  4360. License, and if all works that were first published under this
  4361. License somewhere other than this MMC, and subsequently
  4362. incorporated in whole or in part into the MMC, (1) had no cover
  4363. texts or invariant sections, and (2) were thus incorporated prior
  4364. to November 1, 2008.
  4365. The operator of an MMC Site may republish an MMC contained in the
  4366. site under CC-BY-SA on the same site at any time before August 1,
  4367. 2009, provided the MMC is eligible for relicensing.
  4368. ADDENDUM: How to use this License for your documents
  4369. ====================================================
  4370. To use this License in a document you have written, include a copy of
  4371. the License in the document and put the following copyright and license
  4372. notices just after the title page:
  4373. Copyright (C) YEAR YOUR NAME.
  4374. Permission is granted to copy, distribute and/or modify this document
  4375. under the terms of the GNU Free Documentation License, Version 1.3
  4376. or any later version published by the Free Software Foundation;
  4377. with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
  4378. Texts. A copy of the license is included in the section entitled ``GNU
  4379. Free Documentation License''.
  4380. If you have Invariant Sections, Front-Cover Texts and Back-Cover
  4381. Texts, replace the "with...Texts." line with this:
  4382. with the Invariant Sections being LIST THEIR TITLES, with
  4383. the Front-Cover Texts being LIST, and with the Back-Cover Texts
  4384. being LIST.
  4385. If you have Invariant Sections without Cover Texts, or some other
  4386. combination of the three, merge those two alternatives to suit the
  4387. situation.
  4388. If your document contains nontrivial examples of program code, we
  4389. recommend releasing these examples in parallel under your choice of free
  4390. software license, such as the GNU General Public License, to permit
  4391. their use in free software.
  4392. 
  4393. File: binutils.info, Node: Binutils Index, Prev: GNU Free Documentation License, Up: Top
  4394. Binutils Index
  4395. **************
  4396. �[index�]
  4397. * Menu:
  4398. * -enable-deterministic-archives: ar cmdline. (line 145)
  4399. * -enable-deterministic-archives <1>: ar cmdline. (line 222)
  4400. * -enable-deterministic-archives <2>: objcopy. (line 350)
  4401. * -enable-deterministic-archives <3>: objcopy. (line 360)
  4402. * -enable-deterministic-archives <4>: ranlib. (line 32)
  4403. * -enable-deterministic-archives <5>: ranlib. (line 44)
  4404. * -enable-deterministic-archives <6>: strip. (line 150)
  4405. * -enable-deterministic-archives <7>: strip. (line 160)
  4406. * .stab: objdump. (line 673)
  4407. * Add prefix to absolute paths: objdump. (line 498)
  4408. * addr2line: addr2line. (line 6)
  4409. * address to file name and line number: addr2line. (line 6)
  4410. * all header information, object file: objdump. (line 795)
  4411. * ar: ar. (line 6)
  4412. * ar compatibility: ar. (line 60)
  4413. * architecture: objdump. (line 251)
  4414. * architectures available: objdump. (line 236)
  4415. * archive contents: ranlib. (line 6)
  4416. * Archive file symbol index information: readelf. (line 183)
  4417. * archive headers: objdump. (line 75)
  4418. * archives: ar. (line 6)
  4419. * base files: dlltool. (line 124)
  4420. * bug criteria: Bug Criteria. (line 6)
  4421. * bug reports: Bug Reporting. (line 6)
  4422. * bugs: Reporting Bugs. (line 6)
  4423. * bugs, reporting: Bug Reporting. (line 6)
  4424. * c++filt: c++filt. (line 6)
  4425. * changing object addresses: objcopy. (line 395)
  4426. * changing section address: objcopy. (line 405)
  4427. * changing section LMA: objcopy. (line 414)
  4428. * changing section VMA: objcopy. (line 427)
  4429. * changing start address: objcopy. (line 390)
  4430. * collections of files: ar. (line 6)
  4431. * Compact Type Format: objdump. (line 661)
  4432. * Compact Type Format <1>: readelf. (line 327)
  4433. * compatibility, ar: ar. (line 60)
  4434. * contents of archive: ar cmdline. (line 97)
  4435. * crash: Bug Criteria. (line 9)
  4436. * creating archives: ar cmdline. (line 139)
  4437. * creating thin archive: ar cmdline. (line 208)
  4438. * CTF: objdump. (line 661)
  4439. * CTF <1>: readelf. (line 327)
  4440. * cxxfilt: c++filt. (line 16)
  4441. * dates in archive: ar cmdline. (line 178)
  4442. * debug symbols: objdump. (line 673)
  4443. * debugging symbols: nm. (line 153)
  4444. * deleting from archive: ar cmdline. (line 26)
  4445. * demangling C++ symbols: c++filt. (line 6)
  4446. * demangling in nm: nm. (line 161)
  4447. * demangling in objdump: objdump. (line 103)
  4448. * demangling in objdump <1>: addr2line. (line 86)
  4449. * deterministic archives: ar cmdline. (line 145)
  4450. * deterministic archives <1>: ar cmdline. (line 222)
  4451. * deterministic archives <2>: objcopy. (line 350)
  4452. * deterministic archives <3>: objcopy. (line 360)
  4453. * deterministic archives <4>: ranlib. (line 32)
  4454. * deterministic archives <5>: ranlib. (line 44)
  4455. * deterministic archives <6>: strip. (line 150)
  4456. * deterministic archives <7>: strip. (line 160)
  4457. * disassembling object code: objdump. (line 144)
  4458. * disassembly architecture: objdump. (line 251)
  4459. * disassembly endianness: objdump. (line 186)
  4460. * disassembly, with source: objdump. (line 487)
  4461. * disassembly, with source <1>: objdump. (line 491)
  4462. * discarding symbols: strip. (line 6)
  4463. * DLL: dlltool. (line 6)
  4464. * dlltool: dlltool. (line 6)
  4465. * dynamic relocation entries, in object file: objdump. (line 475)
  4466. * dynamic symbol table entries, printing: objdump. (line 772)
  4467. * dynamic symbols: nm. (line 191)
  4468. * ELF dynamic section information: readelf. (line 132)
  4469. * ELF dynamic symbol table information: readelf. (line 104)
  4470. * ELF file header information: readelf. (line 67)
  4471. * ELF file information: readelf. (line 6)
  4472. * ELF notes: readelf. (line 114)
  4473. * ELF object file format: objdump. (line 673)
  4474. * ELF program header information: readelf. (line 73)
  4475. * ELF reloc information: readelf. (line 118)
  4476. * ELF section group information: readelf. (line 84)
  4477. * ELF section information: readelf. (line 79)
  4478. * ELF section information <1>: readelf. (line 89)
  4479. * ELF segment information: readelf. (line 73)
  4480. * ELF symbol table information: readelf. (line 94)
  4481. * ELF version sections information: readelf. (line 136)
  4482. * elfedit: elfedit. (line 6)
  4483. * endianness: objdump. (line 186)
  4484. * error on valid input: Bug Criteria. (line 12)
  4485. * external symbols: nm. (line 203)
  4486. * external symbols <1>: nm. (line 267)
  4487. * external symbols <2>: nm. (line 281)
  4488. * extract from archive: ar cmdline. (line 114)
  4489. * fatal signal: Bug Criteria. (line 9)
  4490. * file name: nm. (line 147)
  4491. * header information, all: objdump. (line 795)
  4492. * input .def file: dlltool. (line 120)
  4493. * input file name: nm. (line 147)
  4494. * Instruction width: objdump. (line 515)
  4495. * libraries: ar. (line 25)
  4496. * listings strings: strings. (line 6)
  4497. * machine instructions: objdump. (line 144)
  4498. * moving in archive: ar cmdline. (line 34)
  4499. * MRI compatibility, ar: ar scripts. (line 8)
  4500. * name duplication in archive: ar cmdline. (line 108)
  4501. * name length: ar. (line 18)
  4502. * nm: nm. (line 6)
  4503. * nm compatibility: nm. (line 157)
  4504. * nm compatibility <1>: nm. (line 197)
  4505. * nm format: nm. (line 157)
  4506. * nm format <1>: nm. (line 197)
  4507. * not writing archive index: ar cmdline. (line 201)
  4508. * objdump: objdump. (line 6)
  4509. * objdump inlines: nm. (line 219)
  4510. * object code format: nm. (line 333)
  4511. * object code format <1>: objdump. (line 89)
  4512. * object code format <2>: size. (line 103)
  4513. * object code format <3>: strings. (line 94)
  4514. * object code format <4>: addr2line. (line 81)
  4515. * object file header: objdump. (line 192)
  4516. * object file information: objdump. (line 6)
  4517. * object file offsets: objdump. (line 197)
  4518. * object file sections: objdump. (line 482)
  4519. * object formats available: objdump. (line 236)
  4520. * offsets of files: ar cmdline. (line 183)
  4521. * operations on archive: ar cmdline. (line 22)
  4522. * plugins: ar cmdline. (line 256)
  4523. * plugins <1>: nm. (line 284)
  4524. * printing from archive: ar cmdline. (line 46)
  4525. * printing strings: strings. (line 6)
  4526. * quick append to archive: ar cmdline. (line 54)
  4527. * radix for section sizes: size. (line 85)
  4528. * ranlib: ranlib. (line 6)
  4529. * ranlib <1>: ar cmdline. (line 91)
  4530. * readelf: readelf. (line 6)
  4531. * relative placement in archive: ar cmdline. (line 127)
  4532. * relocation entries, in object file: objdump. (line 469)
  4533. * removing symbols: strip. (line 6)
  4534. * repeated names in archive: ar cmdline. (line 108)
  4535. * replacement in archive: ar cmdline. (line 73)
  4536. * reporting bugs: Reporting Bugs. (line 6)
  4537. * scripts, ar: ar scripts. (line 8)
  4538. * section addresses in objdump: objdump. (line 81)
  4539. * section headers: objdump. (line 213)
  4540. * section information: objdump. (line 241)
  4541. * section sizes: size. (line 6)
  4542. * sections, full contents: objdump. (line 482)
  4543. * size: size. (line 6)
  4544. * size display format: size. (line 28)
  4545. * size number format: size. (line 85)
  4546. * sorting symbols: nm. (line 234)
  4547. * source code context: objdump. (line 206)
  4548. * source disassembly: objdump. (line 487)
  4549. * source disassembly <1>: objdump. (line 491)
  4550. * source file name: nm. (line 147)
  4551. * source filenames for object files: objdump. (line 245)
  4552. * stab: objdump. (line 673)
  4553. * start-address: objdump. (line 682)
  4554. * stop-address: objdump. (line 686)
  4555. * strings: strings. (line 6)
  4556. * strings, printing: strings. (line 6)
  4557. * strip: strip. (line 6)
  4558. * Strip absolute paths: objdump. (line 501)
  4559. * symbol index: ar. (line 28)
  4560. * symbol index <1>: ranlib. (line 6)
  4561. * symbol index, listing: nm. (line 256)
  4562. * symbol line numbers: nm. (line 211)
  4563. * symbol table entries, printing: objdump. (line 691)
  4564. * symbols: nm. (line 6)
  4565. * symbols, discarding: strip. (line 6)
  4566. * thin archives: ar. (line 40)
  4567. * undefined symbols: nm. (line 267)
  4568. * undefined symbols <1>: nm. (line 281)
  4569. * Unix compatibility, ar: ar cmdline. (line 8)
  4570. * unwind information: readelf. (line 123)
  4571. * Update ELF header: elfedit. (line 6)
  4572. * updating an archive: ar cmdline. (line 213)
  4573. * version: Top. (line 6)
  4574. * VMA in objdump: objdump. (line 81)
  4575. * wide output, printing: objdump. (line 801)
  4576. * writing archive index: ar cmdline. (line 195)
  4577. 
  4578. Tag Table:
  4579. Node: Top1834
  4580. Node: ar3515
  4581. Node: ar cmdline6649
  4582. Node: ar scripts18231
  4583. Node: nm23917
  4584. Node: objcopy36541
  4585. Node: objdump76568
  4586. Node: ranlib108465
  4587. Node: size110064
  4588. Node: strings114033
  4589. Node: strip118405
  4590. Node: c++filt127758
  4591. Ref: c++filt-Footnote-1133620
  4592. Node: addr2line133726
  4593. Node: windmc139405
  4594. Node: windres143064
  4595. Node: dlltool149423
  4596. Node: def file format162420
  4597. Node: readelf164950
  4598. Node: elfedit177293
  4599. Node: Common Options180249
  4600. Node: Selecting the Target System181283
  4601. Node: Target Selection182215
  4602. Node: Architecture Selection184196
  4603. Node: Reporting Bugs185024
  4604. Node: Bug Criteria185803
  4605. Node: Bug Reporting186356
  4606. Node: GNU Free Documentation License193226
  4607. Node: Binutils Index218386
  4608. 
  4609. End Tag Table