ChangeLog-9197 188 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223
  1. Mon Dec 29 16:58:05 1997 Ian Lance Taylor <ian@cygnus.com>
  2. From Matthew Bellantoni <matthew@chrysalis.com>:
  3. * ar.c (get_pos_bfd): Add default_posname parameter. Change all
  4. callers.
  5. (replace_members): Default to replacing in the same position.
  6. Mon Dec 22 11:27:22 1997 Ian Lance Taylor <ian@cygnus.com>
  7. * rclex.l: Don't permit a comma in a STRING.
  8. * rcparse.y (acc_entry): Warn if an inappropriate modifier is used
  9. with a non VIRTKEY.
  10. (acc_event): For a control character, set VIRTKEY, and force the
  11. character to uppercase.
  12. (acc_options): Don't require a comma separator.
  13. Tue Dec 9 13:25:42 1997 Michael Meissner <meissner@cygnus.com>
  14. * size.c (size_number): New function to provide size of field.
  15. ({l,r}print_number): For octal and hex fields, print field using
  16. '0' and '0x' suffixes. Do not include following tab.
  17. (sysv_internal_sizer): Size section name, section size, and vma
  18. address fields.
  19. (sysv_internal_printer): Use calculated sizes for the columns.
  20. (print_sysv_format): Size columns before printing.
  21. (print_berkeley_format): Print tabs between numbers now that
  22. {l,r}print_number doesn't. Print fields right justified.
  23. Mon Dec 8 11:22:04 1997 Nick Clifton <nickc@cygnus.com>
  24. * objdump.c (objdump_print_addr_with_sym): Remove call to
  25. disasm_symaddr() as this function no longer exists.
  26. Tue Dec 2 10:23:50 1997 Nick Clifton <nickc@cygnus.com>
  27. * objdump.c (objdump_print_addr_with_sym): Call disasm_symaddr()
  28. to allow backend to know which symbol has just been displayed.
  29. Tue Dec 2 13:06:46 1997 Ian Lance Taylor <ian@cygnus.com>
  30. * windres.h (ESCAPE_*): Define standard escape sequences.
  31. * rclex.l (handle_quotes): Handle standard escape sequences. Warn
  32. about an unrecognized escape character.
  33. * windres.c (unicode_print): Print standard escape sequences.
  34. * rcparse.y (acc_event): Initialize $$.next.
  35. * resbin.c (bin_to_res_menuitems): Don't set MENUITEM_POPUP or
  36. MENUITEM_ENDMENU in the menu item flags.
  37. (bin_to_res_accelerators): Allocate a structure (the old code
  38. never worked).
  39. (res_to_bin_accelerator): Correct the test for setting ACC_LAST.
  40. (res_to_bin_dialog): Save the extended style rather than saving
  41. the style twice. Remove useless shadowing length variable. Set
  42. the length of control data correctly.
  43. * resrc.c (write_rc_dialog): Don't print the class or menu if the
  44. string length is zero.
  45. Mon Nov 24 18:52:43 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  46. * stabs.c (parse_stab_argtypes): Don't try to parse the name of a
  47. destructor as mangled argument types.
  48. Mon Nov 10 17:51:41 1997 Gavin Koch <gavin@cygnus.com>
  49. * addr2line.c (translate_addresses): Use bfd_scan_vma rather
  50. than strtol to scan addresses.
  51. Sun Nov 9 11:01:31 1997 Jeffrey A Law (law@cygnus.com)
  52. * Makefile.am (bin_PROGRAMS): Don't use line continuations here.
  53. Tue Nov 4 11:56:14 1997 Ian Lance Taylor <ian@cygnus.com>
  54. * objcopy.c (copy_section): Don't crash if there is no particular
  55. information for a section.
  56. Mon Nov 3 12:36:19 1997 Ian Lance Taylor <ian@cygnus.com>
  57. * objcopy.c (parse_flags): Make flag check case insensitive.
  58. Check for `contents' flag. Give an error for unrecognized flags.
  59. (copy_section): If the contents flag was set for a section that
  60. had no contents, zero out the new contents.
  61. * binutils.texi (objcopy): Document contents section flag.
  62. Sun Nov 2 14:49:56 1997 Ian Lance Taylor <ian@cygnus.com>
  63. * objcopy.c: Move new struct and variable definitions to top of
  64. file. Remove obsolete add_strip_symbol and is_strip_symbol
  65. declarations. Add prototype declarations for add_specific_symbol
  66. and is_specified_symbol.
  67. Mon Oct 20 15:31:43 1997 Klaus K"ampf <kkaempf@progis.de>
  68. * configure.com (HAVE_SBRK): Undefine.
  69. Tue Oct 14 16:14:35 1997 Nick Clifton <nickc@cygnus.com>
  70. * objdump.c (objdump_symbol_at_address): New function. Returns
  71. true if a symbol can be found at the address passed in.
  72. (disassemble_data): Set the symbol_at_address_func field to point
  73. to objdump_symbol_at_address.
  74. Fri Oct 10 14:13:09 1997 Richard Henderson <rth@cygnus.com>
  75. * objcopy.c, objcopy.1, binutils.texi: "localize" is a better name
  76. than "privatize". Update all references.
  77. Thu Oct 9 15:57:29 1997 Ian Lance Taylor <ian@cygnus.com>
  78. * binutils.texi (strip): Remove duplicate --target. From Marty
  79. Leisner <leisner@sdsp.mc.xerox.com>.
  80. * nm.c (lineno_cache_bfd): New file static variable.
  81. (lineno_cache_rel_bfd): New file static variable.
  82. (display_archive): Clear lineno_cache_bfd and lineno_cache_rel_bfd
  83. when closing a BFD.
  84. (display_file): Likewise.
  85. (print_symbol): Use lineno_cache_bfd and lineno_cache_rel_bfd
  86. instead of cache_bfd and cache_rel_bfd. Make seccount static, and
  87. only set it when setting relocs.
  88. Wed Oct 8 21:19:11 1997 Richard Henderson <rth@cygnus.com>
  89. * objcopy.c (keep_specific_list, privatize_specific_list,
  90. weaken_specific_list): New variables.
  91. (keep_symbols): Removed.
  92. (add_specific_symbol): New function from the carcas of
  93. add_strip_symbol. Takes a list as an argument.
  94. (is_specified_symbol): Likewise from is_strip_symbol.
  95. (filter_symbols): Honor the new privatize and weaken lists.
  96. Optimize bfd_asymbol_name handling.
  97. (copy_object, copy_options, copy_usage): Add privatize-symbol &
  98. weaken-symbol options.
  99. * objcopy.1, binutils.texi: Update docs.
  100. Sun Oct 5 09:05:44 1997 Frank Ch. Eigler <fche@cygnus.com>
  101. * objdump.c (disassemble_data): Make "--prefix-addresses"
  102. disassembly adjust to mixed-length instructions.
  103. (objdump_print_addr_with_sym): Add "0x" prefix for hexadecimal
  104. symbol-offsets in disassembly.
  105. Fri Oct 3 12:04:25 1997 Ian Lance Taylor <ian@cygnus.com>
  106. * objcopy.c (set_times): New static function, replacing
  107. make_same_dates.
  108. (strip_main): If preserve_dates, stat the input file before
  109. copying it, and call set_times afterward.
  110. (copy_main): Likewise.
  111. * wrstabs.c (write_stabs_in_sections_debugging_info): Cast p to
  112. char * when calling strcpy and strlen.
  113. Wed Sep 24 11:34:05 1997 Ian Lance Taylor <ian@cygnus.com>
  114. * binutils.texi (ar cmdline): Document that q now works like r.
  115. From Marty Leisner <leisner@sdsp.mc.xerox.com>.
  116. * binutils.texi (size): The object file argument is optional.
  117. From Marty Leisner <leisner@sdsp.mc.xerox.com>.
  118. * aclocal.m4: Rebuild with new libtool.
  119. * configure: Rebuild.
  120. Tue Aug 26 17:48:34 1997 Ian Lance Taylor <ian@cygnus.com>
  121. * Makefile.am (EXEEXT_FOR_BUILD): New variable. Use it in all
  122. references to the sysinfo program.
  123. * configure.in: Rebuild with new bfd/acinclude.m4.
  124. * Makefile.in: Rebuild.
  125. Fri Aug 8 15:32:49 1997 Ian Lance Taylor <ian@cygnus.com>
  126. * windres.c: Include <time.h>.
  127. (define_resource): Set a timestamp for the resource.
  128. Wed Aug 6 13:37:58 1997 Ian Lance Taylor <ian@cygnus.com>
  129. * configure.in: Define TARGET in header file.
  130. * acconfig.h (TARGET): Add #undef.
  131. * Makefile.am (version.o, bucomm.o): Remove special targets.
  132. * bucomm.c (target): Remove.
  133. * nm.c (program_name): Don't declare.
  134. (target): Make static.
  135. * size.c (target): Make static.
  136. * configure, config.in, Makefile.in: Rebuild.
  137. Tue Aug 5 00:01:41 1997 Ian Lance Taylor <ian@cygnus.com>
  138. * Makefile.am (check-DEJAGNU): Export r.
  139. (.dep1): Use $(INCLUDES) rather than $(ALL_CFLAGS).
  140. * Makefile.in: Rebuild.
  141. * nlmheader.y: Use VERSIONK rather than VERSION.
  142. * Makefile.am (STRIP_PROG): Change from strip.new to strip-new.
  143. (NM_PROG): Change from nm.new to nm-new.
  144. (TOOL_PROGS, install-exec-local): Adjust accordingly.
  145. * Makefile.in: Rebuild.
  146. Mon Aug 4 11:47:31 1997 Ian Lance Taylor <ian@cygnus.com>
  147. * configure.in: Remove AC_ARG_PROGRAM; it's invoked by
  148. AM_INIT_AUTOMAKE.
  149. * configure: Rebuild.
  150. * Makefile.am (install-exec-local): Create $(tooldir)/bin before
  151. trying to install anything into it.
  152. * Makefile.in: Rebuild.
  153. * Makefile.am (TOOL_PROGS): Use an explicit $(EXEEXT).
  154. (install-exec-local): When handling $(noinst_PROGRAMS), only use
  155. $(EXEEXT) on the installed file. When handling $(TOOL_PROGS),
  156. handle $(EXEEXT) correctly.
  157. * configure.in: Add an explicit $(EXEEXT) when substituting for
  158. the name of a program to build.
  159. * Makefile.in, configure: Rebuild.
  160. * aclocal.m4, configure, Makefile.in: Rebuild with new automake
  161. patches.
  162. * deflex.l, defparse.y: Use VERSIONK rather than VERSION.
  163. * rclex.l, rcparse.y: Likewise.
  164. * Makefile.am (windres_SOURCES): Add $(BULIBS).
  165. * Makefile.in: Rebuild.
  166. Fri Aug 1 13:08:39 1997 Ian Lance Taylor <ian@cygnus.com>
  167. * acinclude.m4: Include bfd/acinclude.m4, not bfd/acmacros.m4.
  168. * aclocal.m4, configure: Rebuild with new libtool.
  169. Thu Jul 31 11:51:35 1997 Ian Lance Taylor <ian@cygnus.com>
  170. * Makefile.am: New file, based on old Makefile.in.
  171. * acinclude.m4: New file, from old aclocal.m4.
  172. * configure.in: Call AM_INIT_AUTOMAKE and AM_PROG_LIBTOOL. Remove
  173. shared library handling; now handled by libtool. Replace
  174. AC_CONFIG_HEADER with AM_CONFIG_HEADER. Call AC_PROG_YACC,
  175. AC_PROG_LEX, AC_DECL_YYTEST, AM_MAINTAINER_MODE, AM_CYGWIN32, and
  176. AM_EXEEXT. Replace AC_PROG_INSTALL with AM_PROG_INSTALL. Remove
  177. stamp-h handling in AC_OUTPUT.
  178. * acconfig.h: Mention PACKAGE and VERSION.
  179. * stamp-h.in: New file.
  180. * Makefile.in: Now built with automake.
  181. * aclocal.m4: Now built with aclocal.
  182. * config.in, configure: Rebuild.
  183. From Ton van Overbeek <tvoverbe@wk.estec.esa.nl>:
  184. * rcparse.y (dialog): Default menu and class to be named.
  185. (styles): If FONT is seen, set DS_SETFONT in dialog style.
  186. * resbin.c (res_to_bin_dialog): Correct computation of font
  187. information length.
  188. Wed Jul 30 11:21:06 1997 Ian Lance Taylor <ian@cygnus.com>
  189. From Ton van Overbeek <tvoverbe@wk.estec.esa.nl>:
  190. * resbin.c (res_to_bin_menu): Correct computation of menu
  191. vs. menuex length.
  192. * resrc.c (define_stringtable): Add 1 to resource ID.
  193. Tue Jul 29 11:06:03 1997 Ian Lance Taylor <ian@cygnus.com>
  194. * resbin.c (bin_to_res_string): Correct adjustment of data and
  195. length. From Ton van Overbeek <tvoverbe@wk.estec.esa.nl>.
  196. Tue Jul 22 18:01:23 1997 Ian Lance Taylor <ian@cygnus.com>
  197. * nlmconv.c (link_inputs): Call libiberty pexecute function.
  198. (pexecute) [multiple versions]: Remove.
  199. Tue Jul 22 16:19:34 1997 Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
  200. * bucomm.c (make_tempname): If we might be using a DOS filesystem,
  201. check for a backslash as well as a slash.
  202. Thu Jun 26 13:53:17 1997 Ian Lance Taylor <ian@cygnus.com>
  203. * windres.c (main): Quit if we didn't get any resources.
  204. (usage): Fix --yydebug usage message.
  205. * rescoff.c (write_coff_file): Don't free the relocation array
  206. until after we've closed the BFD.
  207. (read_coff_rsrc): Quit rather than try to read standard input.
  208. (write_coff_file): Quit rather than try to write to standard
  209. output.
  210. * rcparse.y: Add a couple of missing semicolons (accepted by bison
  211. but not byacc).
  212. * binutils.texi: Document windres.
  213. Wed Jun 25 20:57:06 1997 Ian Lance Taylor <ian@cygnus.com>
  214. * resbin.c: New file.
  215. * rclex.l, rcparse.y, rescoff.c, resrc.c, windres.c, windres.h:
  216. Numerous fixes and improvements.
  217. * Makefile.in: Rebuild dependencies.
  218. (CFILES): Add resbin.c.
  219. (WINDRES_OBJS): Add resbin.o.
  220. Sun Jun 22 17:29:41 1997 Ian Lance Taylor <ian@cygnus.com>
  221. First stab at Windows resource compiler:
  222. * windres.h: New file.
  223. * windres.c: New file.
  224. * resrc.c: New file.
  225. * rcparse.y: New file.
  226. * rclex.l: New file.
  227. * rescoff.c: New file.
  228. * configure.in: Define and substitute BUILD_WINDRES.
  229. * configure: Rebuild.
  230. * Makefile.in: Rebuild dependencies.
  231. (WINDRES_PROG): New variable.
  232. (PROGS): Add @BUILD_WINDRES@.
  233. (HFILES): Add dlltool.h and windres.h.
  234. (CFILES): Add windres.c and resrc.c.
  235. (GENERATED_CFILES): Add rcparse.c and rclex.c.
  236. (WINDRES_OBJS): New variable.
  237. $(WINDRES_PROG): New target.
  238. (rcparse.c, rcparse.h, rclex.c): New targets.
  239. Thu Jun 12 12:27:51 1997 Ian Lance Taylor <ian@cygnus.com>
  240. * dlltool.c (export_type): Add data field.
  241. (def_exports): Add data parameter. Change all callers.
  242. (dump_def_info): Print data field.
  243. (gen_def_file): Likewise.
  244. (make_one_lib_file): Handle data field by not emitting simple
  245. label and not emitting anything in SEC_TEXT.
  246. (dtab): Print data field.
  247. (process_duplicates): Merge data field.
  248. * dlltool.h (def_exports): Update declaration.
  249. * defparse.y (expline): Accept opt_DATA. Pass it to def_exports.
  250. (opt_DATA): New non-terminal.
  251. Wed Jun 11 17:15:47 1997 Ian Lance Taylor <ian@cygnus.com>
  252. * dlltool.h: New file.
  253. * deflex.l: Include dlltool.h and libiberty.h. Don't declare
  254. strdup. Use xstrdup rather than strdup.
  255. * defparse.y: Include bfd.h, bucomm.h, and dlltool.h.
  256. * dlltool.c: Include dlltool.h and time.h. Make a lot of
  257. variables and functions static. Make a lot of char * variables
  258. and parameters const. Add declarations for static functions. Do
  259. some reindenting. Hide more PowerPC stuff inside DLLTOOL_PPC.
  260. Wed Jun 11 12:05:52 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
  261. * ar.c (bfd_special_undocumented_glue): Add const.
  262. Mon May 12 22:09:35 1997 Bob Manson <manson@charmed.cygnus.com>
  263. * Makefile.in (check): Pass CC_FOR_TARGET and CFLAGS_FOR_TARGET
  264. to runtest.
  265. Mon May 12 13:14:22 1997 Ian Lance Taylor <ian@cygnus.com>
  266. * configure.in: Don't clear OPCODES when --enable-commonbfdlib is
  267. used on HP/UX.
  268. * configure: Rebuild.
  269. Fri Apr 25 14:22:08 1997 H.J. Lu <hjl@gnu.ai.mit.edu>
  270. * Makefile.in (maintainer-clean realclean): Change *.info*
  271. to binutils.info* to save sysroff.info.
  272. Tue Apr 15 13:42:22 1997 Ian Lance Taylor <ian@cygnus.com>
  273. * Makefile.in (INSTALL): Set to @INSTALL@.
  274. (INSTALL_XFORM, INSTALL_XFORM1): Remove.
  275. (install): Depend upon installdirs. Use $(program_transform_name)
  276. directly, rather than using $(INSTALL_XFORM) and
  277. $(INSTALL_XFORM1).
  278. (installdirs): New target.
  279. (install-info): Run mkinstalldirs.
  280. Mon Apr 14 11:52:39 1997 Ian Lance Taylor <ian@cygnus.com>
  281. * Makefile.in (INSTALL): Change install.sh to install-sh.
  282. From Thomas Graichen <graichen@rzpd.de>:
  283. * Makefile.in: Always use $(SHELL) when running move-if-change.
  284. * configure.in: Use ${CONFIG_SHELL} when running $ac_config_sub.
  285. * configure: Rebuild.
  286. Fri Apr 4 13:28:02 1997 Ian Lance Taylor <ian@cygnus.com>
  287. * configure.in: Add AC_FUNC_ALLOCA.
  288. * configure, config.in: Rebuild.
  289. * bucomm.h: Add alloca handling, copied from gas/as.h.
  290. * dlltool.c: Add #pragma alloca for AIX to start of file.
  291. * nlmconv.c: Likewise.
  292. * Makefile.in (distclean): Remove site.exp and site.bak. Remove
  293. everything that clean removes.
  294. Thu Apr 3 13:18:39 1997 Ian Lance Taylor <ian@cygnus.com>
  295. * Makefile.in (VERSION): Set to 2.8.1.
  296. * Branched binutils 2.8.
  297. Tue Apr 1 16:21:44 1997 Klaus Kaempf <kkaempf@progis.de>
  298. * configure.com: New file.
  299. * config.h-vms: Remove file.
  300. * makefile.vms: Update for new configure scheme.
  301. Mon Mar 31 15:30:43 1997 Philippe De Muyter <phdm@info.ucl.ac.be>
  302. * objcopy.c (make_same_dates): Use statbuf, not buf, if not
  303. HAVE_GOOD_UTIME_H.
  304. Fri Mar 28 17:57:53 1997 Alan Modra <alan@spri.levels.unisa.edu.au>
  305. * Makefile.in ($(OBJDUMP_PROG)): Don't link against BFDLIB twice.
  306. * configure.in: Add AC_ARG_ENABLE for commonbfdlib. If it is set,
  307. set OPCODES to empty.
  308. * configure: Rebuild.
  309. Thu Mar 27 16:03:02 1997 Ian Lance Taylor <ian@cygnus.com>
  310. Based on patch from Marty Leisner <leisner@sdsp.mc.xerox.com>:
  311. * objcopy.c: Include <utime.h> or <sys/time.h>.
  312. (strip_options): Add "preserve-dates".
  313. (copy_options): Likewise.
  314. (copy_usage): Mention -p and --preserve-dates.
  315. (strip_usage): Likewise.
  316. (make_same_dates): New static function.
  317. (strip_main): Handle -p.
  318. (copy_main): Likewise.
  319. * binutils.texi, strip.1, objcopy.1: Document new option.
  320. addr2line.c contributed by Ulrich Lauther
  321. <Ulrich.Lauther@zfe.siemens.de>:
  322. * addr2line.c: New file.
  323. * Makefile.in: Rebuild dependencies.
  324. (ADDR2LINE_PROG): New variable.
  325. (MANPAGES): Add addr2line.
  326. (PROGS): Add $(ADDR2LINE_PROG).
  327. (CFILES): Add addr2line.c.
  328. ($(ADDR2LINE_PROG)): New target.
  329. * binutils.texi: Document addr2line.
  330. * addr2line.1: New file.
  331. * version.c (print_version): Update copyright date.
  332. Mon Mar 24 10:52:45 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  333. * objdump.c (disassemble_data): Don't exit if a file cannot be
  334. disassembled, instead just return.
  335. Thu Mar 20 21:16:51 1997 Jeffrey A Law (law@cygnus.com)
  336. * size.c (usage): Make definition match its prototype.
  337. (display_bfd, lprint_number, rprint_number): Likewise.
  338. (print_berkeley_format, sysv_internal_printer): Likewise.
  339. (print_sysv_format): Likewise.
  340. * nm.c (set_print_radix, set_output_format): Likewise.
  341. * objcopy.c (filter_bytes): Likewise.
  342. Tue Mar 18 16:39:55 1997 H.J. Lu <hjl@lucon.org>
  343. * Many files: Add function prototypes.
  344. * ar.c (mri_emul, get_pos_bfd): Make static.
  345. * arlex.l: Include "libiberty.h". Don't declare strdup. Use
  346. xstrdup rather than strdup.
  347. * arparse.y (yyerror): Make argument const. Correct typo.
  348. * arsup.c (strdup): Don't declare.
  349. (ar_save): Use xstrdup rather than strdup.
  350. * filemode.c: Include "bucomm.h".
  351. * nm.c (usage): Make static.
  352. (print_symname): Make format and name const.
  353. * objcopy.c (cat): Remove.
  354. (copy_archive): Make output_target const. Use concat, not cat.
  355. (copy_file, simple_copy, smart_rename): Make arguments const.
  356. * objdump.c (read_section_stabs): Likewise.
  357. (print_section_stabs): Likewise.
  358. (display_target_tables): Don't declare getenv.
  359. * strings.c (strings_object_file): Change file to const.
  360. (print_strings): Change filename to const.
  361. * Makefile.in: Rebuild dependencies.
  362. Tue Mar 18 11:37:24 1997 Ian Lance Taylor <ian@cygnus.com>
  363. * configure.in: Add BFD_NEED_DECLARATION(getenv).
  364. * acconfig.h: Add NEED_DECLARATION_GETENV.
  365. * bucomm.h (getenv): Declare if NEED_DECLARATION_GETENV.
  366. * configure, config.in: Rebuild.
  367. * nlmconv.c (getenv): Don't declare.
  368. * Makefile.in: Rebuild dependencies.
  369. Sat Mar 15 15:35:56 1997 Ian Lance Taylor <ian@cygnus.com>
  370. Based on patches from Jamie Lokier <jamie@rebellion.co.uk>:
  371. * objdump.c: Include "demangle.h".
  372. (do_demangle): New static variable.
  373. (usage): Mention -C/--demangle.
  374. (long_options): Add "demangle".
  375. (objdump_print_symname): New static function.
  376. (objdump_print_addr_with_sym): Use objdump_print_symname.
  377. (disassemble_bytes): Likewise.
  378. (dump_reloc_set): Likewise.
  379. (dump_symbols): Demangle symbol name.
  380. (main): Handle -C.
  381. * binutils.texi, objdump.1: Document -C/--demangle.
  382. * objdump.c (usage): Mention --no-show-raw-insn.
  383. (long_options): Add "no-show-raw-insn".
  384. (disassemble_bytes): Handle --no-show-raw-insn.
  385. * binutils.texi, objdump.1: Document --no-show-raw-insn.
  386. Wed Mar 12 11:42:00 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  387. * rddbg.c (free_saved_stabs): Set the strings to NULL after being
  388. freed.
  389. Fri Feb 28 17:18:45 1997 Ian Lance Taylor <ian@cygnus.com>
  390. * bucomm.c (set_default_bfd_target): New function.
  391. * bucomm.h (set_default_bfd_target): Declare.
  392. * ar.c (main): Call set_default_bfd_target.
  393. * nlmconv.c (main): Likewise.
  394. * nm.c (main): Likewise.
  395. * objcopy.c (main): Likewise.
  396. * objdump.c (main): Likewise.
  397. * size.c (main): Likewise.
  398. * strings.c (main): Likewise.
  399. * Makefile.in (bucomm.o): New target, to define TARGET.
  400. Tue Feb 25 21:28:38 1997 Ian Lance Taylor <ian@cygnus.com>
  401. * objdump.c (adjust_section_vma): New static variable.
  402. (usage): Mention --adjust-section-vma.
  403. (OPTION_ADJUST_VMA): Define.
  404. (long_options): Add "addjust-vma".
  405. (display_bfd): If adjust_section_vma is not 0, add it to all the
  406. section addresses.
  407. (main): Handle OPTION_ADJUST_VMA.
  408. * binutils.texi, objdump.1: Document --adjust-vma.
  409. Fri Feb 14 18:46:47 1997 Ian Lance Taylor <ian@cygnus.com>
  410. * nm.c (print_symbol): Cache the BFD as well as the symbols and
  411. relocs, and don't try to use the symbols or relocs with a
  412. different BFD.
  413. Thu Feb 13 21:34:43 1997 Klaus Kaempf (kkaempf@progis.de)
  414. * config.h-vms: sbrk() is provided on openVMS/Alpha.
  415. * makefile.vms: allow compiling with current gcc snapshot.
  416. Thu Feb 13 20:14:40 1997 Ian Lance Taylor <ian@cygnus.com>
  417. * arsup.c, coffgrok.c, dlltool.c, nlmconv.c: Use xmalloc rather
  418. than malloc.
  419. Wed Feb 12 16:12:02 1997 Ian Lance Taylor <ian@cygnus.com>
  420. * objdump.c (disassemble_data): Correct VMA argument to
  421. find_symbol_for_address. Improve handling of code with no symbol
  422. followed by code with a symbol.
  423. Wed Feb 12 12:16:47 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  424. * objdump.c (disassemble_bytes): Make output of raw instructions
  425. work better for non-standard values of bytes_per_chunk and
  426. bytes_per_line.
  427. Thu Feb 6 14:14:59 1997 Martin M. Hunt <hunt@pizza.cygnus.com>
  428. * objdump.c (disassemble_bytes): Added code to allow some control
  429. over the way raw instructions are displayed.
  430. Thu Feb 6 12:36:03 1997 Ian Lance Taylor <ian@cygnus.com>
  431. * stabs.c (struct bincl_file): Add next_stack field.
  432. (push_bincl): Put the new file on both bincl_list and
  433. bincl_stack. Clear the file_types field.
  434. (pop_bincl): Use the next_stack field when popping the stack.
  435. Don't put the file on bincl_list.
  436. (find_excl): Include the file name when warning about an unfound
  437. N_EXCL.
  438. * debug.c (debug_type_samep): Don't crash if we are passed NULL.
  439. Thu Feb 6 11:54:24 1997 Alan Modra <alan@spri.levels.unisa.edu.au>
  440. * objcopy.1: Add missing space after .B.
  441. Fri Jan 31 10:33:07 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  442. * objdump.c (disassemble_data): Initialize `aux.require_sec'.
  443. Wed Jan 29 13:21:21 1997 Ian Lance Taylor <ian@cygnus.com>
  444. * objdump.c (objdump_print_value): Add skip_zeroes parameter.
  445. Change all callers.
  446. (objdump_print_addr_with_sym): Likewise. Call objdump_print_value
  447. to print address.
  448. (objdump_print_addr): New static function.
  449. (objdump_print_address): Just call objdump_print_addr.
  450. (disassemble_bytes): Print real address, not function offset.
  451. Skip a certain number of leading zeroes.
  452. * objdump.c (disassemble_zeroes): New static variable.
  453. (usage): Mention --disassemble-zeroes.
  454. (long_options): Add "disassemble-zeroes".
  455. (disassemble_bytes): Check disassemble_zeroes.
  456. Tue Jan 28 16:47:26 1997 Ian Lance Taylor <ian@cygnus.com>
  457. * objdump.c (disassemble_bytes): Don't skip zeroes if the
  458. disassembler has told us that we are in a branch delay slot.
  459. Mon Jan 20 14:24:04 1997 Ian Lance Taylor <ian@cygnus.com>
  460. * size.c (berkeley_sum): Rewrite. Skip sections which are not
  461. SEC_ALLOC. Count SEC_READONLY sections as text.
  462. Tue Jan 14 15:14:14 1997 Ian Lance Taylor <ian@cygnus.com>
  463. * Makefile.in (maintainer-clean realclean): Remove *.info*, not
  464. just *.info. From H.J. Lu <hjl@lucon.org>.
  465. Tue Dec 31 15:42:54 1996 Ian Lance Taylor <ian@cygnus.com>
  466. * Makefile.in (ALL_CFLAGS): Add -D_GNU_SOURCE.
  467. Fri Dec 27 11:19:26 1996 Ian Lance Taylor <ian@cygnus.com>
  468. * configure.in: Work around bug in AC_FUNC_VFORK in autoconf 2.12.
  469. * configure: Rebuild.
  470. Thu Dec 19 13:11:20 1996 Ian Lance Taylor <ian@cygnus.com>
  471. Based on patch from Andrew J Klossner <andrew@pogo.wv.tek.com>:
  472. * objcopy.c (OPTION_WEAKEN): Define.
  473. (copy_options): Add "weaken".
  474. (copy_usage): Mention --weaken.
  475. (weaken): New static variable.
  476. (filter_symbols): Handle weaken.
  477. (copy_object): Call filter_symbols if weaken.
  478. (copy_main): Handle OPTION_WEAKEN.
  479. * binutils.texi, objcopy.1: Document --weaken.
  480. Wed Dec 18 22:49:13 1996 Stan Shebs <shebs@andros.cygnus.com>
  481. * mpw-make.sed: Use NewFolderRecursive for installation.
  482. Sat Dec 7 10:17:25 1996 Jeffrey A Law (law@cygnus.com)
  483. * Makefile.in (install): Add "else true" clause to cater to
  484. broken "make" on some systems.
  485. Fri Dec 6 17:21:41 1996 Ian Lance Taylor <ian@cygnus.com>
  486. * ieee.c (parse_ieee_bb): Always initialize namcopy to avoid gcc
  487. warning about uninitialized variable.
  488. (ieee_read_cxx_class): Likewise, for pf.
  489. (ieee_enum_type): Likewise, for i.
  490. Tue Nov 26 17:01:25 1996 Ian Lance Taylor <ian@cygnus.com>
  491. * wrstabs.c (stab_array_type): Add casts when printing
  492. bfd_signed_vma values.
  493. * configure: Rebuild with autoconf 2.12.
  494. Mon Nov 25 16:53:18 1996 Ian Lance Taylor <ian@cygnus.com>
  495. * objdump.c (disassemble_data): Don't crash if there is no
  496. symbol.
  497. Fri Nov 22 17:29:14 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  498. * ar.c (open_inarch): Don't call bfd_openr with a null name.
  499. Fri Nov 1 12:08:13 1996 Ian Lance Taylor <ian@cygnus.com>
  500. * binutils.texi: Add section on reporting bugs.
  501. Thu Oct 31 18:20:53 1996 Ian Lance Taylor <ian@cygnus.com>
  502. * stabs.c (struct stab_handle): Add bincl_list field.
  503. (parse_stab): Pass value to push_bincl. Call find_excl for
  504. N_EXCL.
  505. (struct bincl_file): Add hash, file and file_types fields.
  506. (push_bincl): Add hash parameter. Save it in the new hash field.
  507. Save the file number in the new file field.
  508. (pop_bincl): Put the bincl_file on bincl_list, rather than freeing
  509. it. Save the file types in the new file_types field.
  510. (find_excl): New static function.
  511. * ieee.c (ieee_lineno): Don't compare line number addresses to
  512. info->highaddr (undo part of October 28 patch).
  513. Tue Oct 29 16:40:22 1996 Ian Lance Taylor <ian@cygnus.com>
  514. * objdump.c (objdump_print_value): Don't print the empty string
  515. for zero.
  516. Mon Oct 28 16:58:14 1996 Ian Lance Taylor <ian@cygnus.com>
  517. * stabs.c (struct stab_handle): Add function_end field.
  518. (start_stab): Initialize function_end.
  519. (finish_stab): Pass info->function_end to debug_end_function.
  520. (parse_stab): If info->function_end is set, use it as the address
  521. which ends a function.
  522. * ieee.c (ieee_array_type): Remember the correct size.
  523. * ieee.c (ieee_finish_compilation_unit): Permit coalescing ranges
  524. that are up to 0x1000 bytes apart, not just 64.
  525. (ieee_add_bb11_blocks): Don't bother to emit a BB11 that is less
  526. than 0x100 bytes.
  527. (ieee_lineno): Only emit line numbers that are less than
  528. info->highaddr.
  529. Fri Oct 25 12:12:17 1996 Ian Lance Taylor <ian@cygnus.com>
  530. * ieee.c (struct ieee_defined_enum): Add defined field.
  531. (ieee_enum_type): If the enum tag has been seen before but not
  532. defined, reuse the same type index, and define it.
  533. (ieee_tag_type): If this enum has not been defined, add an
  534. undefined entry to the list of enums.
  535. * objdump.c (disassemble_bytes): Let the disassembler override the
  536. number of bytes printed on a line.
  537. Thu Oct 24 16:42:10 1996 Ian Lance Taylor <ian@cygnus.com>
  538. * objdump.c (prefix_addresses): New static variable.
  539. (long_options): Add "prefix-addresses".
  540. (compare_symbols): Sort BSF_FUNCTION symbols before other
  541. symbols.
  542. (find_symbol_for_address): New static function, broken out of
  543. objdump_print_address.
  544. (objdump_print_addr_with_sym): New static function, broken out of
  545. objdump_print_address.
  546. (objdump_print_address): Call new functions.
  547. (disassemble_bytes): New static function, broken out of
  548. disassemble_data. Change disassembly format, unless
  549. prefix_addresses is set.
  550. (disassemble_data): Call disassemble_bytes. Unless
  551. prefix_addresses is set, disassemble in chunks headed by a
  552. symbol.
  553. * binutils.texi, objdump.1: Document --prefix-addresses.
  554. * rddbg.c (read_section_stabs_debugging_info): Preserve the
  555. backslash when concatenating multiple stabs strings.
  556. Thu Oct 10 11:36:31 1996 Doug Evans <dje@canuck.cygnus.com>
  557. * dlltool.c (scan_open_obj_file): Fix loop exit test.
  558. Add missing parameter to def_exports.
  559. Tue Oct 8 12:06:17 1996 Ian Lance Taylor <ian@cygnus.com>
  560. * Makefile.in (LEX_OPTIONS): Set to empty string. -I -Cem is the
  561. default for flex, and is not recognized by lex.
  562. Thu Oct 3 17:41:23 1996 Ian Lance Taylor <ian@cygnus.com>
  563. * binutils.texi (Target Selection): Document that you can now
  564. specify targets using configuration triplets.
  565. * ar.c (usage): Declare. Make sure all callers pass an argument.
  566. Thu Oct 3 15:39:42 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
  567. * Makefile.in (clean): Remove config.log.
  568. Wed Oct 2 15:49:16 1996 Klaus Kaempf <kkaempf@progis.de>
  569. * makefile.vms: Bump version date.
  570. Tue Oct 1 15:00:59 1996 Ian Lance Taylor <ian@cygnus.com>
  571. * version.c (print_version): New function.
  572. * bucomm.h (print_version): Declare.
  573. * ar.c (program_version): Don't declare.
  574. (do_show_version): Remove.
  575. (usage): Add help parameter. Print bug report address.
  576. (main): Set is_ranlib at start. Check for --help and --version.
  577. Call print_version, not do_show_version.
  578. * nlmconv.c (program_version): Don't declare.
  579. (main): Call print_version.
  580. (show_usage): Print bug report address.
  581. * nm.c (program_version, print_version): Don't declare.
  582. (usage): Print bug report address.
  583. (main): Call print_version.
  584. * objcopy.c (program_version): Don't declare.
  585. (copy_usage): Print bug report address.
  586. (strip_usage): Likewise.
  587. (strip_main): Call print_version.
  588. (copy_main): Likewise.
  589. * objdump.c (program_version): Don't declare.
  590. (usage): Print bug report address.
  591. (main): Call print_version.
  592. * size.c (program_version): Don't declare.
  593. (usage): Print bug report address.
  594. (main): Call print_version.
  595. * strings.c (program_version): Don't declare.
  596. (main): Call print_version.
  597. (usage): Print bug report address.
  598. * Makefile.in: Update dependencies.
  599. Thu Sep 19 14:53:15 1996 Ian Lance Taylor <ian@cygnus.com>
  600. * ieee.c: Revert Monday's reflocalp patch, and apply this patch
  601. instead:
  602. (write_ieee_debugging_info): Write a dummy type at the end of the
  603. global type block.
  604. Mon Sep 16 15:30:54 1996 Ian Lance Taylor <ian@cygnus.com>
  605. * ieee.c (struct ieee_write_type): Add reflocalp field.
  606. (ieee_pointer_type): Set reflocalp after pushing type.
  607. (ieee_function_type): If reflocalp is set, make this type local.
  608. (ieee_range_type, ieee_array_type, ieee_set_type): Likewise.
  609. (ieee_const_type, ieee_volatile_type): Likewise.
  610. (ieee_struct_field, ieee_class_baseclass): Likewise.
  611. * ieee.c (struct ieee_info): Add global_types field.
  612. (parse_ieee_bb): When starting a BB1, initialize the types field
  613. to the global_types field.
  614. (parse_ieee_be): When ending a BB2, copy the types field to the
  615. global_types field.
  616. Fri Sep 13 17:32:21 1996 Ian Lance Taylor <ian@cygnus.com>
  617. * objcopy.c (change_leading_char): New static variable.
  618. (OPTION_CHANGE_LEADING_CHAR): Define.
  619. (copy_options): Add "change-leading-char".
  620. (copy_usage): Mention --change-leading-char.
  621. (filter_symbols): Add obfd parameter. Change all callers.
  622. Implement change_leading_char.
  623. (copy_object): Call filter_symbols if change_leading_char.
  624. (copy_main): Handle OPTION_CHANGE_LEADING_CHAR.
  625. * binutils.texi, objcopy.1: Document --change-leading-char.
  626. Tue Sep 3 14:05:29 1996 Ian Lance Taylor <ian@cygnus.com>
  627. * ieee.c (ieee_enum_type): Don't check index into a NULL names
  628. array.
  629. * nm.c (sort_symbols_by_size): Always initialize next.
  630. * rdcoff.c (parse_coff_type): Warn about an incomprehensible
  631. type rather than crashing.
  632. * rddbg.c (read_symbol_stabs_debugging_info): Initialize f.
  633. * stabs.c (parse_stab_members): Set context in all cases.
  634. Thu Aug 29 16:56:52 1996 Michael Meissner <meissner@tiktok.cygnus.com>
  635. * configure.in (i[345]86-*-*): Recognize i686 for pentium pro.
  636. * configure: Regenerate.
  637. Thu Aug 29 11:29:20 1996 Ian Lance Taylor <ian@cygnus.com>
  638. * objdump.c (L_tmpnam): Never define.
  639. (display_target_list): Use choose_temp_base instead of tmpnam.
  640. (display_info_table): Likewise.
  641. Tue Aug 27 18:15:01 1996 Ian Lance Taylor <ian@cygnus.com>
  642. * stabs.c (parse_stab): An N_FUN symbol with an empty string
  643. indicates the end of a function.
  644. Thu Aug 22 17:08:00 1996 Ian Lance Taylor <ian@cygnus.com>
  645. * wrstabs.c (struct string_hash_entry): Add next field.
  646. (struct stab_write_handle): Change strings to a pointer to
  647. string_hash_entry. Add last_strings field. Remove strings_alloc
  648. field.
  649. (string_hash_newfunc): Initialize next field.
  650. (stab_write_symbol): Copy string into hash table rather than into
  651. buffer. Keep a list of hash table entries.
  652. (write_stabs_in_sections_debugging_info): Initialize last_string.
  653. Copy strings from list of hash table entries in memory.
  654. (stab_modify_type): If the entry on the stack is a definition,
  655. make a new definition rather than failing an assert.
  656. (stab_array_type): The size is only zero if high is strictly less
  657. than low.
  658. * ieee.c (struct ieee_info): Add saw_filename field.
  659. (parse_ieee): Initialize saw_filename.
  660. (parse_ieee_bb): Set saw_filename for a BB1 or BB2. In a BB1,
  661. discard the current variables and types. In a BB10, if no
  662. filename has been seen, call debug_set_filename.
  663. (parse_ieee_ty): In case 'g', the type is optional.
  664. * prdbg.c (pr_fix_visibility): Don't abort on
  665. DEBUG_VISIBILITY_IGNORE.
  666. * debug.c (debug_name_type): Correct error message.
  667. * configure.in: Substitute HLDENV.
  668. * configure: Rebuild.
  669. * Makefile.in (HLDENV): New variable. Use it whenever linking a
  670. program.
  671. Thu Aug 15 19:30:41 1996 Stan Shebs <shebs@andros.cygnus.com>
  672. * mpw-make.sed: Add symbolic doublequotes around the version
  673. number.
  674. Thu Aug 8 12:27:52 1996 Klaus Kaempf <kkaempf@progis.de>
  675. * makefile.vms: Add better support for DEC C compilation.
  676. Add new macros as in Makefile.in.
  677. Wed Aug 7 14:27:33 1996 Philippe De Muyter <phdm@info.ucl.ac.be>
  678. * configure.in: Call BFD_NEED_DECLARATION on strstr and sbrk.
  679. * acconfig.h (NEED_DECLARATION_STRSTR): New macro.
  680. (NEED_DECLARATION_SBRK): New macro.
  681. * configure, config.in: Rebuild.
  682. * bucomm.h (strstr): Declare if NEED_DECLARATION_STRSTR.
  683. (sbrk): Declare if HAVE_SBRK and NEED_DECLARATION_SBRK.
  684. * prdbg.c (pr_end_struct_type): Avoid using a string constant in
  685. assert, for the benefit of broken assert macros.
  686. Fri Jul 26 14:06:50 1996 Ian Lance Taylor <ian@cygnus.com>
  687. * objdump.c (disassemble_data): Set disasm_info.flavour from
  688. abfd.
  689. Tue Jul 23 13:59:54 1996 Ian Lance Taylor <ian@cygnus.com>
  690. * dlltool.c (secdata): In non DLLTOOL_PPC case, change alignment
  691. of .text section to 2.
  692. Mon Jul 22 08:46:15 1996 Stu Grossman (grossman@lisa.cygnus.com)
  693. * objdump.c (dump_section_stabs): Fix test for stabs sections
  694. ending with numbers. This fixes a problem with .stab being
  695. confused with .stab.index.
  696. Wed Jul 10 13:32:28 1996 Ian Lance Taylor <ian@cygnus.com>
  697. * stabs.c (stab_demangle_fund_type): Return a void * for a
  698. template, rather than simply aborting.
  699. Mon Jul 8 15:28:05 1996 Ian Lance Taylor <ian@cygnus.com>
  700. * ar.c (open_inarch): Add file parameter. Change all callers. If
  701. this is a newly created archive, set the target based on the
  702. file.
  703. * arsup.h (open_inarch): Update declaration.
  704. Thu Jul 4 12:00:55 1996 Ian Lance Taylor <ian@cygnus.com>
  705. * Makefile.in (VERSION): Set to cygnus-2.7.1.
  706. * Released binutils 2.7.
  707. * rdcoff.c (parse_coff): Get address to pass to debug_end_function
  708. from function size, not value of .ef symbol. From Ning
  709. Mosberger-Tang <ning@AZStarNet.com>.
  710. Sat Jun 29 21:18:09 1996 Ian Lance Taylor <ian@cygnus.com>
  711. * objcopy.c (strip_main): Add -o option, and handle it.
  712. (strip_usage): Mention -o.
  713. * binutils.texi, strip.1: Mention -o.
  714. Mon Jun 24 17:19:02 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
  715. * Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
  716. INSTALL_PROGRAM, INSTALL_DATA): Use autoconf set values.
  717. (docdir): Removed.
  718. * configure.in (AC_PREREQ): Autoconf 2.5 or higher.
  719. Mon Jun 24 11:59:13 1996 Ian Lance Taylor <ian@cygnus.com>
  720. * objdump.c (endian): New static variable.
  721. (usage): Mention -EB/-EL/--endian.
  722. (long_options): Add "endian".
  723. (disassemble_data): If endianness was specified, replace
  724. abfd->xvec with a copy of itself with the given endianness.
  725. (main): Handle -EB/-EL/--endian.
  726. * binutils.texi, objdump.1: Mention -EB/-EL/--endian.
  727. * objdump.c: Make most variables and functions static.
  728. * configure.in: On alpha*-*-osf*, link against libbfd.a if not
  729. using shared libraries.
  730. * configure: Rebuild with autoconf 2.10.
  731. Sun Jun 23 14:47:36 1996 Kim Knuttila <krk@cygnus.com>
  732. * dlltool.c (secdata): Changed .rdata to .reldata so .reloc will work.
  733. (make_one_lib_file): Removed cruft. (#if 1)
  734. Wed Jun 19 14:46:38 1996 Ian Lance Taylor <ian@cygnus.com>
  735. * objdump.c (stabs): Change from struct internal_nlist * to
  736. bfd_byte *.
  737. (print_section_stabs): Fetch stabs information directly, rather
  738. than assuming that struct internal_nlist is the right size.
  739. * binutils.texi: Document change to binary format: file position
  740. based on load address, not section VMA.
  741. * bucomm.h: Define SEEK_SET, SEEK_CUR, and SEEK_END if they are
  742. not already defined.
  743. Tue Jun 18 18:25:00 1996 Ian Lance Taylor <ian@cygnus.com>
  744. * Makefile.in (DISTSTUFF): Add deflex.c.
  745. Tue Jun 18 15:03:44 1996 Klaus Kaempf <kkaempf@progis.de>
  746. * config.h-vms, makefile.vms: New files.
  747. Mon Jun 17 09:47:31 1996 Ian Lance Taylor <ian@cygnus.com>
  748. * dlltool.c (make_one_lib_file): Use BFD_RELOC_RVA rather than
  749. BFD_RELOC_32 in IDATA7.
  750. Wed Jun 12 11:52:06 1996 Ian Lance Taylor <ian@cygnus.com>
  751. * nm.c (struct get_relocs_info): Define.
  752. (line_numbers): New static variable.
  753. (long_options): Add "line-numbers".
  754. (usage): Mention -l and --line-numbers.
  755. (main): Handle -l.
  756. (print_symbol): Print line numbers if requested.
  757. (get_relocs): New static function.
  758. * binutils.texi, nm.1: Document -l/--line-numbers.
  759. Tue Jun 11 20:12:15 1996 Ian Lance Taylor <ian@cygnus.com>
  760. * objdump.c (dump_reloc_set): Add sec parameter. Change all
  761. callers. If with_line_numbers is set, display line numbers of
  762. relocation entries.
  763. * binutils.texi, objdump.1: Document -l with -r.
  764. Mon Jun 10 23:42:59 1996 Ian Lance Taylor <ian@cygnus.com>
  765. * ar.c (open_inarch): Report BFD error message if an archive can
  766. not be recognized. List matching formats if the file is
  767. ambiguously recognized.
  768. (ranlib_touch): Likewise.
  769. Thu Jun 6 13:56:14 1996 Ian Lance Taylor <ian@cygnus.com>
  770. * README: Add notes on how to build if you don't have ar.
  771. * Makefile.in: Remove old incorrect setting of CC.
  772. Tue Jun 4 10:52:49 1996 Tom Tromey <tromey@csk3.cygnus.com>
  773. * Makefile.in (install): Don't check to see if tooldir exists.
  774. Make $(tooldir) and $(tooldir)/bin.
  775. Mon Jun 3 17:40:23 1996 Michael Meissner <meissner@tiktok.cygnus.com>
  776. * strings.c (main): Make main an int function, not void.
  777. Fri May 31 13:59:24 1996 Ian Lance Taylor <ian@cygnus.com>
  778. * nm.c (filter_symbols): Check for BSF_WEAK as well as
  779. BSF_GLOBAL.
  780. * objcopy.c (filter_symbols): Likewise.
  781. Wed May 8 16:57:20 1996 Ian Lance Taylor <ian@cygnus.com>
  782. * objcopy.c (copy_object): Make clear that it is only a warning
  783. when the output file can not represent the architecture.
  784. Fri May 3 11:30:17 1996 Ian Lance Taylor <ian@cygnus.com>
  785. * objdump.c (disassemble_data): Don't refer to bytes past the end
  786. of data.
  787. Wed Apr 24 14:10:21 1996 Ian Lance Taylor <ian@cygnus.com>
  788. * rddbg.c (read_symbol_stabs_debugging_info): Move call to
  789. free_saved_stabs outside the loop over the symbols.
  790. Tue Apr 23 12:56:11 1996 Ian Lance Taylor <ian@cygnus.com>
  791. * objdump.c (compare_symbols): Sort symbols whose names start with
  792. `.' after other symbols. If no other decision can be made, sort
  793. symbols by name.
  794. Thu Apr 18 16:02:11 1996 Ian Lance Taylor <ian@cygnus.com>
  795. * dep-in.sed: Substitute $(BFDDIR) for @BFDDIR@.
  796. * Makefile.in: Rebuild dependencies.
  797. (dep.sed): Substitute $(BFDDIR) for @BFDDIR@.
  798. Tue Apr 16 13:50:22 1996 Ian Lance Taylor <ian@cygnus.com>
  799. * rdcoff.c: New file.
  800. * rddbg.c (read_debugging_info): Read COFF symbols if COFF flavour
  801. and no stabs were found.
  802. * budbg.h (parse_coff): Declare.
  803. * Makefile.in: Rebuild dependencies.
  804. (CFILES): Add rdcoff.c.
  805. (DEBUG_OBJS): Add rdcoff.o.
  806. Mon Apr 15 15:55:01 1996 Doug Evans <dje@canuck.cygnus.com>
  807. * nlmconv.c (choose_temp_base{,_try}): Delete, in libiberty now.
  808. (link_inputs): Update call to choose_temp_base.
  809. Mon Apr 8 14:40:05 1996 Ian Lance Taylor <ian@cygnus.com>
  810. * configure.in: Permit --enable-shared to specify a list of
  811. directories.
  812. * configure: Rebuild.
  813. Fri Mar 29 16:11:33 1996 Ian Lance Taylor <ian@cygnus.com>
  814. * objdump.c (dump_section_header): Print the SEC_LINK_ONCE flag
  815. and the SEC_LINK_DUPLICATES field.
  816. Fri Mar 29 11:35:55 1996 J.T. Conklin (jtc@lisa.cygnus.com)
  817. * nlmconv.1: Changed to be recognized by catman -w on Solaris.
  818. Thu Mar 28 14:17:02 1996 Ian Lance Taylor <ian@cygnus.com>
  819. * wrstabs.c (stab_enum_type): Set buf before using it.
  820. Fri Mar 22 15:49:08 1996 Ian Lance Taylor <ian@cygnus.com>
  821. * stabs.c (struct stab_handle): Add field abfd.
  822. (start_stab): Add abfd parameter.
  823. (parse_stab_string): Skip the symbol leading char when searching
  824. for the value of a global symbol.
  825. * budbg.h (start_stab): Update declaration.
  826. * rddbg.c (read_section_stabs_debugging_info): Pass abfd to
  827. start_stab.
  828. (read_symbol_stabs_debugging_info): Likewise.
  829. Thu Mar 21 12:40:48 1996 Ian Lance Taylor <ian@cygnus.com>
  830. * wrstabs.c (stab_function_type): Output an empty typedef for an
  831. unused argument, rather than making up a meaningless name.
  832. (stab_variable): Use N_RSYM for a DEBUG_REGISTER variable.
  833. * ieee.c (struct ieee_info): Add global_vars field.
  834. (parse_ieee_be): When ending the global typedef block, copy the
  835. variables into info->global_vars.
  836. (parse_ieee_atn): Don't require an NN record for a pmisc ATN.
  837. (ieee_read_reference): Search the global variables after the local
  838. variables.
  839. Wed Mar 20 18:08:19 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  840. * objdump.c (disassemble_data): Make sure sym_name is always set.
  841. (dump_section_header): Always put a space after the section name.
  842. (dump_bfd_header): Terminate output with newline.
  843. Wed Mar 20 16:35:20 1996 Ian Lance Taylor <ian@cygnus.com>
  844. * wrstabs.c: New file.
  845. * budbg.h (write_stabs_in_sections_debugging_info): Declare.
  846. * objcopy.c (write_debugging_info): For COFF or ELF, output stabs
  847. in sections.
  848. * Makefile.in: Rebuild dependencies.
  849. (CFILES): Add wrstabs.c.
  850. (WRITE_DEBUG_OBJS): New variable.
  851. ($(OBJCOPY_PROG)): Use $(WRITE_DEBUG_OBJS), not $(DEBUG_OBJS).
  852. ($(STRIP_PROG)): Likewise.
  853. * stabs.c (parse_stab_members): Make type stub detection more like
  854. gdb.
  855. * ieee.c (struct ieee_handle): Add fields complex_float_index and
  856. complex_double_index.
  857. (ieee_complex_type): Cache type index in complex_float_index and
  858. complex_double_index, depending upon size. Set size on type stack
  859. to size * 2.
  860. * ieee.c (ieee_empty_type): Use builtin_unknown, not 0.
  861. (ieee_void_type): Use builtin_void, not 1.
  862. * ieee.c (parse_ieee_ty): Handle 'V' type code.
  863. (parse_ieee_atn): Don't require two numbers for type 10.
  864. * ieee.c (parse_ieee_be): Add one to offset at end of function or
  865. block.
  866. * ieee.c (struct ieee_block): Add field skip.
  867. (parse_ieee_bb): Don't call debug_record_function for __XRYCPP
  868. function, and set skip field.
  869. (parse_ieee_be): Don't call debug_end_function if skip is set.
  870. * debug.c (struct debug_handle): Add fields current_write_lineno
  871. and current_write_lineno_index.
  872. (debug_write): Initialize current_write_lineno and
  873. current_write_lineno_index for each unit. Call
  874. debug_write_linenos rather than writing out the line numbers
  875. directly.
  876. (debug_write_function): Call debug_write_linenos.
  877. (debug_write_block): Likewise.
  878. (debug_write_linenos): New static function.
  879. * debug.c (debug_write_type): For DEBUG_KIND_FUNCTION, push return
  880. type before arguments.
  881. Mon Mar 18 18:05:33 1996 Ian Lance Taylor <ian@cygnus.com>
  882. * configure.in: Add AC_FUNC_VFORK.
  883. * configure, config.in: Rebuild.
  884. * dlltool.c, nlmconv.c: Include <vfork.h> if HAVE_VFORK_H is
  885. defined.
  886. * stabs.c (parse_stab_range_type): A complex type is defined as a
  887. subrange of itself with the high bound zero.
  888. * ieee.c (ieee_complex_type): Don't crash on sizes of 12 or 16.
  889. Tue Mar 12 12:09:43 1996 Ian Lance Taylor <ian@cygnus.com>
  890. * ieee.c (ieee_write_undefined_tag): Switch to global_types even
  891. if it is not empty.
  892. (ieee_tag_type): For an enum, look through info->enums.
  893. * configure: Rebuild with autoconf 2.8.
  894. * debug.c (debug_type_samep): Don't loop endlessly in
  895. DEBUG_KIND_ENUM case. From Eric Baur <ecb@nexen.com>.
  896. Mon Mar 11 12:35:03 1996 Ian Lance Taylor <ian@cygnus.com>
  897. * rddbg.c (read_section_stabs_debugging_info): Call save_stab for
  898. each stab entry, call stab_context on an error, and call
  899. free_saved_stabs before rturning.
  900. (read_symbol_stabs_debugging_info): Likewise.
  901. (SAVE_STABS_COUNT): Define.
  902. (struct saved_stab): Define.
  903. (saved_stabs, saved_stabs_index): New static variables.
  904. (save_stab, stab_context, free_saved_stabs): New static functios.
  905. * objdump.c (stab_name): Remove.
  906. (struct stab_print): Remove.
  907. (stab_print): Remove.
  908. (dump_stabs): Don't initialize stab_name.
  909. (print_section_stabs): Call bfd_get_stab_name rather than using
  910. the stab_name array.
  911. Tue Feb 27 19:52:01 1996 Ian Lance Taylor <ian@cygnus.com>
  912. * prdbg.c (pr_int_constant): Initialize info correctly.
  913. (pr_float_constant): Likewise.
  914. Mon Feb 26 18:11:37 1996 Stan Shebs <shebs@andros.cygnus.com>
  915. * mpw-make.sed: Update to handle shared library support.
  916. Sat Feb 24 11:21:49 1996 Alan Modra <alan@spri.levels.unisa.edu.au>:
  917. * Makefile.in ($(OBJDUMP_PROG)): Search $(BFDLIB) before
  918. $(OPCODES).
  919. Thu Feb 15 12:44:45 1996 Ian Lance Taylor <ian@cygnus.com>
  920. * configure.in: Don't tamper with LDFLAGS. Call AC_PROG_CC before
  921. configure.host.
  922. * configure: Rebuild.
  923. * configure.in: Substitute RPATH_ENVVAR.
  924. * configure: Rebuild.
  925. * Makefile.in (RPATH_ENVVAR): New variable.
  926. (check): Use $(RPATH_ENVVAR) rather than LD_LIBRARY_PATH.
  927. * objcopy.c (smart_rename): Rather than doing chmod then chown, do
  928. chmod without setuid, then chown, then chmod with setuid.
  929. Wed Feb 14 16:46:42 1996 Martin Anantharaman <martin@mail.imech.uni-duisburg.de>
  930. * arsup.c (map_over_list): Reindent. Don't assume that the
  931. function does not delete the BFD.
  932. (ar_addlib_doer): Don't set prev->next if prev is NULL.
  933. Wed Feb 14 15:12:17 1996 Ian Lance Taylor <ian@cygnus.com>
  934. * ieee.c (ieee_regno_to_genreg): Convert register numbers for m68k
  935. and i960.
  936. (ieee_genreg_to_regno): Likewise.
  937. Mon Feb 12 14:19:59 1996 Ian Lance Taylor <ian@cygnus.com>
  938. * ieee.c: Extensive changes to write code to put types in the
  939. global type block when possible, to output ranges for all memory
  940. occupied by the module, and to improve efficiency.
  941. * debug.c (struct debug_handle): Remove class_mark field. Add
  942. id_list and compare_list fields.
  943. (struct debug_class_id): Define.
  944. (struct debug_type_compare_list): Define.
  945. (debug_write): Initialize info->id_list
  946. (debug_write_name): Remove reference to info->class_mark.
  947. (debug_write_type): Get id for all structs and classes. Simplify
  948. test for whether struct has already been written.
  949. (debug_write_class_type): Get id for all classes. Simplify test
  950. for whether class has already been written.
  951. (debug_write_block): Don't write out blocks other than the top
  952. level block if they have no local variables.
  953. (debug_set_class_id): New static function.
  954. (debug_type_samep): New static function.
  955. (debug_class_type_samep): New static function.
  956. * prdbg.c (pr_start_struct_type): Always print id.
  957. (pr_start_class_type): Likewise.
  958. (pr_tag_type): Likewise.
  959. * stabs.c (struct stab_handle): Add syms and symcount fields.
  960. (start_stab): Add syms and symcount parameters. Change all
  961. callers.
  962. (parse_stab_string): Look up global variables in the symbol table
  963. to get the right value.
  964. * budbg.h (start_stab): Update declaration.
  965. * rddbg.c (read_section_stabs_debugging_info): Add syms and
  966. symcount parameters. Change all callers.
  967. * stabs.c (parse_stab_array_type): If the index type is 0, use
  968. int.
  969. Wed Feb 7 14:17:45 1996 Ian Lance Taylor <ian@cygnus.com>
  970. * ieee.c (ieee_start_compilation_unit): Clear modified and
  971. modified_alloc fields of info.
  972. * configure.in: Check for --enable-shared. Substitute new
  973. variables BFDLIB and OPCODES.
  974. * configure: Rebuild.
  975. * Makefile.in (BFDLIB): Set to @BFDLIB@.
  976. (OPCODES): Set to @OPCODES@.
  977. Mon Feb 5 16:18:42 1996 Ian Lance Taylor <ian@cygnus.com>
  978. Support for building bfd and opcodes as shared libraries, based on
  979. patches from Alan Modra <alan@spri.levels.unisa.edu.au>:
  980. * configure.in (HLDFLAGS): New substitution.
  981. * configure: Rebuild.
  982. * Makefile.in (HLDFLAGS): New variable. Make all links use
  983. $(HLDFLAGS) before $(CFLAGS) and $(LDFLAGS).
  984. (BFDLIB_DEP): New variable. Replace all occurrences of $(BFD) as
  985. a dependency with $(BFDLIB_DEP). Remove $(BFD) as a dependency if
  986. there is also a dependency on $(ADDL_DEPS).
  987. (BFDLIB): Rename from BFD; change all uses; set to -L../bfd -lbfd.
  988. (OPCODES_DEP): New variable. Replace all occurrends of $(OPCODES)
  989. as a dependency with $(OPCODES_DEP).
  990. (OPCODES): Set to -L../opcodes -lopcodes.
  991. (ADDL_DEPS): New variable. Replace all occurrences of
  992. $(ADDL_LIBS) as a dependency with $(ADDL_DEPS).
  993. (check): Set LD_LIBRARY_PATH in the environment.
  994. (config.status): Depend upon BFD configure.host and config.bfd.
  995. Fri Feb 2 17:02:59 1996 Doug Evans <dje@charmed.cygnus.com>
  996. * objdump.c: #include stdarg.h or varargs.h.
  997. (objdump_print_value): Change FILE* arg to struct disassemble_info*.
  998. All callers updated. Use fprintf_func.
  999. (objdump_print_address): Consistently use fprintf_func.
  1000. (objdump_sprintf): New function.
  1001. (disassemble_data): Print insn into a buffer, print raw insn ourselves,
  1002. then print insn mnemonic.
  1003. Fri Feb 2 16:48:55 1996 Ian Lance Taylor <ian@cygnus.com>
  1004. * configure: Regenerate.
  1005. Thu Feb 1 09:38:18 1996 Steve Chamberlain <sac@slash.cygnus.com>
  1006. * configure.in (i[3-6]86-*-win32): Becomes i[3-6]86-*-cygwin32.
  1007. (powerpc*-*-cygwin32): New.
  1008. * configure: Regenerated.
  1009. Wed Jan 31 13:22:03 1996 Richard Henderson <rth@tamu.edu>
  1010. * Makefile.in (distclean): Remove $(DEMANGLER_PROG).1.
  1011. Mon Jan 29 17:36:29 1996 Ian Lance Taylor <ian@cygnus.com>
  1012. Based on patches from H J Lu <hjl@zoom.com>:
  1013. * objcopy.c (remove_leading_char): New static variable.
  1014. (OPTION_REMOVE_LEADING_CHAR): Define.
  1015. (copy_usage): Mention --remove-leading-char.
  1016. (filter_symbols): If remove_leading_char, and the first character
  1017. of a global symbol matches the symbol leading char of the BFD,
  1018. remove the first character.
  1019. (copy_object): Filter the symbols if remove_leading_char is set.
  1020. (copy_main): Handle --remove-leading-char.
  1021. * binutils.texi, objcopy.1: Document --remove-leading-char.
  1022. Sat Jan 27 15:40:13 1996 Michael Meissner <meissner@tiktok.cygnus.com>
  1023. * objdump.c (fprintf): Add prototype to avoid compiler warning on
  1024. SunOS.
  1025. Fri Jan 26 11:53:42 1996 Ian Lance Taylor <ian@cygnus.com>
  1026. * binutils.texi (nm): Improve documentation on symbol types.
  1027. (objdump): Reference the stabs manual from the discussion of the
  1028. --stabs option.
  1029. Thu Jan 25 11:21:46 1996 Raymond Jou <rjou@mexican.cygnus.com>
  1030. * mpw-make.sed: Add a "stamps" target.
  1031. Thu Jan 25 13:51:44 1996 Ian Lance Taylor <ian@cygnus.com>
  1032. * objdump.c (dump_headers, dump_section_header): Change objdump -h
  1033. output to be simpler and to include section file offsets.
  1034. Wed Jan 24 12:06:05 1996 Ian Lance Taylor <ian@cygnus.com>
  1035. * stabs.c (parse_stab_members): Don't adjust voffset.
  1036. * ieee.c (ieee_read_cxx_class): Don't multiply voffset by 4.
  1037. (struct ieee_write_type): Add name field.
  1038. (struct ieee_type_class): Remove name field. Change all uses to
  1039. use new name field in type instead.
  1040. (struct ieee_name_type): Likewise.
  1041. (ieee_start_struct_type): Initialize name field of type.
  1042. (ieee_start_class_type): Don't initialize classdef entry of tag.
  1043. (ieee_class_method_var): Don't adjust voffset.
  1044. (ieee_end_class_type): Likewise.
  1045. (ieee_tag_type): Initialize new name field of type.
  1046. (ieee_typdef): Set name after copying in type information.
  1047. * debug.c (VOFFSET_STATIC_METHOD): Define as -1, not 1.
  1048. * ieee.c (struct ieee_modified_type): Define.
  1049. (struct ieee_handle): Add modified and modified_alloc fields.
  1050. (ieee_get_modified_info): New static function.
  1051. (ieee_pointer_type): Cache type index.
  1052. (ieee_const_type): Likewise.
  1053. (ieee_volatile_type): Likewise.
  1054. * ieee.c (ieee_define_named_type): When creating a tag for an
  1055. anonymous struct, copy the name into memory.
  1056. (ieee_tag_type): Likewise.
  1057. * debug.c (debug_write_type): Only check and set id field for an
  1058. unnamed object.
  1059. (debug_write_class_type): Likewise.
  1060. * ieee.c: Various changes to write out types for functions and
  1061. references, and to not write out unnecessary function types.
  1062. * ieee.c (struct ieee_var): Remove variable field. Add kind
  1063. field, and define some enum constants for it.
  1064. (parse_ieee_ty): Set kind field of variable for 'x' and 'X' types.
  1065. (parse_ieee_atn): Make an indirect slot for an external variable,
  1066. although we otherwise don't record it. Set kind field rather than
  1067. variable field of pvar.
  1068. (ieee_read_cxx_class): Try to get the type of a static member.
  1069. (ieee_read_reference): Check kind field rather than variable
  1070. field.
  1071. Tue Jan 23 15:54:18 1996 Ian Lance Taylor <ian@cygnus.com>
  1072. * ieee.c: Various changes to handle reading C++ reference type
  1073. information.
  1074. * debug.h (enum debug_var_kind): Add DEBUG_VAR_ILLEGAL.
  1075. (enum debug_parm_kind): Add DEBUG_PARM_ILLEGAL.
  1076. * debug.c (debug_get_parameter_types): Handle DEBUG_KIND_FUNCTION.
  1077. * ieee.c: Various changes to write out definitions of C++ classes.
  1078. * debug.c (debug_append_filename): Remove.
  1079. * debug.h (debug_append_filename): Don't declare.
  1080. * stabs.c (struct stab_handle): Remove last_type field. Add
  1081. so_string and so_value fields.
  1082. (finish_stab): Call stab_emit_pending_vars before calling
  1083. debug_end_function. Don't warn about pending variables.
  1084. (parse_stab): Accumulate N_SO strings until a non N_SO symbol is
  1085. seen, rather than calling debug_append_filename. Call
  1086. stab_emit_pending_vars before calling debug_end_function. Don't
  1087. set info->last_type.
  1088. Tue Jan 23 09:53:54 1996 Doug Evans <dje@charmed.cygnus.com>
  1089. * objdump.c (disassemble_data): Handle unknown endianness.
  1090. Pass fprintf to INIT_DISASSEMBLE_INFO.
  1091. Mon Jan 22 16:46:43 1996 Doug Evans <dje@charmed.cygnus.com>
  1092. Add new option --show-raw-insn.
  1093. * objdump.c (show_raw_insn): New global.
  1094. (usage): Update.
  1095. (long_options): Update.
  1096. (disassemble_data): Set disasm_info.flags if --show-raw-insn.
  1097. * objdump.c (disassemble_data): Set new arch,mach,endian fields in
  1098. disasm_info.
  1099. Mon Jan 22 19:29:36 1996 Ian Lance Taylor <ian@cygnus.com>
  1100. * ieee.c: Extensive changes to pass a single info argument around
  1101. in the reading routines, rather than several arguments. Add code
  1102. to read C++ debugging records.
  1103. * debug.h (debug_get_type_size): Declare.
  1104. (debug_get_field_name): Declare.
  1105. (debug_get_field_bitpos): Declare.
  1106. (debug_get_field_bitsize): Declare.
  1107. (debug_get_field_visibility): Declare.
  1108. (debug_get_field_physname): Declare.
  1109. * debug.c (debug_get_real_type): Handle DEBUG_KIND_TAGGED.
  1110. (debug_get_type_size): New function.
  1111. (debug_get_field_name): New function.
  1112. (debug_get_field_bitpos): New function.
  1113. (debug_get_field_bitsize): New function.
  1114. (debug_get_field_visibility): New function.
  1115. (debug_get_field_physname): New function.
  1116. (debug_write_type): Make sure we pass the real kind, not INDIRECT,
  1117. to tag_type. Pass the name recursively for INDIRECT.
  1118. Fri Jan 19 12:31:57 1996 Ian Lance Taylor <ian@cygnus.com>
  1119. * debug.h (struct debug_write_fns): Remove ellipsis_type. Add int
  1120. and boolean parameters to function_type. Add boolean parameter to
  1121. method_type.
  1122. (debug_make_ellipsis_type): Don't declare.
  1123. (debug_make_function_type): Add debug_type * and boolean
  1124. parameters. Change all callers.
  1125. (debug_make_method_type): Add boolean parameter. Change all
  1126. callers.
  1127. (debug_get_parameter_types): Add boolean * parameter. Change all
  1128. callers.
  1129. (debug_get_target_type): Declare.
  1130. * debug.c (struct debug_function_type): Add fields arg_types and
  1131. varargs.
  1132. (struct debug_method_type): Add field varargs.
  1133. (debug_ellipsis_type, ELLIPSIS_P): Remove.
  1134. (debug_make_ellipsis_type): Remove.
  1135. (debug_make_function_type): Add arg_types and varargs parameters.
  1136. (debug_make_method_type): Add varargs parameter.
  1137. (debug_get_parameter_types): Add pvarargs parameter.
  1138. (debug_get_target_type): New function.
  1139. (debug_write_type): In case DEBUG_KIND_FUNCTION, push argument
  1140. types and pass count to function_type. In DEBUG_KIND_METHOD, use
  1141. a signed int for the count, don't call ellipsis_type, and pass
  1142. varargs to method_type.
  1143. * stabs.c (struct stab_demangle_info): Add varargs field.
  1144. (stab_demangle_argtypes): Add pvarargs parameter. Change all
  1145. callers.
  1146. (stab_demangle_args): Likewise.
  1147. (stab_demangle_type): In case 'F', pick up argument types.
  1148. * prdbg.c (pr_ellipsis_type): Remove.
  1149. (pr_function_type): Add argcount and varargs parameters.
  1150. (pr_method_type): Add varargs parameter.
  1151. * ieee.c (ieee_ellipsis_type): Remove.
  1152. (ieee_function_type): Add argcount and varargs parameters.
  1153. (ieee_method_type): Add varargs parameter. Remove most of
  1154. function body, and just call ieee_function_type.
  1155. * stabs.c: Include "demangle.h". Added several new static
  1156. functions not listed below to demangle argument types; they are
  1157. all called via stab_demangle_argtypes.
  1158. (finish_stab): If the kind of an undefined tag is
  1159. DEBUG_KIND_ILLEGAL, use DEBUG_KIND_STRUCT instead. Warn if there
  1160. are any pending variable.
  1161. (parse_stab): Don't close the function when the block depth goes
  1162. to zero. Pass value to debug_end_function.
  1163. (parse_stab_string): In case 'T', pass the name to
  1164. parse_stab_type.
  1165. (parse_stab_type): In case 'x', use stab_find_tagged_type. In
  1166. case '#', handle functions with variable numbers of arguments.
  1167. (parse_stab_struct_type): Add tagname parameter. Change all
  1168. callers.
  1169. (parse_stab_members): Add tagname and typenums parameters. Change
  1170. all callers. If the type of a method is a stub, call
  1171. parse_stab_argtypes to demangle the argument types and get the
  1172. physical name of the function.
  1173. (parse_stab_argtypes): New static function.
  1174. (stab_record_variable): For a DEBUG_GLOBAL or DEBUG_STATIC
  1175. variable, call debug_record_variable immediately.
  1176. (stab_find_tagged_type): New static function.
  1177. * debug.h (enum debug_type_kind): Add DEBUG_KIND_ILLEGAL.
  1178. (struct debug_write_fns): Add field ellipsis_type. Add id
  1179. parameter to start_struct_type, start_class_type, and tag_type.
  1180. (debug_make_ellipsis_type): Declare.
  1181. (debug_find_named_type): Declare.
  1182. (debug_get_type_kind): Declare.
  1183. (debug_get_return_type): Declare.
  1184. (debug_get_parameter_types): Declare.
  1185. (debug_get_fields): Declare.
  1186. (debug_get_field_type): Declare.
  1187. * debug.c (struct debug_handle): Add fields class_id and base_id.
  1188. (struct debug_class_type): Add field id.
  1189. (struct debug_method_variant): Rename argtypes to physname.
  1190. Change all uses.
  1191. (debug_ellipsis_type): New static variable.
  1192. (ELLIPSIS_P): New macro.
  1193. (debug_make_ellipsis_type): New function.
  1194. (debug_make_method_variant): Rename argtypes to physname.
  1195. (debug_make_static_method_variant): Likewise.
  1196. (debug_name_type): Always put types in the global namespace.
  1197. (debug_find_named_type): New function.
  1198. (debug_find_tagged_type): Treat DEBUG_KIND_ILLEGAL specially,
  1199. rather than DEBUG_KIND_VOID.
  1200. (debug_get_real_type): New static function.
  1201. (debug_get_type_kind): New function.
  1202. (debug_get_return_type): New function.
  1203. (debug_get_parameter_types): New function.
  1204. (debug_get_fields): New function.
  1205. (debug_get_field_type): New function.
  1206. (debug_write): Initialize base_id.
  1207. (debug_write_type): Pass new id argument to tag_type. Handle
  1208. DEBUG_KIND_ILLEGAL. Use id for DEBUG_KIND_STRUCT and
  1209. DEBUG_KIND_UNION. Handle ellipsis for method arguments.
  1210. (debug_write_class_type): Don't dereference kclass if it is NULL.
  1211. Use id.
  1212. * prdbg.c (pr_fns): Add pr_ellipsis_type.
  1213. (pr_ellipsis_type): New static function.
  1214. (pr_pointer_type): If this is a pointer to an array, parenthesize
  1215. it correctly.
  1216. (pr_start_struct_type): Add id parameter.
  1217. (pr_start_class_type): Likewise.
  1218. (pr_tag_type): Likewise.
  1219. (pr_fix_visibility): Add the visibility to the top of the stack,
  1220. not the second element on the stack.
  1221. (pr_struct_field): Pop the stack before calling pr_fix_visibility.
  1222. (pr_class_static_member): Likewise.
  1223. (pr_class_start_method): Don't push a type, just set the method
  1224. name in the type on the top of the stack.
  1225. (pr_class_end_method): Don't pop the stack.
  1226. (pr_class_method_variant): Rename argtypes parameter to physname.
  1227. Append const and volatile rather than prepending them. Add a
  1228. space after the physname.
  1229. (pr_class_static_method_variant): Likewise.
  1230. * ieee.c (ieee_fns): Add ieee_ellipsis_type.
  1231. (ieee_define_named_type): Use DEBUG_KIND_ILLEGAL rather than
  1232. DEBUG_KIND_VOID.
  1233. (write_ieee_debugging_info): Likewise.
  1234. (ieee_typdef): Likewise.
  1235. (ieee_ellipsis_type): New static function.
  1236. (ieee_start_struct_type): Add id parameter.
  1237. (ieee_start_class_type): Likewise.
  1238. (ieee_tag_type): Likewise.
  1239. (ieee_class_method_variant): Rename name to physname.
  1240. (ieee_class_static_method_variant): Likewise.
  1241. * Makefile.in (DEBUG_OBJS): Remove prdbg.o.
  1242. ($(OBJDUMP_PROG)): Depend upon, and link against, prdbg.o.
  1243. Thu Jan 18 17:35:06 1996 Kim Knuttila <krk@cygnus.com>
  1244. * dlltool.c (make_tail): Changed the order of the sections to avoid
  1245. an alignment problem.
  1246. Wed Jan 17 14:23:00 1996 J.T. Conklin <jtc@rtl.cygnus.com>
  1247. * srconv.c (wr_du): Set du.stackfrmt to 0.
  1248. (wr_un, wr_sc): Emit all sections, even those with 0 size.
  1249. Tue Jan 16 16:15:49 1996 J.T. Conklin <jtc@rtl.cygnus.com>
  1250. * srconv.c (wr_hd): Space size within segment was being
  1251. stored in segment identifier field.
  1252. Tue Jan 16 12:07:25 1996 Stan Shebs <shebs@andros.cygnus.com>
  1253. * mpw-config.in (BUILD_NLMCONV, BUILD_SRCONV, SYSINFO_PROG,
  1254. BUILD_DLLTOOL): Put definitions for these into makefile when
  1255. configuring, instead of always clearing in mpw-make.sed.
  1256. * mpw-make.sed: Edit out any host_alias or target_alias settings,
  1257. fix pathname to BFD internal include files, remove dependency
  1258. calculation rules.
  1259. Thu Jan 11 17:31:38 1996 Michael Meissner <meissner@tiktok.cygnus.com>
  1260. * objdump.c (dump_section_header): Add new section flags
  1261. SEC_{EXCLUDE,SORT_ENTRIES}.
  1262. Thu Jan 11 11:45:34 1996 Ian Lance Taylor <ian@cygnus.com>
  1263. * objcopy.c (filter_symbols): NULL terminate the output symbols.
  1264. (copy_object): Allocate space for a possible extra NULL pointer.
  1265. * debug.c (debug_make_undefined_tagged_type): Make sure we are
  1266. given a kind of type we can handle.
  1267. (debug_write_type): Handle undefined enums and structs.
  1268. (debug_write_class_type): Handle undefined classes.
  1269. * prdbg.c (pr_enum_type): Handle an undefined enum.
  1270. * ieee.c (ieee_enum_type): Likewise.
  1271. Wed Jan 10 15:33:18 1996 Ian Lance Taylor <ian@cygnus.com>
  1272. * Makefile.in: Updated dependencies.
  1273. (ALLOCA, MALLOC): Remove variables.
  1274. (ADDL_LIBS): Remove $(MALLOC) from definition.
  1275. * alloca.c, gmalloc.c: Remove.
  1276. Mon Jan 8 18:02:29 1996 Ian Lance Taylor <ian@cygnus.com>
  1277. * ieee.c: Add global function write_ieee_debugging_info and a
  1278. bunch of static functions and structs used to write out IEEE
  1279. debugging information.
  1280. * budbg.h (write_ieee_debugging_info): Declare.
  1281. * ieee.c (struct ieee_type): Add pslot field.
  1282. (enum builtin_types): Define.
  1283. (ieee_builtin_type): For a pointer, return a pointer to the named
  1284. type. Use enum values rather than numbers.
  1285. (ieee_alloc_type): New static function.
  1286. (ieee_read_type_index): Use ieee_alloc_type.
  1287. (parse_ieee_bb): Likewise.
  1288. (parse_ieee_ty): Likewise. Use ieee_builtin_type for array range,
  1289. rather than making a new integer type. Store the new type in the
  1290. slot, if there is one.
  1291. (parse_ieee_atn): Treat ATN10 as defining a register variable.
  1292. (ieee_regno_to_genreg): Rename from ieee_regno_to_gen. Change all
  1293. callers.
  1294. (ieee_genreg_to_regno): New static function.
  1295. * stabs.c (parse_stab_type): Add new typename parameter. Change
  1296. all callers.
  1297. (parse_stab_range_type): Add new typename parameter. Change all
  1298. callers.
  1299. * debug.h (struct debug_write_fns): Add tag parameter to
  1300. enum_type, start_struct_type, and start_class_type.
  1301. * debug.c (debug_write_type): Pass any tag name to
  1302. start_struct_type, debug_write_class_type, and enum_type. If
  1303. DEBUG_KIND_TAGGED, pass the name in the recursive call.
  1304. (debug_write_class_type): Accept a new tag parameter, and pass it
  1305. to start_class_type.
  1306. * prdbg.c (pop_type): Don't remove '+' character.
  1307. (pr_enum_type): Accept and use tag parameter.
  1308. (pr_start_struct_type): Likewise.
  1309. (pr_start_class_type): Likewise.
  1310. (pr_class_baseclass): Adjust algorithm used to find where to put
  1311. the baseclass name.
  1312. (pr_tag): Don't bother to insert the tag name.
  1313. * objcopy.c: Include budbg.h.
  1314. (convert_debugging): New static variable.
  1315. (OPTION_DEBUGGING): Define.
  1316. (copy_options): Add "debugging".
  1317. (copy_usage): Mention --debugging.
  1318. (is_strip_section): Skip debugging sections if convert_debugging.
  1319. (setup_section, copy_section): Likewise.
  1320. (filter_symbols): Skip debugging symbols if convert_debugging.
  1321. (copy_object): If convert_debugging, read and write debugging
  1322. information.
  1323. (write_debugging_info): New static function.
  1324. (copy_main): Handle --debugging.
  1325. * Makefile.in (DEBUG_OBJS): New variable.
  1326. ($(OBJCOPY_PROG)): Depend upon and link against $(DEBUG_OBJS).
  1327. ($(STRIP_PROG)): Likewise.
  1328. (OBJDUMP_OBJS): Remove variable.
  1329. ($(OBJDUMP_PROG)): Use objdump.o $(DEBUG_OBJS) rather than
  1330. $(OBJDUMP_OBJS).
  1331. * binutils.texi, objcopy.1: Document --debugging.
  1332. Thu Jan 4 16:31:21 1996 Ian Lance Taylor <ian@cygnus.com>
  1333. * ieee.c: New file with code to read IEEE debugging information.
  1334. * budbg.h (parse_ieee): Declare.
  1335. * rddbg.c (read_debugging_info): Handle IEEE flavour files.
  1336. (read_ieee_debugging_info): New static function.
  1337. * Makefile.in: Rebuild dependencies.
  1338. (CFILES): Add ieee.c.
  1339. (OBJDUMP_OBJS): Add ieee.o.
  1340. * bucomm.h (xrealloc): Change type of first parameter from char *
  1341. to PTR.
  1342. Tue Jan 2 17:44:07 1996 Ian Lance Taylor <ian@cygnus.com>
  1343. * Makefile.in: Add targets to automatically rebuild dependencies.
  1344. Remove targets which just listed dependencies of .o files.
  1345. (DEP): New variable.
  1346. (HFILES, GENERATED_HFILES): New variables.
  1347. (CFILES, GENERATED_CFILES): New variables.
  1348. (underscore.c): Don't do anything, just depend upon stamp-under.
  1349. (stamp-under): New target; do what underscore.c used to do.
  1350. (nlmconv.o): Depend upon sym.h and ecoff.h.
  1351. (.dep, .dep1, dep.sed, dep, dep-in): New targets.
  1352. (stage1, stage2, stage3, against, comparison): Remove.
  1353. (de-stage1, de-stage2, de-stage3): Remove.
  1354. (clean, distclean): Remove stamp-under and dep.sed.
  1355. * dep-in.sed: New file.
  1356. Implement generic debugging support. Implement a stabs reader and
  1357. a generic printer.
  1358. * budbg.h, debug.c, debug.h, prdbg.c, rddbg.c, stabs.c: New files.
  1359. * objdump.c: Include "debug.h" and "budbg.h".
  1360. (dump_debugging): New global variable.
  1361. (usage): Mention --debugging.
  1362. (long_options): Add "debugging".
  1363. (display_bfd): Handle --debugging.
  1364. * Makefile.in (OBJDUMP_OBJS): New variable.
  1365. ($(OBJDUMP_PROG)): Use $(OBJDUMP_OBJS).
  1366. * binutils.texi, objdump.1: Document --debugging.
  1367. Sat Dec 30 09:59:51 1995 Jeffrey A Law (law@cygnus.com)
  1368. * nm.c ( long_options): Add "--defined-only" option.
  1369. (usage): Update for new "--defined-only" option.
  1370. (filter_symbols): Handle "--defined-only".
  1371. Fri Dec 29 16:04:56 1995 Ian Lance Taylor <ian@cygnus.com>
  1372. * arparse.y: Include "bucomm.h", not <sysdep.h>.
  1373. * nlmheader.y: Don't include "sysdep.h".
  1374. Tue Dec 26 18:23:18 1995 Ian Lance Taylor <ian@cygnus.com>
  1375. * nm.c (print_symdef_entry): Check return value of
  1376. bfd_get_elt_at_index.
  1377. Sat Dec 23 11:03:16 1995 Michael Meissner <meissner@tiktok.cgynsu.com>
  1378. * configure.in (DLLTOOL_DEFS): Build dlltool for PowerPC if target
  1379. is powerpc*-*-win* in addition to powerpc*-*-*pe*.
  1380. Fri Dec 15 16:30:57 1995 Ian Lance Taylor <ian@cygnus.com>
  1381. * objdump.c (endian_string): New static function.
  1382. (display_target_list): Use it.
  1383. * nlmconv.c (main): Use new bfd_big_endian macro.
  1384. Fri Dec 15 07:51:34 1995 steve chamberlain <sac@slash.cygnus.com>
  1385. * dlltool.c (fill_ordinals): Start from 1 if no other instructions
  1386. given.
  1387. Tue Dec 12 12:05:21 1995 Ian Lance Taylor <ian@cygnus.com>
  1388. * Makefile.in (clean): Remove $(DEMANGLER_PROG).1. From Ronald
  1389. F. Guilmette <rfg@monkeys.com>.
  1390. Mon Dec 11 14:33:05 1995 Stan Shebs <shebs@andros.cygnus.com>
  1391. * mac-binutils.r: Fix copyright and version strings.
  1392. * Makefile.in (version): Remove, no longer used.
  1393. Fri Dec 1 14:41:56 1995 Stan Shebs <shebs@andros.cygnus.com>
  1394. * mpw-make.sed (install, install-only): Edit in Mac-specific
  1395. install procedure.
  1396. Thu Nov 30 20:26:02 1995 Kim Knuttila <krk@cygnus.com>
  1397. * dlltool.c (ppc_jtab): The binary glue for PowerPC dll linkage,
  1398. including the return instruction.
  1399. sinfo: added a preferred alignment field.
  1400. (secdata): section data for the PowerPC version.
  1401. (make_one_lib_file): More symbols, More sections (pdata, rdata)
  1402. (make_tail): Use idata$6 instead of idata$7 for ppc. Also added a
  1403. NULL idata$3 descriptor (temporary).
  1404. Tue Nov 28 17:23:44 1995 Doug Evans <dje@canuck.cygnus.com>
  1405. * dlltool.c (fill_ordinals): Don't reference d_export_vec if
  1406. there are no exported functions.
  1407. Mon Nov 27 13:05:59 1995 Ian Lance Taylor <ian@cygnus.com>
  1408. * configure: Regenerate with autoconf 2.7.
  1409. Wed Nov 22 13:17:15 1995 Ian Lance Taylor <ian@cygnus.com>
  1410. * dlltool.c (fill_ordinals): Start assigning ordinals at 1.
  1411. * Makefile.in (EXPECT): Use $$r, not $${rootme}.
  1412. (check): Set r, not rootme.
  1413. Tue Nov 21 18:04:09 1995 Ian Lance Taylor <ian@cygnus.com>
  1414. * configure.in: Use BFD_NEED_DECLARATION.
  1415. * acconfig.h: Put NEED_DECLARATION_FPRINTF in @TOP@ section.
  1416. * configure, config.in: Rebuild with autoconf 2.6.
  1417. Fri Nov 17 10:34:37 1995 Ian Lance Taylor <ian@cygnus.com>
  1418. * Makefile.in (CC_FOR_TARGET): Use @host@ and @target@, not
  1419. $(host_canonical) and $(target_canonical).
  1420. Thu Nov 16 03:39:20 1995 Ken Raeburn <raeburn@cygnus.com>
  1421. Version 2.6 released.
  1422. * Makefile.in (VERSION): Update to 2.6.
  1423. Wed Nov 15 12:14:17 1995 Ian Lance Taylor <ian@cygnus.com>
  1424. * Makefile.in (CC_FOR_TARGET): Define.
  1425. (check): Pass CC and CFLAGS to runtest.
  1426. * nm.c (display_rel_file): Don't require a DYNAMIC object when
  1427. dumping the dynamic symbol table.
  1428. * objdump.c (compare_symbols): Sort global symbols before local
  1429. symbols before debugging symbols.
  1430. (objdump_print_address): Don't futz around looking for a global
  1431. symbol with the same value.
  1432. Tue Nov 14 17:19:11 1995 Ian Lance Taylor <ian@cygnus.com>
  1433. * dlltool.c: Use FOPEN_* macros rather than "r" or "w".
  1434. * dlltool.c (fill_ordinals): Correct memset call.
  1435. Sun Nov 12 12:56:05 1995 Stan Shebs <shebs@andros.cygnus.com>
  1436. * mpw-make.sed (DEMANGLER_PROG): Edit out attempts to do anything
  1437. with the man page.
  1438. Fri Nov 10 11:41:22 1995 Ian Lance Taylor <ian@cygnus.com>
  1439. * objcopy.c (setup_section): Copy the section lma independently of
  1440. the vma.
  1441. Wed Nov 8 11:33:00 1995 Ian Lance Taylor <ian@cygnus.com>
  1442. * arsup.c (ar_open): Cast malloc return value.
  1443. Tue Nov 7 09:01:26 1995 Kim Knuttila <krk@cygnus.com>
  1444. * configure.in, configure (DLLTOOL_DEFS): Added ppc target.
  1445. * dlltool.c (MPPC): Added basic PPC definitions.
  1446. Tue Nov 7 14:02:57 1995 Ian Lance Taylor <ian@cygnus.com>
  1447. * configure.in: Don't treat rs6000-*-lynx* specially.
  1448. * configure: Rebuild.
  1449. * config/rslynx: Remove.
  1450. * Makefile.in: Remove @target_makefile_fragment@.
  1451. Mon Nov 6 15:00:50 1995 Ian Lance Taylor <ian@cygnus.com>
  1452. * bucomm.h: Include <sys/types.h>.
  1453. * ar.c: Don't include <sys/types.h> or <stdio.h>.
  1454. * bucomm.c, dlltool.c, nlmconv.c, objcopy.c, objdump.c: Likewise.
  1455. Fri Nov 3 12:38:09 1995 Ian Lance Taylor <ian@cygnus.com>
  1456. * objdump.c: Include <sys/types.h>.
  1457. Permit user to override DEMANGLER_PROG from command line. From
  1458. Manfred Hollstein <manfred@lts.sel.alcatel.de>.
  1459. * Makefile.in ($(DEMANGLER_PROG)): Depend upon
  1460. $(DEMANGLER_PROG).1.
  1461. (install): Don't depend upon $(DEMANGLER_PROG).1. Only install
  1462. $(DEMANGLER_PROG).1 if $(DEMANGLER_PROG) is not empty.
  1463. Wed Nov 1 15:04:57 1995 Manfred Hollstein KS/EF4A 60/1F/110 #40283 <manfred@lts.sel.alcatel.de>
  1464. * Makefile.in (syslex.o): add -I$(srcdir) if compiling in a
  1465. separate directory.
  1466. Mon Oct 30 14:24:18 1995 Ian Lance Taylor <ian@cygnus.com>
  1467. * objdump.c (objdump_print_value): New static function.
  1468. (objdump_print_address): Use it. If we need the right section for
  1469. the symbol, and we can't find it, print an offset from the section
  1470. rather than using a symbol from some other section.
  1471. Thu Oct 26 10:23:14 1995 steve chamberlain <sac@slash.cygnus.com>
  1472. * dlltool.c (no_idata4, no_idata5): New.
  1473. (arm_jtab): Use correct encoding of jump instruction.
  1474. (usage, main, make_head, make_tail): Act on no_idata4, no_idata5.
  1475. Wed Oct 25 12:10:07 1995 Stan Shebs <shebs@andros.cygnus.com>
  1476. * mpw-make.sed: Edit paths to generated y.tab.[ch] files.
  1477. Fri Oct 20 18:40:34 1995 Ian Lance Taylor <ian@cygnus.com>
  1478. * binutils.texi: Change --with-targets to --enable-targets.
  1479. Thu Oct 19 17:47:41 1995 Fred Fish <fnf@cygnus.com>
  1480. * Makefile.in: Remove extraneous tab on otherwise empty line,
  1481. which confuses many non-GNU versions of "make".
  1482. Wed Oct 18 16:31:58 1995 steve chamberlain <sac@slash.cygnus.com>
  1483. * dlltool.c (i386_jtab, arm_jtab): New
  1484. (gen_lib_file): Rewritten to use bfd.
  1485. Fri Oct 13 16:10:07 1995 Michael Meissner <meissner@tiktok.cygnus.com>
  1486. * Makefile.in (install): Don't give error message if dlltool
  1487. wasn't built.
  1488. Fri Oct 13 11:04:37 1995 steve chamberlain <sac@slash.cygnus.com>
  1489. * deflex.l: Allow quoting of IDs.
  1490. * defparse.y (%union): string deleted.
  1491. (command): DESCRIPTION takes ID.
  1492. * dlltool.c (gen_def_file): Quote outgoing name if
  1493. necessary. Preserve NONAME.
  1494. (gen_lib_file): Run ranlib.
  1495. (workout_prefix): Deleted.
  1496. (main, usage, long_options): Add --as, --ranlib, --ar options.
  1497. Wed Oct 11 13:36:13 1995 steve chamberlain <sac@slash.cygnus.com>
  1498. * dlltool.c (mtable): HOW_ALIGN_LONG, new.
  1499. (d_ord): Deleted.
  1500. (d_low_ord, d_high_ord, d_named_funcs): New.
  1501. (gen_exp_file): Create noname entries correctly.
  1502. (gen_lib_file): Dump exports alphabetically.
  1503. (process_duplicates): Count nonamed functions.
  1504. (fill_ordinals): Keep track of highest ord too.
  1505. (mangle_defs): Create alphabetically ordered list of names.
  1506. Tue Oct 10 09:39:09 1995 steve chamberlain <sac@slash.cygnus.com>
  1507. * Makefile.in (TOOL_PROGS): Include DLLTOOL_PROG.
  1508. Mon Oct 9 13:06:31 1995 steve chamberlain <sac@slash.cygnus.com>
  1509. * dlltool.c (add_underscore): New.
  1510. (xlate): Use new name.
  1511. (main, usage): Update.
  1512. Fri Oct 6 14:08:51 1995 Ken Raeburn <raeburn@cygnus.com>
  1513. * sysinfo.y: Eliminate unused terminals "[" and "]" and unused
  1514. nonterminal "name". One s/r conflict remains.
  1515. Mon Sep 25 22:49:32 1995 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
  1516. * nm.c (print_symname): Don't try to demangle an empty
  1517. name.
  1518. * objdump.c (slurp_symtab): Reset symcount if there are
  1519. no symbols.
  1520. (slurp_dynamic_symtab): Likewise, for dynsymcount.
  1521. (disassemble_data): Fix memory leak: free sorted_syms when done.
  1522. (display_bfd): Likewise, for syms and dynsyms.
  1523. (dump_relocs): Don't print header before possibly generating an
  1524. error message.
  1525. (dump_dynamic_relocs): Likewise.
  1526. * ar.1, nm.1, objdump.1, size.1, strings.1, strip.1: Fix typos and
  1527. formatting bugs.
  1528. Fri Oct 6 12:00:25 1995 Ian Lance Taylor <ian@cygnus.com>
  1529. * ar.c (do_quick_append): Comment out.
  1530. (replace_members): Add quick argument.
  1531. (main): Don't call do_quick_append.
  1532. (open_inarch): Don't call quick_append to create an empty archive.
  1533. Instead call bfd_openw/bfd_set_format/bfd_close.
  1534. Thu Oct 5 20:53:08 1995 Ken Raeburn <raeburn@cygnus.com>
  1535. * bucomm.c: Always include time.h.
  1536. Thu Oct 5 17:25:21 1995 Ian Lance Taylor <ian@cygnus.com>
  1537. * objdump.c (compare_symbols): Sort gnu_compiled and gcc2_compiled
  1538. symbols after other symbols with the same value. Likewise for
  1539. symbols which look like file names.
  1540. (objdump_print_address): Always chose the first reasonable symbol
  1541. with a given value.
  1542. Tue Oct 3 22:38:55 1995 Ian Lance Taylor <ian@cygnus.com>
  1543. * arsup.c (ar_save): Use rename, not unlink/link/unlink.
  1544. Mon Oct 2 12:10:25 1995 Ian Lance Taylor <ian@cygnus.com>
  1545. * strings.c (main): Exit with zero status if no files are given
  1546. and standard input is read.
  1547. Thu Sep 28 20:03:07 1995 Stan Shebs <shebs@andros.cygnus.com>
  1548. * mpw-config.in: Calculate underscore and put into makefile
  1549. fragment, generate config.h.
  1550. * mpw-make.sed: New file, sed commands to edit Unix makefile
  1551. into MPW syntax.
  1552. * mpw-make.in: Remove.
  1553. * mac-binutils.r: New file, Mac resources.
  1554. Thu Sep 28 15:49:00 1995 steve chamberlain <sac@slash.cygnus.com>
  1555. * dlltool.c: (gen_exp_file): Always emit a .reloc section if
  1556. relocatable.
  1557. (imp_name_lab): New.
  1558. (gen_def_file): New.
  1559. (gen_lib_file): Use imp_name_lab.
  1560. (main): Initialize imp_name_lab.
  1561. Mon Sep 25 12:05:34 1995 Ian Lance Taylor <ian@cygnus.com>
  1562. * configure.in: Call AC_HEADER_SYS_WAIT.
  1563. * configure: Rebuild.
  1564. * config.in: Rebuild.
  1565. * dlltool.c: Include "libiberty.h" and "bucomm.h". Don't include
  1566. <stdio.h>, <stdlib.h>, or <string.h>. Don't include <wait.h>.
  1567. Include <sys/types.h>. Use HAVE_SYS_WAIT_H to control whether to
  1568. include <sys/wait.h> or define the wait macros by hand. Don't
  1569. declare xmalloc.
  1570. (gen_lib_file): Don't assume that sprintf returns the number of
  1571. characters; use strlen instead.
  1572. Fri Sep 22 17:16:41 1995 Ian Lance Taylor <ian@cygnus.com>
  1573. * objdump.c (disassemble_data): Don't use the old BFD based
  1574. disassembler interface. Make info a const pointer.
  1575. Wed Sep 13 18:33:44 1995 Ian Lance Taylor <ian@cygnus.com>
  1576. * objdump.c (start_address): New variable.
  1577. (stop_address): New variable.
  1578. (usage): Mention --start-address and --stop-address.
  1579. (OPTION_START_ADDRESS, OPTION_STOP_ADDRESS): Define.
  1580. (long_options): Add "start-address" and "stop-address".
  1581. (disassemble_data): Handle start_address and stop_address.
  1582. (dump_data, dump_reloc_set): Likewise.
  1583. (main): Don't set seenflag for -l. Handle OPTION_START_ADDRESS
  1584. and OPTION_STOP_ADDRESS.
  1585. * objcopy.c (parse_vma): Move to bucomm.c.
  1586. * bucomm.c (parse_vma): New function, moved in from objcopy.c.
  1587. * bucomm.h (parse_vma): Declare.
  1588. * binutils.texi, objdump.1: Document new objdump options.
  1589. Tue Sep 12 12:37:39 1995 Ian Lance Taylor <ian@cygnus.com>
  1590. * Makefile.in (maintainer-clean): New target.
  1591. * ar.c (replace_members): Don't call write_archive if nothing
  1592. changed.
  1593. * objdump.c (disassemble_data): Add casts to avoid gcc warnings.
  1594. Thu Sep 7 12:12:17 1995 Ian Lance Taylor <ian@cygnus.com>
  1595. * config.in: Rename from config.h.in.
  1596. * configure.in: Call AC_CONFIG_HEADER with config.h:config.in.
  1597. Check for config.h:config.in when creating stamp-h.
  1598. * configure: Rebuild.
  1599. * Makefile.in (stamp-h): Depend upon config.in rather than
  1600. config.h.in. Set CONFIG_HEADERS to config.h:config.in when
  1601. calling config.status.
  1602. * Makefile.in (distclean): Remove config.h, stamp-h, and
  1603. config.log.
  1604. * nm.c (value_format): Initialize based on BFD64 and
  1605. BFD_HOST_64BIT_LONG.
  1606. (print_radix): New static variable.
  1607. (set_print_radix): Set print_radix. Adjust changes to
  1608. value_format.
  1609. (print_value): New static function, to print 64 bit octal and
  1610. decimal values correctly.
  1611. (print_symbol_info_bsd): Check BFD64, not BFD_HOST_64_BIT. Use
  1612. print_value.
  1613. (print_symbol_info_sysv): Use print_value.
  1614. (print_symbol_info_posix): Likewise.
  1615. Wed Sep 6 15:02:55 1995 Ian Lance Taylor <ian@cygnus.com>
  1616. * Makefile.in (*.o): Remove incorrect dependencies on
  1617. $(BFDDIR)/hosts/std-host.h.
  1618. * Makefile.in (INSTALL_DATA): Add -m 644.
  1619. (INSTALL_XFORM1): Likewise.
  1620. (CC_FOR_BUILD): Set to @CC_FOR_BUILD@ rather than $(CC).
  1621. (mostlyclean): Remove config.log.
  1622. (distclean): Remove config.cache.
  1623. * configure.in: Call BFD_CC_FOR_BUILD and BFD_BINARY_FOPEN.
  1624. * configure: Rebuild.
  1625. Tue Sep 5 20:22:42 1995 Ian Lance Taylor <ian@cygnus.com>
  1626. * configure.in: Rewrite to use autoconf.
  1627. * aclocal.m4: New file.
  1628. * configure: New file, built by autoconf.
  1629. * acconfig.h: New file.
  1630. * config.h.in: New file, built by autoheader.
  1631. * Makefile.in: Various changes for new configure script. Also:
  1632. (PROGS): Remove $(SYSINFO_PROG).
  1633. (ALL_CFLAGS): Remove $(TDEFINES).
  1634. (version.o): Use $(ALL_CFLAGS).
  1635. (cplus-dem.o, dlltool.o, nlmconv.o): Likewise.
  1636. (sysdump.o): Depend upon bucomm.h and config.h.
  1637. (srconv.o, arsup.o, strings.o): Depend upon config.h.
  1638. (filemode.o): Don't depend upon ../bfd/sysdep.h.
  1639. (bucomm.o): Depend upon config.h, not ../bfd/sysdep.h.
  1640. (size.o, objdump.o, nm.o, ar.o, objcopy.o): Likewise.
  1641. (nlmheader.o, nlmconv.o): Likewise.
  1642. (distclean): Don't remove sysdep.h.
  1643. * bucomm.h: Include "ansidecl.h", <stdio.h>, and "config.h".
  1644. Include "fopen-same.h" or "fopen-bin.h", based on
  1645. USE_BINARY_FOPEN. Include <errno.h>, and declare errno if it is
  1646. not a macro. Include <unistd.h>, <string.h>, <strings.h>,
  1647. <stdlib.h>, and <fcntl.h> if they are present. Declare strchr,
  1648. strrchr, and strstr if no string header file exists. Include
  1649. <sys/file.h> if it exists and <fcntl.h> does not. Define
  1650. O_RDONLY and O_RDWR if necessary.
  1651. * ar.c: Don't include "sysdep.h". Do include <sys/types.h> and
  1652. <sys/stat.h>. Use HAVE_GOOD_UTIME_H rather than POSIX_UTIME. Use
  1653. HAVE_UTIMES rather than !USE_UTIME. Don't include <errno.h>, and
  1654. don't declare errno.
  1655. * arsup.c: Don't include <sysdep.h>.
  1656. * bucomm.c: Don't include "sysdep.h". Include <stdio.h>,
  1657. <sys/types.h>, and <sys/stat.h>. Include <time.h> if it defines
  1658. time_t. Define time_t if necessary.
  1659. * coffdump.c: Don't include "sysdep.h".
  1660. * coffgrok.c, filemode.c, nlmconv.c, size.c: Likewise.
  1661. * srconv.c, strings.c: Likewise.
  1662. * nm.c: Don't include "sysdep.h". Don't try to define HAVE_SBRK.
  1663. * objcopy.c: Don't include "sysdep.h". Include <sys/types.h> and
  1664. <sys/stat.h>.
  1665. (simple_copy): Use creat rather than assuming that O_CREAT is
  1666. defined.
  1667. * objdump.c: Don't include "sysdep.h". Use
  1668. NEED_DECLARATION_PRINTF rather than !FPRINTF_ALREADY_DECLARED.
  1669. * sysdump.c: Include "bfd.h" and "bucomm.h". Don't include
  1670. "sysdep.h" or <stdlib.h>.
  1671. (dump_symbol_info): Rename from symbol_info. Change all callers.
  1672. Mon Sep 4 14:30:00 1995 Ian Lance Taylor <ian@cygnus.com>
  1673. * configure.in (host_makefile_frag): Don't set. Substitute for
  1674. @CC@, @CFLAGS@, @HDEFINES@ and @LDFLAGS@ in Makefile.
  1675. * Makefile.in (AR_FLAGS): Set to rc rather than qv.
  1676. (CC): Define as @CC@.
  1677. (CFLAGS): Set to @CFLAGS@.
  1678. (LDFLAGS): Define as @LDFLAGS@.
  1679. (ALL_CFLAGS): Use @HDEFINES@ rather than $(HDEFINES).
  1680. * configure.in: Don't bother to call config.bfd for each target.
  1681. Just call it for the default target, and use the shell variable to
  1682. decide whether underscores are used.
  1683. Thu Aug 31 19:21:48 1995 Jason Molenda (crash@phydeaux.cygnus.com)
  1684. * configure.in: match i[3-6]86-*-win32, not just i386-*-win32.
  1685. Thu Aug 31 16:30:22 1995 steve chamberlain <sac@slash.cygnus.com>
  1686. * dlltool.c (add_indirect): New.
  1687. (asm_prefix): New
  1688. (gen_exp_file): Timestamp should be 0. Insert prefix when
  1689. needed. New code for indirection.
  1690. (gen_lib_file): Timestamp should be 0. Insert prefix
  1691. when needed.
  1692. (usage): Document --add-indirect.
  1693. (main): Cope with new option.
  1694. * objdump.c (dump_private_headers): New.
  1695. (usage): Document new option.
  1696. (long_option): Add private-headers.
  1697. (dump_bfd_private_header): New.
  1698. (main): Cope with new option.
  1699. Thu Aug 31 04:09:16 1995 Doug Evans <dje@canuck.cygnus.com>
  1700. * dlltool.c (run): Add missing 3rd arg to waitpid.
  1701. Wed Aug 30 11:02:11 1995 steve chamberlain <sac@slash.cygnus.com>
  1702. * Makefile.in (TOOL_PROGS): Include dlltool if needed.
  1703. Tue Aug 29 13:25:21 1995 steve chamberlain <sac@slash.cygnus.com>
  1704. * dlltool.c (rva): Deleted.
  1705. (rvaafter, rva_before): Use new assembler pseudo.
  1706. (flush_page, gen_exp_file, gen_lib_file): Use new way of RVAing.
  1707. (gen_exp_file): Don't generate .edata if no need.
  1708. (gen_lib_file): Don't make timestamp.
  1709. Put _iname in idata$7.
  1710. (workout_prefix): Fix memory initialization bug.
  1711. (usage): Tidy up, delete many single char options.
  1712. (main): rva option is gone.
  1713. Mon Aug 21 18:41:28 1995 steve chamberlain <sac@slash.cygnus.com>
  1714. * dlltool.c (options): image-base is a synonym for rva.
  1715. (gen_lib_file): Put dll name into ibase$7.
  1716. Sun Aug 20 09:59:00 1995 steve chamberlain <sac@slash.cygnus.com>
  1717. Modified to generate archives and objects rather than .s files.
  1718. * dlltool.c (run) New function.
  1719. (gen_exp_file, gen_lib_file): Use run.
  1720. (workout_prefix): New.
  1721. (usage): Document new options.
  1722. (main): Parse new options.
  1723. Wed Aug 16 16:26:52 1995 steve chamberlain <sac@slash.cygnus.com>
  1724. * dlltool.c (gen_exp_file): Fix RVA handling.
  1725. (rva_s, rva_n): Delete.
  1726. Fri Aug 11 18:27:18 1995 Ian Lance Taylor <ian@cygnus.com>
  1727. * nm.c (main): Ignore -e.
  1728. Thu Aug 10 17:35:00 1995 Ken Raeburn <raeburn@cygnus.com>
  1729. * Makefile.in (config.texi): New target. Write out a setting for
  1730. texinfo variable VERSION.
  1731. (binutils.dvi, binutils.info): Depend on it.
  1732. * binutils.texi: Include it, and reference @value{VERSION} instead
  1733. of explicitly specifying 2.2(!).
  1734. Thu Aug 10 16:07:53 1995 Ian Lance Taylor <ian@cygnus.com>
  1735. * coffgrok.c (do_type): Handle array dimensions the same way gdb
  1736. does.
  1737. Tue Aug 8 17:10:42 1995 steve chamberlain <sac@slash.cygnus.com>
  1738. * dlltool.c (mtable): New fields.
  1739. (ASM_RVA_BEFORE, ASM_RVA_AFTER): New.
  1740. (flush_page): Use new macros.
  1741. Sat Aug 5 00:16:37 1995 Jeff Law (law@snake.cs.utah.edu)
  1742. * objcopy.c (mark_symbols_used_in_relocations): Handle sections
  1743. with no relocations.
  1744. * coffgrok.c (do_sections_p1): Likewise.
  1745. Mon Jul 31 12:51:06 1995 Ian Lance Taylor <ian@cygnus.com>
  1746. * strings.c (print_strings): For compatibility with existing
  1747. strings programs, print strings which are not terminated with a
  1748. null byte or a newline.
  1749. * binutils.texi, strings.1: Update documentation accordingly.
  1750. * ar.c (replace_members): For compatibility with existing ar
  1751. programs, permit users to add the same file multiple times.
  1752. Tue Jul 25 11:21:53 1995 Ian Lance Taylor <ian@cygnus.com>
  1753. * strings.c (DATA_FLAGS): Remove SEC_DATA.
  1754. (main): If no file names are given, scan standard input.
  1755. * binutils.texi, strings.1: strings now scans non-data sections by
  1756. default.
  1757. Mon Jul 24 13:52:28 1995 J.T. Conklin <jtc@rtl.cygnus.com>
  1758. * srconv.c (wr_hd): Set afl field to 4 for bfd_arch_sh.
  1759. (writeINT): When size == -2, use 2 bytes for the h8300 and 4 bytes
  1760. for the sh.
  1761. * sysdump.c (fillup): Return size - 1, the last byte is a checksum
  1762. and shouldn't be counted.
  1763. * sysroff.info (hd): Changed segment identifier from a byte to a 1
  1764. bit field. The sysroff 2.0-01 specification seems to be in error
  1765. here. Reduce width of following "spare" field from 4 to 3 bits.
  1766. (rl): Changed order and width of first 4 bitfields to correspond
  1767. to sysroff specification.
  1768. (dln_head, dln_inside, dln_tail): Removed.
  1769. Tue Jul 18 23:00:03 1995 Fred Fish <fnf@cygnus.com>
  1770. * nm.c (sort_symbols_by_size): Enclose expression being casted
  1771. in parens so result is casted, not just first operand. Can't
  1772. do pointer arithmetic on void* pointers.
  1773. Fri Jul 14 13:42:42 1995 J.T. Conklin <jtc@rtl.cygnus.com>
  1774. * sysdump.c (dh): Changed format of output to be 16 hex digits
  1775. followed by 16 ascii characters, similar to Emacs' hexl-mode,
  1776. to make it easier to read.
  1777. (xcalloc): fix typo.
  1778. Thu Jul 13 15:27:44 1995 J.T. Conklin <jtc@rtl.cygnus.com>
  1779. * srconv.c (wr_tr): Write out handcrafted tr block.
  1780. (walk_tree_symbol): Use evallen and evalue instead of
  1781. vallen & value because of corresponding changes in
  1782. sysroff.info.
  1783. * sysdump.c (sysroff_swap_tr_in, sysroff_print_tr_out): New
  1784. functions.
  1785. * sysroff.info (tr): the tr block is a special case --- a block
  1786. without contents --- which can't be handled by generated code.
  1787. (den, dpp): only first byte is present for DENend, DPPend.
  1788. (dsy): describe a conditional portion of block, rename some fields.
  1789. (dps): describe a conditional portion of block.
  1790. (dfl): removed.
  1791. * sysinfo.y (yyerror): write error message to standard error.
  1792. Thu Jul 13 10:43:59 1995 Ian Lance Taylor <ian@cygnus.com>
  1793. * Makefile.in (DISTSTUFF): Add arparse.h and sysinfo.h.
  1794. (mostlyclean): Remove y.output.
  1795. (clean): Remove sysroff, sysroff.c, sysroff.h, and sysinfo.
  1796. * nlmconv.c (powerpc_mangle_relocs): Cast memset arg to size_t.
  1797. * objcopy.c (copy_object): Likewise.
  1798. * nm.c (HAVE_SBRK): Define except on amigados and WINDOWS_NT.
  1799. (struct size_sym): Define.
  1800. (show_stats): New static variable.
  1801. (long_options): Add undocumented option "stats".
  1802. (main): Print memory stats if requested.
  1803. (sort_bfd, sort_dynamic, sort_x, sort_y): New static variables.
  1804. (numeric_forward): Use minisymbols rather than asymbols.
  1805. (non_numeric_forward): Likewise.
  1806. (size_forward1): Rename from size_forward. Use minisymbols.
  1807. (size_forward2): New static function.
  1808. (sort_symbols_by_size): Take new arguments dynamic, size, and
  1809. symsizep. Use minisymbols. Don't store the size back in the
  1810. symbol; store in a newly allocate struct size_sym array.
  1811. (display_rel_file): Read minisymbols rather than asymbols. Set
  1812. sort_* variables. Call print_size_symbols if sorting by size.
  1813. (filter_symbols): Take new arguments dynamic and size. Use
  1814. minisymbols.
  1815. (print_symbols): Likewise. Call print_symbol for actual printing.
  1816. (print_size_symbols): New static function.
  1817. (print_symbol): New static function.
  1818. Wed Jul 12 10:43:05 1995 Ian Lance Taylor <ian@cygnus.com>
  1819. * objdump.c (dump_section_stabs): Only print each stabs section
  1820. once.
  1821. (compare_relocs): Make it clear to gcc that this always returns a
  1822. value.
  1823. Wed Jul 12 10:40:23 1995 H.J. Lu <hjl@nynexst.com>
  1824. * objcopy.c (simple_copy): Preserve errno on failure.
  1825. (smart_rename): Print error mesage if simple_copy fails.
  1826. Tue Jul 11 13:10:52 1995 J.T. Conklin <jtc@rtl.cygnus.com>
  1827. * sysdump.c: re-indented file.
  1828. (module): read blocks sequentially instead of trying to parse
  1829. them, as that would require changing the parser recognize the
  1830. difference between a DPSstart and DPSend block.
  1831. (getone): Add break's between switch blocks as appropriate.
  1832. (object_body_list): parse blocks according to sysroff spec.
  1833. Mon Jul 10 12:37:25 1995 J.T. Conklin <jtc@poseidon.cygnus.com>
  1834. * sysroff.info: re-indented file, prior formatting was confusing
  1835. because it was indentation did not reflect nesting of conditional
  1836. records. Change "space size within segment" record in hd record
  1837. from bit to byte.
  1838. * sysinfo.y (cond_it_field): Use xcalloc instead of calloc.
  1839. * srconv.c (wr_cs): Reformatted cs header array, tag each byte
  1840. with a comment describing the field.
  1841. (wr_unit_info): Use SEEK_SET macro instead of constant 0.
  1842. (main): Use FOPEN_WB macro instead of literal "wb".
  1843. * sysroff.info: Remove fdl (dfl) field from cs block. Compare
  1844. ptr->type with ED_TYPE_CONST instead of constant 2 in ed block.
  1845. Tue Jul 4 14:48:42 1995 Ian Lance Taylor <ian@cygnus.com>
  1846. * nm.c (size_forward): Check yf against yn, not xn.
  1847. * objcopy.c (copy_archive): Record all output BFD's, and close
  1848. them before unlinking them and removing the temporary directory,
  1849. to avoid NFS problems.
  1850. * ar.c (replace_members): In verbose messages, use 'r' when
  1851. replacing a member, and 'a' when adding one.
  1852. * ar.c (ar_truncate): New static variable.
  1853. (normalize): Change return type to const char *. Add abfd
  1854. argument. Change all callers. If ar_truncate, chop the filename
  1855. to abfd->ar_max_namelen.
  1856. (main): For the 'f' modifier, set ar_truncate to true. Don't
  1857. change quick_append to replace if ar_truncate is true.
  1858. (do_quick_append): If ar_truncate, set BFD_TRADITIONAL_FORMAT.
  1859. (write_archive): Likewise.
  1860. * binutils.texi, ar.1: Document 'f' modifier.
  1861. * objcopy.c (enum strip_action): Define strip_unneeded.
  1862. (OPTION_STRIP_UNNEEDED): Define.
  1863. (strip_options): Add "strip-unneeded".
  1864. (copy_options): Likewise.
  1865. (copy_usage): Mention --strip-unneeded.
  1866. (strip_usage): Likewise.
  1867. (is_strip_section): Strip debugging sections if strip_unneeded.
  1868. (filter_symbols): If strip_unneeded, only keep BSF_KEEP symbols.
  1869. (copy_object): If strip_all, discard symbols without checking
  1870. discard_locals.
  1871. (copy_object): Call filter_symbols if strip_unneeded.
  1872. (setup_section): Strip debugging sections if strip_unneeded.
  1873. (copy_section): Likewise.
  1874. (strip_main): Handle OPTION_STRIP_UNNEEDED.
  1875. (copy_main): Likewise.
  1876. * binutils.texi, objcopy.1, strip.1: Document --strip-unneeded.
  1877. Mon Jul 3 14:16:47 1995 Steve Chamberlain <sac@slash.cygnus.com>
  1878. * configure.in (i386-*-win32): New configuration.
  1879. * dlltool.c (killat, xlate, usage, long_options, main):
  1880. Understand and cope with -k option.
  1881. Sat Jul 1 12:25:15 1995 Fred Fish <fnf@cygnus.com>
  1882. * ar.c: (extract_file): Change "#if POSIX_UTIME" to
  1883. "#ifdef POSIX_UTIME" to match other tests of POSIX_UTIME
  1884. and avoid lossage when POSIX_UTIME is not defined at all.
  1885. Wed Jun 28 17:51:24 1995 Steve Chamberlain <sac@slash.cygnus.com>
  1886. * ar.c: (print_contents.c, extract_file, do_quick_append):
  1887. Malloc buffers rather than allocate on stack (so it works
  1888. on NT).
  1889. * deflex.l: Names can have an @ in them.
  1890. * dlltool.c: Loads of stuff. Can now generate .imp files which
  1891. work with NT .dlls.
  1892. Thu Jun 22 19:10:50 1995 Stan Shebs <shebs@andros.cygnus.com>
  1893. * mpw-make.in (demangle.c.o): Remove.
  1894. (arparse.h): Depend on arparse.c instead of arparse.y.
  1895. Wed Jun 21 17:32:45 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
  1896. * Makefile.in (DISTSTUFF): Don't include info here.
  1897. (diststuff): Include it here.
  1898. (realclean): Remove *.info.
  1899. * objdump.c (compare_relocs): If relocation entries have the same
  1900. address, keep them in file order.
  1901. Mon Jun 19 09:06:49 1995 Steve Chamberlain <sac@slash.cygnus.com>
  1902. * dlltool.c: Change names of generated files. .*.s-> -*.s
  1903. * objdump.c (dump_section_stabs): Check for names
  1904. which are supersets of selected names.
  1905. Wed Jun 14 19:43:52 1995 Doug Evans <dje@canuck.cygnus.com>
  1906. * dlltool.c (mtable, ARM jump): Must redirect via pc offsetable ptr.
  1907. Wed Jun 14 13:27:22 1995 Steve Chamberlain <sac@slash.cygnus.com>
  1908. * deflex.l, defparse.y, dlltool.c: New files.
  1909. * Makefile.in, configure.in: Support for them.
  1910. Mon Jun 12 11:27:54 1995 Steve Chamberlain <sac@slash.cygnus.com>
  1911. * sysdump.c: Include sysdep.h
  1912. (main): Open input with FOPEN_RB.
  1913. Fri Jun 9 17:26:11 1995 Michael Meissner <meissner@tiktok.cygnus.com>
  1914. * objdump.c (wide_output): New flag variable.
  1915. (usage): Print new -w, --wide options.
  1916. (long_options): Add --wide support.
  1917. (dump_section_header): If --wide, don't print a newline between
  1918. the section's first line and the flags.
  1919. (objdump_print_address): Use unsigned comparisons for the binary
  1920. search, not signed.
  1921. (disassemble_data): If --wide, don't put a \n between the
  1922. disassembly output and relocation information.
  1923. (main): Support -w option being the same as --wide.
  1924. Thu Jun 1 17:09:27 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
  1925. Sat May 6 08:52:24 1995 H.J. Lu (hjl@nynexst.com)
  1926. * objcopy.c (smart_rename): make it smarter, clean up
  1927. if rename () fails.
  1928. Tue May 30 14:24:15 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
  1929. * Makefile.in: Delete lines with lots of #### because four or more
  1930. indicate a point for makefile fragment substitution.
  1931. Tue May 9 17:17:05 1995 Michael Meissner <meissner@tiktok.cygnus.com>
  1932. * configure.in: Don't build nlmconv on PowerPC eabi any more, it
  1933. is not needed.
  1934. Thu Apr 27 20:21:24 1995 Doug Evans <dje@canuck.cygnus.com>
  1935. * Makefile.in (EXPECT): Define.
  1936. (RUNTEST): Use one in source tree if present.
  1937. (check): Set `rootme' for $(EXPECT).
  1938. Wed Apr 26 18:26:21 1995 Steve Chamberlain <sac@slash.cygnus.com>
  1939. * srconv.c (main): Add support for -n option which disables
  1940. prescan of common symbols.
  1941. (wr_ob): If reading past the end of a section, fill with zeros.
  1942. Tue Apr 25 19:14:37 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
  1943. * objdump.c (dump_section_header): Display load address after
  1944. virtual memory (run-time) address.
  1945. Wed Apr 19 09:44:06 1995 Jason Merrill <jason@phydeaux.cygnus.com>
  1946. * Makefile.in (cplus-dem.o): Pass -DVERSION='"$(VERSION)"' to the
  1947. compile.
  1948. (DEMANGLER_PROG): No longer uses version.o.
  1949. Mon Apr 10 13:29:49 1995 Stan Shebs <shebs@andros.cygnus.com>
  1950. Merge in support for Mac MPW as a host.
  1951. (Old change descriptions retained for informational value.)
  1952. * mpw-config.in (TDEFINES): Define as empty in makefile frag.
  1953. * mpw-config.in: Create mk.tmp, define ARCHDEFS in it.
  1954. * mpw-config.in: New file, MPW configure fragment for binutils.
  1955. * mpw-make.in (install-only): New target.
  1956. (install): Also depend on install-only.
  1957. * mpw-make.in (cplusfilt): Renamed from c++filt.
  1958. (INCLUDES): Add more paths.
  1959. * mpw-make.in: New file, MPW makefile fragment for binutils.
  1960. (Normally automatically generated from Makefile.in.)
  1961. Mon Mar 27 11:52:57 1995 Ian Lance Taylor <ian@cygnus.com>
  1962. * ar.c (write_archive): Call make_tempname to get output file
  1963. name, rather than using a fixed name based on the input file.
  1964. * objcopy.c (make_tempname): Copy from here...
  1965. * bucomm.c (make_tempname): ...to here, and make global.
  1966. * bucomm.h (make_tempname): Declare.
  1967. Fri Mar 24 11:47:42 1995 Ian Lance Taylor <ian@cygnus.com>
  1968. * strings.c: Include "bfd.h" before other headers. Include
  1969. "sysdep.h".
  1970. * bucomm.c (print_arelt_descr): Cast st_uid and st_gid to long,
  1971. and print them with %ld.
  1972. Fri Mar 10 13:09:42 1995 Ian Lance Taylor <ian@cygnus.com>
  1973. * objcopy.c (strip_options): Add --keep-symbol.
  1974. (copy_options): Likewise.
  1975. (copy_usage): Mention --keep-symbol and -K.
  1976. (strip_usage): Likewise.
  1977. (keep_symbols): New static variable.
  1978. (is_strip_symbol): Adjust the return value according to
  1979. keep_symbols.
  1980. (strip_main): Handle -K. For -N, check that -K was not given.
  1981. (copy_main): Likewise.
  1982. * binutils.texi, objcopy.1, strip.1: Document -K.
  1983. Mon Mar 6 13:33:47 1995 Stan Shebs <shebs@andros.cygnus.com>
  1984. * objcopy.c (copy_archive): Check result of mkdir.
  1985. (copy_main): Cast an xmalloc result.
  1986. * objdump.c (usage): Break long format string into shorter ones.
  1987. Mon Mar 6 13:46:12 1995 Ian Lance Taylor <ian@cygnus.com>
  1988. * bucomm.c (list_supported_targets): New function.
  1989. * bucomm.h (list_supported_targets): Declare.
  1990. * ar.c (usage): Call list_supported_targets.
  1991. * nm.c (usage): Likewise.
  1992. * objcopy.c (copy_usage, strip_usage): Likewise.
  1993. * objdump.c (usage): Likewise.
  1994. * size.c (usage): Likewise.
  1995. * strings.c (usage): Likewise.
  1996. Tue Feb 28 15:13:58 1995 Ian Lance Taylor <ian@cygnus.com>
  1997. * bucomm.c (print_arelt_descr): Cast st_size to long before
  1998. passing it to fprintf.
  1999. Fri Feb 17 13:36:45 1995 Ian Lance Taylor <ian@cygnus.com>
  2000. * objcopy.c (struct section_list): Add fields remove, set_flags,
  2001. and flags. Change adjust from boolean to enum.
  2002. (remove_sections): Remove static variable.
  2003. (sections_removed): New static variable.
  2004. (copy_options): Add --set-section-flags.
  2005. (copy_usage): Mention --set-section-flags.
  2006. (parse_flags): New static function.
  2007. (find_section_list): New static function.
  2008. (is_strip_symbol): Change return type from int to boolean.
  2009. (is_strip_section): New static function.
  2010. (filter_symbols): Call is_strip_section.
  2011. (copy_object): When adding sections, check for specified flags or
  2012. VMA. Call filter_symbols if any sections are being removed.
  2013. (setup_section): Use find_section_list function rather than
  2014. looking through remove_sections and adjust_sections. Handle
  2015. --set-section-flags.
  2016. (copy_section): Use find_section_list rather than looking through
  2017. remove_sections.
  2018. (strip_main): Use find_section_list instead of adding items to
  2019. sections_removed.
  2020. (copy_main): Use find_section_list instead of adding items to
  2021. sections_removed and adjust_sections. Handle --set-section-flags.
  2022. * binutils.texi, objcopy.1: Document --set-section-flags.
  2023. Tue Feb 14 18:03:03 1995 Ian Lance Taylor <ian@cygnus.com>
  2024. * objdump.c (with_source_code): New global variable.
  2025. (usage): Mention -S/--source.
  2026. (long_options): Add --source.
  2027. (prev_functionname, prev_line): New static variables.
  2028. (struct print_file_list): Define.
  2029. (print_files): New static variable.
  2030. (skip_to_line, show_line): New static functions.
  2031. (disassemble_data): Call show_line to handle -l and -S.
  2032. (main): Handle -S.
  2033. * binutils.texi, objdump.1: Document -S/--source.
  2034. Thu Feb 9 16:11:53 1995 Ian Lance Taylor <ian@cygnus.com>
  2035. * objcopy.c (copy_usage): Rename parameter to avoid shadowing.
  2036. (strip_usage): Likewise.
  2037. * objcopy.c (struct section_add): Define.
  2038. (add_sections): New static variable.
  2039. (copy_options): Accept --add-section.
  2040. (copy_usage): Mention --add-section.
  2041. (copy_object): Add sections from the add_sections list.
  2042. (copy_main): Handle --add-section.
  2043. * binutils.texi, objcopy.1: Document --add-section.
  2044. Wed Feb 1 15:04:57 1995 Ken Raeburn <raeburn@cujo.cygnus.com>
  2045. * objdump.c (disassemble_data): Pass section offset, not absolute
  2046. address, to bfd_find_nearest_line.
  2047. * nlmconv.c (powerpc_mangle_relocs): Don't use const with
  2048. reloc_howto_type.
  2049. Thu Jan 26 18:50:06 1995 Ian Lance Taylor <ian@cygnus.com>
  2050. * objdump.c (compare_symbols): Use bfd_asymbol_value (VAR) rather
  2051. than VAR->value.
  2052. (objdump_print_address): Likewise.
  2053. (disassemble_data): Don't change the symbol values. It can
  2054. confuse bfd_canonicalize_reloc.
  2055. Thu Jan 26 12:03:56 1995 Michael Meissner <meissner@tiktok.cygnus.com>
  2056. * configure.in: Add support for powerpc-*-ebai.
  2057. Wed Jan 18 10:02:12 1995 Steve Chamberlain <sac@splat>
  2058. * coffdump.c: Include sysdep.h.
  2059. (dump_coff_type): Handle coff_secdef_type.
  2060. * coffgrok.c : Include sysdep.h.
  2061. * srconv.c: Include libiberty.h
  2062. (absolute_p, dty_start, dty_end, dump_tree_structure): Remove.
  2063. Wed Jan 18 12:24:14 1995 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2064. * coffdump.c (dump_coff_scope): Cast pointer to unsigned long for
  2065. printf.
  2066. * coffgrok.c: Include bucomm.h. Don't declare xmalloc.
  2067. (push_scope): Declare type of parameter link.
  2068. * size.c: Include libiberty.h.
  2069. * srconv.c: Include bucomm.h.
  2070. (find_base): Declare at top of file.
  2071. (wr_hd): Add default case to architecture switch.
  2072. (wr_dps_start): Declare type of parameter nest.
  2073. (wr_du): Comment out variables used only in commented out blocks.
  2074. (wr_dus): Remove unused variable i.
  2075. (wr_sc): Remove unused variables myinfo, low, and high.
  2076. * strings.c: Include libiberty.h.
  2077. * sysdump.c: Include <ctype.h>.
  2078. Tue Dec 20 19:13:44 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2079. * ar.c (main): Ignore 'f' modifier used on HP/UX 9.
  2080. Thu Dec 15 17:34:12 1994 Stan Shebs <shebs@andros.cygnus.com>
  2081. * ar.c, nm.c, objcopy.c, objdump.c: Include progress.h.
  2082. * ar.c, nm.c, objcopy.c, objdump.c (main): Add START_PROGRESS
  2083. and END_PROGRESS.
  2084. * ar.c (map_over_members, open_inarch): Call PROGRESS.
  2085. * nm.c (main, display_archive, filter_symbols, print_symbols):
  2086. Call PROGRESS.
  2087. * objcopy.c (copy_usage): Break up long usage string.
  2088. Wed Dec 14 15:51:56 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
  2089. * objcopy.c (copy_object): Don't bother setting status after
  2090. nonfatal() "call", because it won't return.
  2091. Fri Dec 9 00:22:54 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2092. * nlmconv.c (powerpc_mangle_relocs): Don't switch a reloc to use
  2093. the section symbol if the symbol is undefined.
  2094. Thu Dec 8 14:45:50 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
  2095. * objcopy.c (add_strip_symbol): Cast return value of xmalloc.
  2096. Wed Nov 30 11:05:43 1994 Ian Lance Taylor <ian@rtl.cygnus.com>
  2097. * ar.c (replace_members): Pass current->filename to normalize when
  2098. checking for duplicates, because the filename of a newly added
  2099. file will not have been normalized yet.
  2100. Thu Nov 17 15:00:13 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2101. * ar.c (main): Don't call do_quick_append if any of the archive
  2102. names are longer than 14 characters.
  2103. * objcopy.c (main): Fix is_strip test. From
  2104. pirker@eiunix.tuwien.ac.at (Martin Pirker).
  2105. Thu Nov 17 15:37:19 1994 Mark W. Eichin <eichin@cygnus.com>
  2106. * objcopy.c (add_strip_symbol): New function, adds a name to an
  2107. explicit list of symbols to strip.
  2108. (is_strip_symbol): New function, reports whether the name argument
  2109. is in the explicit list.
  2110. (filter_symbols): Check against is_strip_symbol above all.
  2111. (strip_main): Recognize -N option. If used, don't default to
  2112. strip_all.
  2113. (copy_main): Recognize -N option.
  2114. (strip_usage): Document -N and --strip-symbol options.
  2115. (copy_usage): Ditto.
  2116. * objcopy.1, strip.1, binutils.texi: Document -N and
  2117. --strip-symbol options.
  2118. Tue Nov 8 13:12:54 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2119. * objdump.c (display_target_list, display_info_table): Pass an
  2120. array to tmparg, rather than NULL, since some systems can't handle
  2121. NULL.
  2122. * objcopy.c (copy_archive): Keep a list of the names of the
  2123. temporary files we created. Close each input BFD after we open
  2124. its successor.
  2125. Mon Nov 7 15:48:39 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
  2126. * Makefile.in (VERSION): Bump to 2.5.3.
  2127. Thu Nov 3 19:04:34 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
  2128. * Makefile.in (install-info): Install info files from whatever
  2129. directory they were found in.
  2130. Patch from DJ Delorie:
  2131. * configure.bat: do c++filt -> cxxfilt right
  2132. * sysinfo.y: Include system header files early, so any potential
  2133. declaration of abort() occurs before its use.
  2134. * strings.c (strings_file): Try opening the file in binary mode
  2135. first.
  2136. Wed Nov 2 15:44:13 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2137. * ar.c (main): Treat ar qs like ar rs.
  2138. Tue Oct 25 16:19:25 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2139. * objcopy.c (gap_fill): Explicitly initialize, for clarity.
  2140. (pad_to_set, pad_to): New static variables.
  2141. (copy_options): Accept --pad-to.
  2142. (copy_usage): Mention --pad-to.
  2143. (copy_object): Support --pad-to.
  2144. (compare_section_vma): Sort non loadable sections to the front.
  2145. Sort sections with the same VMA by size.
  2146. (copy_main): Handle --pad-to.
  2147. * binutils.texi, objcopy.1: Document --pad-to.
  2148. Thu Oct 20 13:51:31 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2149. * objcopy.c (gap_fill_set, gap_fill): New static variables.
  2150. (copy_options): Accept --gap-fill.
  2151. (copy_usage): Mention --gap-fill.
  2152. (copy_object): Support --gap-fill.
  2153. (get_sections, compare_section_vma): New static functions.
  2154. (copy_main): Handle --gap-fill.
  2155. * binutils.texi, objcopy.1: Document --gap-fill.
  2156. Wed Oct 19 14:09:16 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2157. * Makefile.in (check): Add a dummy else clause to the if
  2158. statement.
  2159. * objcopy.c (copy_object): Revert yesterday's change.
  2160. * binutils.texi, objcopy.1: Remove special mention of --set-start
  2161. and `binary' output format.
  2162. Tue Oct 18 11:12:01 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2163. * objcopy.c (copy_object): If the output file format is `binary',
  2164. and the start address was not set using --set-start, default the
  2165. start address to zero. This hack is because the `binary' output
  2166. file format uses the start address to set the virtual address of
  2167. the first byte in the file.
  2168. * binutils.texi, objcopy.1: Add some notes on generating S-records
  2169. and binary files.
  2170. * nm.c (print_symdef_entry): Call print_symname to print the
  2171. symbol name, so that --demangle works.
  2172. * Makefile.in (mostlyclean): Remove tmpdir.
  2173. * objcopy.c (struct section_list): Add fields used, adjust, val.
  2174. (adjust_start, set_start_set, set_start): New static variables.
  2175. (adjust_section_vma, adjust_sections): New static variables.
  2176. (copy_options): Add --adjust-start, --adjust-vma,
  2177. --adjust-section-vma, --adjust-warnings, --no-adjust-warnings,
  2178. --set-start.
  2179. (parse_vma): New static function.
  2180. (copy_usage): Mention new options.
  2181. (copy_object): Handle --set-start and --adjust-start.
  2182. (setup_section): Correct type of last argument to PTR. Set used
  2183. field if section is removed. Handle --adjust-vma and
  2184. --adjust-section-vma.
  2185. (copy_section): Correct type of last argument to PTR.
  2186. (mark_symbols_used_in_relocations): Likewise.
  2187. (strip_main): Clear used field when handling -R.
  2188. (copy_main): Handle new options.
  2189. * binutils.texi (objcopy): Document new options.
  2190. * objcopy.1: Document new options.
  2191. Fri Oct 14 14:38:13 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2192. * configure.in (configdirs): Remove definition--testsuite is no
  2193. longer configured.
  2194. * Makefile.in (testsuite): Remove target.
  2195. (site.exp): New target.
  2196. (check): Rewrite.
  2197. (clean, distclean): Don't recur into testsuite directory.
  2198. Thu Oct 13 19:24:09 1994 Ken Raeburn <raeburn@cujo.cygnus.com>
  2199. * Makefile.in (VERSION): Updated to 2.5.
  2200. * Version 2.5 released.
  2201. Tue Oct 11 15:26:42 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2202. * Makefile.in (sysdump.o): Depends upon sysroff.c.
  2203. Mon Oct 10 13:50:30 1994 J.T. Conklin (jtc@rtl.cygnus.com)
  2204. * nlmconv.c (link_inputs): Pass -Ur flag to ld so that the
  2205. ctor/dtor tables needed by C++ programs are built.
  2206. Sun Oct 9 18:04:00 1994 Jim Wilson (wilson@sphagnum.cygnus.com)
  2207. * Makefile.in (srconv.o): Add dependence on sysroff.c.
  2208. Tue Oct 4 12:19:51 1994 Ian Lance Taylor <ian@sanguine.cygnus.com>
  2209. * configure.in: Use ${config_shell} when running config.bfd.
  2210. * Makefile.in (sysroff.h): Split target away from sysroff.c.
  2211. (srconv.o, sysdump.o): New targets.
  2212. (srconv, sysdump): Don't depend upon sysroff.c.
  2213. Wed Sep 28 13:04:34 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2214. * Makefile.in (arparse.c): Don't ignore errors from mv.
  2215. (sysinfo.c): Likewise. Also, depend upon arparse.c, to prevent a
  2216. parallel make from trying to build both arparse.c and sysinfo.c
  2217. simultaneously.
  2218. (nlmheader.c): Similar change.
  2219. (arparse.h): Separate target from arparse.c, so that a parallel
  2220. make does not try to build both at once. Depend upon arparse.c.
  2221. (sysinfo.h): Similar change.
  2222. * objdump.c (disassemble_data): Pass the reloc buffer to free, not
  2223. the pointer used to loop over the relocs.
  2224. Sat Sep 24 16:16:57 1994 Stan Shebs (shebs@andros.cygnus.com)
  2225. * objdump.c (disassemble_data): Cast result of xmalloc.
  2226. Wed Sep 21 19:30:35 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2227. * objdump.c (sorted_syms, sorted_symcount): New global variables.
  2228. (objdump_print_address): Use sorted_syms and sorted_symcount
  2229. instead of syms and symcount.
  2230. (disassemble_data): Don't bother to get the relocs before looping
  2231. over the sections. Before filtering and sorting the symbol table,
  2232. copy it into sorted_syms.
  2233. Fri Sep 16 11:27:39 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2234. * objdump.c (struct objdump_disasm_info): Add field require_sec.
  2235. (objdump_print_address): If aux->require_sec, require that the
  2236. symbol be in aux->sec even if HAS_RELOC is not set. If we can't
  2237. find a smaller symbol in the right section, look for a larger one.
  2238. (disassemble_data): Set aux.require_sec around the
  2239. objdump_print_address call for the instruction address.
  2240. Thu Sep 15 21:43:17 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2241. * ar.c: Call xexit rather than exit.
  2242. (output_filename, output_file, output_bfd): New static variables.
  2243. (remove_output): New static function.
  2244. (main): Call xatexit (remove_output). Call xexit rather than
  2245. returning.
  2246. (extract_file): Set output_filename and output_file while output
  2247. file is open.
  2248. (write_archive): Likewise, but use output_bfd, not output_file.
  2249. * arsup.c: Include libiberty.h. Call xexit rather than exit.
  2250. * bucomm.c: Likewise.
  2251. * objdump.c (disassemble_all): New global variable.
  2252. (usage): Document --disassemble-all.
  2253. (long_options): Add disassemble-all as a synonym for -D.
  2254. (compare_symbols): Make pointers const.
  2255. (compare_relocs): New static function.
  2256. (disassemble_data): Rename disassemble to disassemble_fn to avoid
  2257. shadowing. If dump_reloc_info, print relocs along with
  2258. disassembly. Skip sections which are not SEC_CODE unless
  2259. disassemble_all or only is set.
  2260. (display_bfd): Don't call dump_relocs if disassemble is set.
  2261. (main): Accept and handle -D.
  2262. * binutils.texi: Document -D/--disassemble-all.
  2263. * objdump.1: Likewise.
  2264. Wed Sep 14 12:19:07 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2265. * objdump.c (disassemble_data): Initialize prevline to 0. Make
  2266. prev_function non const. Copy functionname into an malloc buffer
  2267. when setting prev_function, instead of assuming that the string
  2268. will last forever.
  2269. * nm.c: Include libiberty.h.
  2270. (sort_by_size): New static variable.
  2271. (long_options): Add --size-sort.
  2272. (usage): Mention --size-sort.
  2273. (numeric_forward): Make static. Change from void * to PTR.
  2274. (numeric_reverse): Likewise.
  2275. (non_numeric_forward, non_numeric_reverse): Likewise.
  2276. (sorters): Change declaration from void * to PTR.
  2277. (size_forward, sort_symbol_by_size): New static functions.
  2278. (display_rel_file): Handle sort_by_size.
  2279. (filter_symbols): If sort_by_size, discard absolute and undefined
  2280. symbols.
  2281. * binutils.texi (nm): Document --size-sort.
  2282. * nm.1: Document --size-sort.
  2283. Tue Sep 13 21:06:06 1994 Jeff Law (law@snake.cs.utah.edu)
  2284. * objcopy.c (copy_main): Initialize input_filename and
  2285. output_filename to NULL.
  2286. Tue Sep 13 14:17:24 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2287. * Makefile.in (version.o): Depend upon Makefile, so that version.o
  2288. gets rebuilt when make variable VERSION is changed.
  2289. * objdump.c (dump_section_header): Print the SEC_NEVER_LOAD flag.
  2290. Wed Aug 24 12:40:09 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2291. * configure.in: Change i[34]86 to i[345]86.
  2292. Tue Aug 23 11:00:40 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2293. * ar.c (ranlib_touch): Don't update the archive map if there isn't
  2294. one.
  2295. Mon Aug 22 16:02:18 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2296. * ar.c: Include libiberty.h.
  2297. (inarch): Remove variable.
  2298. (map_over_members): Make static. Add arch argument, and use it
  2299. instead of inarch. Change all callers.
  2300. (main): Treat --version as -v. Accept -t argument. Accept any
  2301. number of archive arguments. Catch and use open_inarch return
  2302. value, rather than using inarch.
  2303. (open_inarch): Return newly opened BFD, rather than using inarch.
  2304. (do_quick_append): Make archive_filename const.
  2305. (write_archive): Add iarch argument, and use it instead of inarch.
  2306. Change all callers.
  2307. (delete_members, move_members, replace_members): Likewise.
  2308. (ranlib_only): Don't exit on success. Catch and use open_inarch
  2309. return value.
  2310. (ranlib_touch): New function.
  2311. * arsup.h (map_over_members): Don't declare.
  2312. (ar_end, ar_extract): Declare.
  2313. (open_inarch): Change return value in declaration to bfd *.
  2314. * arsup.c (map_over_list): Make static. Always pass two arguments
  2315. to function. Add arch argument, and use it instead of inarch.
  2316. Change all callers.
  2317. (ar_directory_doer): Make static. Add ignored second argument.
  2318. Change all callers.
  2319. (ar_directory): Use open_inarch return value rather than inarch.
  2320. (ar_addlib_doer): Make static.
  2321. (ar_addlib): Use open_inarch return value rather than inarch.
  2322. (ar_extract): Remove unused local variable abfd.
  2323. Thu Aug 11 14:55:57 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2324. Add support for removing named sections to objcopy and strip.
  2325. * objcopy.c (struct section_list): Define.
  2326. (remove_sections): New static variable.
  2327. (strip_options, copy_options): Add remove-section.
  2328. (copy_usage, strip_usage): Mention -R and --remove-section.
  2329. (setup_section): If section is in remove_sections list, ignore it.
  2330. (copy_section): Likewise.
  2331. (strip_main, copy_main): Handle -R.
  2332. * binutils.texi, objcopy.1, strip.1: Document new options.
  2333. Wed Aug 10 10:19:55 1994 Stan Shebs (shebs@andros.cygnus.com)
  2334. * nlmconv.c (powerpc_mangle_relocs): Rename symvalue to sym_value,
  2335. so as not to conflict with the symvalue typedef in bfd.h.
  2336. Mon Aug 1 13:19:09 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2337. * nlmheader.y: Per current NetWare docs, accept a revision number
  2338. of 0 and treat a revision number greater than 26 as 0.
  2339. Mon Jul 25 12:58:36 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2340. * objdump.c (objdump_print_address): Correct handling of end of
  2341. symbols when looking for next symbol with a different value.
  2342. Fri Jul 22 16:48:34 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
  2343. * nm.c (numeric_forward): Treat undefined symbols as "less than"
  2344. defined symbols with zero values. If numeric values are equal, or
  2345. both symbols are undefined, sort alphabetically. Don't assume
  2346. that the difference of two bfd_vma values will truncate to "int"
  2347. and still have the same sign.
  2348. (numeric_reverse): Call numeric_forward and negate the result.
  2349. (print_symbol_info_bsd): For undefined symbols, print leading
  2350. spaces equivalent to the width of a printed bfd_vma, rather than
  2351. assuming that 8 will look right.
  2352. Fri Jul 22 10:36:50 1994 Steve Chamberlain (sac@jonny.cygnus.com)
  2353. * coffgrok.c (doit): Zero all fields of new structure.
  2354. * srconv.c (sysroff_swap_*_out): Remove redundant trailing arg.
  2355. * sysinfo.y: Generate sysroff_swap_*_out without requiring extra
  2356. arg.
  2357. Fri Jul 22 10:09:53 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
  2358. * nlmheader.y: Make "stack" and "stacksize" synonyms in the lexer
  2359. rather than the parser.
  2360. Thu Jul 21 10:25:09 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2361. * config/mh-alphaosf, config/mh-apollo68v, config/mh-delta88:
  2362. Remove; obsolete.
  2363. Sat Jul 16 22:34:39 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2364. * objdump.c (slurp_dynamic_symtab): Try to get the dynamic symbols
  2365. even if the bfd is not marked DYNAMIC. ELF executables are not
  2366. marked DYNAMIC, but do have dynamic symbols.
  2367. Fri Jul 15 01:41:35 1994 Steve Chamberlain (sac@jonny.cygnus.com)
  2368. * coffgrok.c (do_where): Make data with no type 'int'.
  2369. (do_define): Keep info on source file of a symbol.
  2370. * coffgrok.h (coff_symbol): New field.
  2371. * srconv.c (PROGRAM_VERSION): Now 1.3
  2372. (wr_rl): Use external ref number for symbol.
  2373. (wr_dus): Only keep one source file per debug unit.
  2374. (wr_dln): Always emit line numbers for first source file,
  2375. (wr_globals): Emit globals in the du of their owning source file.
  2376. Mon Jul 11 15:59:03 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
  2377. * nlmheader.y: Null terminate var_hdr->threadName.
  2378. Fri Jul 8 17:33:22 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
  2379. * Makefile.in (syslex.o, sysinfo.o): Permit C source files to be
  2380. in $(srcdir), as they will be for FSF releases.
  2381. Wed Jul 6 01:13:14 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2382. * nlmconv.c (setup_sections): Preserve existing section flags when
  2383. copying in flags from a new section.
  2384. Tue Jul 5 15:56:01 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2385. * objcopy.c: Include libiberty.h.
  2386. (copy_file): If output_target is NULL, set it to the target of the
  2387. input file.
  2388. Wed Jun 29 17:17:14 1994 J.T. Conklin (jtc@phishhead.cygnus.com)
  2389. * nlmconv.c (link_inputs): Fixed memory allocation bug.
  2390. Thu Jun 23 12:52:46 1994 David J. Mackenzie (djm@rtl.cygnus.com)
  2391. * configure.in: Change --with-targets to --enable-targets.
  2392. Tue Jun 21 12:53:21 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2393. * Makefile.in (sysinfo): Does not depend upon $(ADDL_LIBS).
  2394. * nlmconv.c (powerpc_build_stubs): Don't generate the PowerPC
  2395. NetWare custom header; no longer needed.
  2396. (powerpc_mangle_relocs): Convert relocs against the uninitialized
  2397. data section into relocs against the data section.
  2398. * configure.in: Set nlmconv_defs to -DNLMCONV_cputype for all the
  2399. netware targets. Write it into Makefile as NLMCONV_DEFS.
  2400. * Makefile.in (nlmconv.o): Pass $(NLMCONV_DEFS) to $(CC).
  2401. * nlmconv.c: Only compile code for specific CPU types if
  2402. NLMCONV_cputype is defined.
  2403. * nlmconv.c (main): Change uses of bfd_abs_section, etc., to use
  2404. bfd_abs_section_ptr or bfd_is_abs_section, etc.
  2405. (i386_mangle_relocs, alpha_mangle_relocs): Likewise.
  2406. (powerpc_build_stubs): Likewise.
  2407. * nm.c (filter_symbols, print_symbols): Likewise.
  2408. * objcopy.c (filter_symbols): Likewise.
  2409. (mark_symbols_used_in_relocations): Likewise.
  2410. * objdump.c (remove_useless_symbols, dump_relocs): Likewise.
  2411. * size.c (sysv_internal_printer): Likewise.
  2412. Mon Jun 20 16:43:03 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
  2413. * Makefile.in (MANPAGES): Remove $(DEMANGLER_PROG).
  2414. (install): Install it explicitly, from build dir, not srcdir.
  2415. Mon Jun 20 16:29:54 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
  2416. * objdump.c: Don't include elf/internal.h.
  2417. (bfd_elf_find_section): Don't declare.
  2418. (read_section_stabs): No special handling for ELF. Always read
  2419. using BFD sections.
  2420. Thu Jun 16 17:25:20 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2421. * configure.in: Set UNDERSCORE in Makefile based on result of
  2422. invoking config.bfd with a second argument of ``_''.
  2423. * Makefile.in (underscore.c): Depend upon Makefile. Don't try to
  2424. run $(CC) and $(NM), just use $(UNDERSCORE). Create via temporary
  2425. file.
  2426. (demangle.o): Remove target.
  2427. ($(NM_PROG)): Don't depend upon demangle.o, and don't link against
  2428. demangle.o. It's in libiberty anyhow.
  2429. (cplus-dem.o): Don't depend upon demangle.o.
  2430. * binutils.texi: Mention -n and --no-strip-underscores arguments
  2431. to c++filt.
  2432. Wed Jun 15 12:10:31 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2433. * nm.c (long_options): Add --no-demangle to turn off --demangle,
  2434. and --no-cplus for Linux compatibility.
  2435. (usage): Mention --no-demangle.
  2436. * binutils.texi: Document --no-demangle.
  2437. Fri Jun 10 15:41:25 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2438. * nm.c: HOST_64_BIT was renamed to BFD_HOST_64_BIT.
  2439. * objcopy.c (copy_archive): Make the temporary directory in the
  2440. same directory as the output BFD, since we may not have write
  2441. permission on the current directory. Set the permissions of the
  2442. new directory to 0700, not 0777.
  2443. Mon Jun 6 21:36:43 1994 D. V. Henkel-Wallace (gumby@cygnus.com)
  2444. * configure.in: if this is an rs6000 (and we're not building for
  2445. any other bfd targets) then build only nm (collect needs it on
  2446. rs6000-lynx).
  2447. * Makefile.in: define TOOL_PROGS which the list of programes to
  2448. install in $tooldir -- replaces a hard-coded list.
  2449. Fri Jun 3 10:59:18 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2450. * objdump.c (display_target_list): Remove unused local ok.
  2451. Thu May 26 18:05:52 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
  2452. * config/mh-alphaosf (CFLAGS): Don't specify both -g and -O;
  2453. they're not compatible under native cc. Use -O1 instead.
  2454. * Makefile.in (VERSION): Updated to cygnus-2.4.1.
  2455. Changes from binutils-2.4 net release:
  2456. * Makefile.in (MANPAGES): Use $(DEMANGLER_PROG).
  2457. ($(DEMANGLER_PROG).1): Build from cxxfilt.man, using sed.
  2458. * cxxfilt.man: Renamed from c++filt.1, replaced "c++filt" with
  2459. magic token to be replaced by sed.
  2460. Wed May 11 22:32:00 1994 DJ Delorie (dj@ctron.com)
  2461. * configure.bat: update for latest makefile.in
  2462. Fri May 13 23:25:13 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2463. * bucomm.c: Check ANSI_PROTOTYPES rather than __STDC__.
  2464. Tue May 10 18:22:06 1994 Jason Molenda (crash@sendai.cygnus.com)
  2465. * objcopy.c (copy_section): Set section size correctly if using
  2466. interleave.
  2467. Sat May 7 16:49:36 1994 Steve Chamberlain (sac@cygnus.com)
  2468. * Makefile.in: Add rule for sysinfo.h
  2469. Fri May 6 12:18:33 1994 Steve Chamberlain (sac@cygnus.com)
  2470. * Makefile.in (SRCONV_PROG): Define.
  2471. (PROGS): Use $(SRCONV_PROG) too.
  2472. Thu May 5 19:41:43 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
  2473. * Makefile.in (DISTSTUFF): Add sysinfo.c, syslex.c, in case
  2474. someone configures with `targets=all'.
  2475. (distclean): Remove y.*.
  2476. (syslex.o): Depend on sysinfo.h.
  2477. (sysinfo.c): Rename y.tab.h to sysinfo.h.
  2478. (install-info): Don't try to install into $(infodir)/$(srcdir).
  2479. * syslex.l: Include sysinfo.h, not y.tab.h.
  2480. Thu May 5 11:50:55 1994 Ken Raeburn (raeburn@kr-pc.cygnus.com)
  2481. * syslex.l (yywrap): Define as function if not defined as a macro.
  2482. * Makefile.in (objdump.o): Deleted special rule.
  2483. * configure.in: Don't bother building ARCHDEFS variable for
  2484. Makefile.
  2485. * objdump.c (ARCH_*): Deleted handling.
  2486. (disassemble_data): Call `disassembler' from opcodes library.
  2487. Thu May 5 13:28:42 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2488. * Makefile.in (install): Correct handling of $(tooldir) and
  2489. $(bindir) being on different devices.
  2490. Fri Apr 29 09:50:38 1994 Steve Chamberlain (sac@cygnus.com)
  2491. * sysdump.c (h8300, sh): Add declarations.
  2492. Wed Apr 27 11:25:18 1994 Steve Chamberlain (sac@cygnus.com)
  2493. * Makefile.in (syslex, sysinfo): Use CC_FOR_BUILD.
  2494. * coffdump.c, coffgrok.c, coffgrok.h, srconv.c, sysdump.c,
  2495. sysroff.info: Major changes.
  2496. Tue Apr 26 18:18:24 1994 Stan Shebs (shebs@andros.cygnus.com)
  2497. * objdump.c (print_section_stabs): Indicate the stab header symbol
  2498. more clearly, print numbers of unrecognized stab n_type values.
  2499. Tue Apr 26 16:22:55 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2500. * nlmconv.c (copy_sections): Copy arelent pointers, not arelents.
  2501. Mon Apr 25 16:14:32 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2502. * Makefile.in (distclean): Remove $(PROGS) and underscore.c.
  2503. Fri Apr 22 11:14:19 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2504. * nlmconv.c (setup_sections): Remove special handling of .reginfo
  2505. section.
  2506. (copy_sections): Likewise.
  2507. (alpha_mangle_relocs): Use bfd_ecoff_get_gp_value rather than the
  2508. special ECOFF .reginfo section.
  2509. * objcopy.c (copy_object): Call bfd_copy_private_bfd_data after
  2510. copying everything else, to let it fiddle with the file in its
  2511. final state.
  2512. * objdump.c: Include libiberty.h.
  2513. (display_target_list): If a format fails, just go on to the next
  2514. one. Check return value of bfd_set_format.
  2515. (display_info_table): Likewise. Don't increment loop variable in
  2516. for loop test, since that skips the first element.
  2517. (display_target_tables): Rewrite loop for clarity. Ensure that it
  2518. always prints at least one element.
  2519. * nlmconv.c (main): Use CyGnUsEx rather than CyGnUsSeCs for
  2520. sections header. Rename from cygnus_sections to cygnus_ext.
  2521. Thu Apr 21 12:12:26 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2522. * objdump.c (_DUMMY_NAME_): Don't define.
  2523. (display_target_list): Use tmpnam to get a file name rather than
  2524. using _DUMMY_NAME_. Unlink it when done.
  2525. (display_info_table): Likewise.
  2526. * nlmconv.c (secsec): New static variable.
  2527. (main): Create .nlmsections section in output BFD. Store
  2528. information about it in sections header.
  2529. (setup_sections): Allocate space in sections header.
  2530. (copy_sections): Copy zero sized sections. Put information about
  2531. each section in the sections header.
  2532. Wed Apr 20 14:34:51 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2533. * nlmconv.c (powerpc_build_stubs): Take new outbfd argument.
  2534. Change caller. Create custom header for new PowerPC NetWare
  2535. format.
  2536. * Makefile.in (nlmheader.o, nlmconv.o): Update dependencies.
  2537. * nlmconv.c: Include bfd.h and libiberty.h with "", not <>.
  2538. * nlmheader.y: Include bfd.h with "", not <>.
  2539. Wed Apr 13 10:52:50 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2540. * objdump.c: Do an ifdef on __GO32__, not unix.
  2541. Wed Apr 6 21:54:49 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2542. Added -D (--dynamic) option to nm and -T (--dynamic-syms) and -R
  2543. (--dynamic-reloc) arguments to objdump.
  2544. * nm.c (dynamic): New static variable.
  2545. (long_options): Added "dynamic".
  2546. (usage): Mention -D and --dynamic.
  2547. (main): Add D to getopt string. Handle -D by setting dynamic.
  2548. (display_rel_file): If dynamic is non-zero, read dynamic symbols
  2549. rather than normal symbols.
  2550. * nm.1: Updated for -D (--dynamic) option.
  2551. * objdump.c (dump_dynamic_symtab): New global variable.
  2552. (dump_dynamic_reloc_info): New global variable.
  2553. (dynsyms, dynsymcount): New global variables.
  2554. (usage): Mention -R, -T, --dynamic-syms and --dynamic-reloc.
  2555. (long_options): Added "dynamic-reloc" and "dynamic-syms".
  2556. (slurp_symtab): If no symbols, return rather than exit.
  2557. (slurp_dynamic_symtab): New function.
  2558. (display_bfd): Handle dump_dynamic_symtab and
  2559. dump_dynamic_reloc_info.
  2560. (dump_symbols): Take new dynamic argument, indicating whether to
  2561. display dynamic symbols.
  2562. (dump_relocs): Move most printing into dump_reloc_set.
  2563. (dump_dynamic_relocs): New function.
  2564. (dump_reloc_set): New function, extracted from dump_relocs.
  2565. (main): Add R and T to getopt string. Handle -T by setting
  2566. dump_dynamic_symtab and -R by setting dump_dynamic_reloc_info.
  2567. * objdump.1: Updated for -R (--dynamic-reloc) and -T
  2568. (--dynamic-syms) options.
  2569. * binutils.texi: Updated for new nm and objdump options.
  2570. Wed Mar 30 15:52:40 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2571. Update for recent BFD changes to symbol and reloc reading. Rename
  2572. all uses of get_symtab_upper_bound to bfd_get_symtab_upper_bound.
  2573. Also:
  2574. * coffgrok.c (symcount): Change to long.
  2575. (do_sections_p1): Check for error return from
  2576. bfd_get_reloc_upper_bound. Change relcount to long, and check for
  2577. error from bfd_canonicalize_reloc.
  2578. (coff_grok): Change storage to long. Check for error from
  2579. bfd_get_symtab_upper_bound and bfd_canonicalize_symtab.
  2580. * nlmconv.c (main): Change symcount, newsymalloc, newsymcount, and
  2581. i to long. Check for error from bfd_get_symtab_upper_bound and
  2582. bfd_canonicalize_symtab.
  2583. (copy_sections): Change reloc_size and reloc_count to long. Check
  2584. for error from bfd_get_reloc_upper_bound and
  2585. bfd_canonicalize_reloc.
  2586. (mangle_relocs, i386_mangle_relocs, alpha_mangle_relocs): Change
  2587. reloc_count_ptr argument to long *. Make corresponding changes to
  2588. variables loaded from *reloc_count_ptr.
  2589. * nm.c (display_rel_file): Change storage and symcount to long.
  2590. Check for errors from bfd_get_symtab_upper_bound and
  2591. bfd_canonicalize_symtab.
  2592. * objcopy.c (filter_symbols): Change symcount, src_count and
  2593. dst_count to long.
  2594. (copy_object): Change symcount to long. Pass another argument to
  2595. fprintf. Check for errors from bfd_get_symtab_upper_bound and
  2596. bfd_canonicalize_symtab.
  2597. (copy_section): Change relcount to long. Check for errors from
  2598. bfd_get_reloc_upper_bound and bfd_canonicalize_reloc.
  2599. (mark_symbols_used_in_relocations): Change relcount and i to long.
  2600. Check for errors form bfd_get_reloc_upper_bound and
  2601. bfd_canonicalize_reloc.
  2602. * objdump.c (storage): Remove global variable.
  2603. (symcount): Changed to long.
  2604. (slurp_symtab): New local variable storage. Check for errors from
  2605. bfd_get_symtab_upper_bound and bfd_canonicalize_symtab.
  2606. (remove_useless_symbols): Change return value and count to long.
  2607. (objdump_print_address): Change min, max, thisplace and i to long.
  2608. (disassemble_data): Change i to long.
  2609. (dump_symbols): Change count to long.
  2610. (dump_relocs): Change relcount to long. Check for errors from
  2611. bfd_ret_reloc_upper_bound and bfd_canonicalize_reloc.
  2612. (display_info_table): Add casts when passing LONGEST_ARCH for
  2613. printf %* argument.
  2614. Tue Mar 29 14:59:04 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2615. * nm.c (display_archive): Close each archive element after it has
  2616. been displayed.
  2617. * objdump.c (display_file): Likewise.
  2618. Mon Mar 28 13:04:08 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2619. * configure.in: Change error message to refer to bfd/config.bfd
  2620. rather than bfd/configure.in.
  2621. Sun Mar 27 16:23:39 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
  2622. * More fixes for object formats which allow multiple sections
  2623. with the same name:
  2624. * objcopy.c (setup_section): Make a new output section even if
  2625. one already exists with the given name.
  2626. (copy_section): Use isection->output_section rather than trying
  2627. to look the output section up by its (possibly non-unique) name.
  2628. * Makefile.in (install-info): Look for binutils.info in the
  2629. current directory, then in $(srcdir). Don't use $<.
  2630. Mon Mar 21 12:55:45 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2631. * objdump.c (objdump_print_address): Make static. Declare with
  2632. prototype. Change vardiff from int to bfd_signed_vma. Correct
  2633. binary search termination condition. When looking for same
  2634. section symbol in relocatable file, handle final symbol correctly.
  2635. Sun Mar 20 11:26:36 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
  2636. * Makefile.in: Avoid bug in hpux sed.
  2637. * objcopy.c: Changes to keep it from stripping symbols used
  2638. in output relocations.
  2639. (mark_symbols_used_in_relocations): New function. Mark symbols
  2640. used in output relocations with BSF_KEEP.
  2641. (filter_symbols): Do not strip symbols marked with BSF_KEEP.
  2642. (copy_object): Reorder actions. First setup sections, then
  2643. build the output symbol table, then copy the section contents.
  2644. Fri Mar 18 10:53:55 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2645. * ar.c (write_archive): Allocate space for the null byte. From
  2646. Robert Lipe <robertl@arnet.com>.
  2647. Thu Mar 17 16:20:28 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2648. * Makefile.in: Built nm.new and strip.new to avoid problems with
  2649. collect when . is in PATH.
  2650. (STRIP_PROG): Change from strip to strip.new.
  2651. (NM_PROG): Change from nm to nm.new.
  2652. (install): Remove the .new when installing.
  2653. Wed Mar 16 16:27:05 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2654. * nlmconv.c (powerpc_build_stubs): Set BSF_DYNAMIC flag for each
  2655. symbol for which we build a stub.
  2656. (powerpc_mangle_relocs): Only reset TOC pointer for a call to a
  2657. symbol with BSF_DYNAMIC flag set.
  2658. Tue Mar 15 23:04:13 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
  2659. * objcopy.c (filter_symbols): Use bfd_is_local_label to determine
  2660. if a symbol represents a compiler-generated local label.
  2661. (copy_object): Give the BFD backends a chance to copy any private
  2662. bfd data from the input BFD to the output BFD.
  2663. (setup_section): Give the BFD backends a chance to copy any private
  2664. section data from the input section to the output section.
  2665. Mon Mar 14 11:15:58 1994 Jeffrey A. Law (law@snake.cs.utah.edu)
  2666. * objcopy.c (mangle_section): Delete unused function.
  2667. (setup_section): Set osection here instead of calling
  2668. mangle section to do it.
  2669. Mon Mar 14 12:11:01 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2670. * ar.c (write_archive): Close inarch before unlinking it.
  2671. Fri Mar 11 22:20:48 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2672. * nlmconv.c (main): For PowerPC, call powerpc_build_stubs and
  2673. powerpc_resolve_stubs. Use __GOT0, not __toc_start. Handle it if
  2674. the start and end symbols are not in the text section.
  2675. (struct powerpc_stub): New struct definition.
  2676. (powerpc_stubs, powerpc_stub_insns): New static variables.
  2677. (powerpc_initial_got_size): New static variable.
  2678. (powerpc_build_stubs): New function.
  2679. (powerpc_resolve_stubs): New function.
  2680. (powerpc_mangle_relocs): Clear extraneous data in .got section.
  2681. Rearrange reloc handling to handle ELF relocs that are not
  2682. partial_inplace. Resolve PC relative relocs.
  2683. Wed Mar 9 13:48:11 1994 Steve Chamberlain (sac@jonny.cygnus.com)
  2684. * ar.c (move_members): Fix it so that the abi positional modifiers
  2685. don't delete all archive members following the insert point.
  2686. Tue Mar 8 13:14:43 1994 Steve Chamberlain (sac@jonny.cygnus.com)
  2687. * coffgrok.[ch]: New files, understand coff objects.
  2688. * coffdump.c: Uses coffgrok to dump out the debug info of a coff
  2689. file.
  2690. * sysroff.info: Description of a SYSROFF object file.
  2691. * sysinfo.y, syslex.l: Parse info file, generate a reader, writer,
  2692. header files and a printer.
  2693. * srconv.c: Uses coffgrok.c and sysroff.info to convert a coff
  2694. file to a SYSROFF file.
  2695. Sat Feb 26 13:35:26 1994 Stan Shebs (shebs@andros.cygnus.com)
  2696. * ar.c (do_quick_append): Pad with a genuine character 10,
  2697. rather than whatever '\n' might happen to be.
  2698. Tue Feb 22 18:25:52 1994 Ian Lance Taylor (ian@cygnus.com)
  2699. * nlmconv.c (main): Ignore debugging symbols when looking for
  2700. special symbols by name.
  2701. Sun Feb 20 18:47:42 1994 Ian Lance Taylor (ian@lisa.cygnus.com)
  2702. * nlmconv.c: Include libiberty.h.
  2703. Support for PowerPC NetWare.
  2704. * nlmconv.c (main): For PowerPC NetWare, automatically define the
  2705. special symbols __toc_start.
  2706. (select_output_format): Handle bfd_arch_powerpc.
  2707. (mangle_relocs): Likewise.
  2708. (powerpc_mangle_relocs): New function.
  2709. Thu Feb 17 09:28:23 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2710. * ar.c, bucomm.c, nlmconv.c, nm.c, objcopy.c, objdump.c,
  2711. size.c: Use bfd_get_error and bfd_set_error and new error names.
  2712. Fri Feb 11 15:54:51 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2713. * objcopy.c (strip_main, copy_main): Add missing 'break' in switch.
  2714. Mon Feb 7 19:45:52 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2715. * objdump.c (disassemble_data): Handle bfd_arch_powerpc.
  2716. Sun Feb 6 22:08:20 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2717. * strings.c objdump.c nlmconv.c objcopy.c nm.c ar.c size.c (main):
  2718. Call xmalloc_set_program_name.
  2719. Fri Feb 4 10:46:01 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2720. * objcopy.c (filter_bytes): Make MEMHUNK a char *, not PTR, so we
  2721. can do arithmetic on it.
  2722. Thu Feb 3 14:06:41 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2723. * objdump.c (dump_section_stabs, read_section_stabs,
  2724. print_section_stabs): Functions broken out of dump_stabs_1.
  2725. Free the stabs and strings when done with them.
  2726. Wed Feb 2 13:42:23 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2727. * nlmconv.c (main): Use bfd_get_flavour instead of struct member.
  2728. * ar.c (print_contents, extract_file), size.c
  2729. (print_berkeley_format, print_sysv_format): Use bfd_get_filename and
  2730. bfd_my_archive instead of dereferencing the structs directly.
  2731. * ar.c: Use bfd_fatal and bfd_nonfatal instead of bfd_perror and exit.
  2732. Indent. Remove DEFUNs.
  2733. * nlmconv.c (main), objcopy.c (copy_file): Print matching formats
  2734. if ambiguous match.
  2735. * nm.c (display_file, display_archive), size.c (display_bfd):
  2736. Eliminate gotos.
  2737. Print matching formats if there is an ambiguous match. Use
  2738. bfd_nonfatal instead of hardcoded error message if nothing matches.
  2739. * arsup.c, ar.c, objdump.c: Use bfd_get_filename instead of
  2740. abfd->filename.
  2741. * nm.c (display_archive): New function, from code in display_file.
  2742. (display_rel_file): Renamed from do_one_rel_file.
  2743. * size.c: Indent.
  2744. (display_archive): New function from code in display_file.
  2745. (display_file): Check bfd_close error return.
  2746. * strings.c (strings_object_file): Check bfd_check_format
  2747. error return.
  2748. * strings.c, objdump.c, size.c: Use bfd_nonfatal instead of bfd_perror.
  2749. * bucomm.c: Delete references to exit_handler. It wasn't set
  2750. anywhere, and now that we're using the libiberty xmalloc, it
  2751. wouldn't always get called before exiting.
  2752. (list_matching_formats): Function moved from objdump.c.
  2753. * bucomm.h: Declare it.
  2754. * objdump.c (disassemble_data): Move some variable decls closer to
  2755. their use. Add some comments. Replace a nested block with a
  2756. return.
  2757. Mon Jan 31 18:50:41 1994 Stan Shebs (shebs@andros.cygnus.com)
  2758. * objdump.c (display_target_list, display_info_table): Check that
  2759. the bfd of the dummy output file is not null.
  2760. Wed Jan 26 13:13:18 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2761. * objcopy.c (filter_bytes): New function.
  2762. (copy_section): Call it.
  2763. (copy_options, copy_usage, copy_main): Add --byte option to
  2764. activate it. Appropriate the -b option (which was an undocumented
  2765. synonym for -F) for it, also. Add --interleave, -i option for
  2766. additional control.
  2767. (setup_section, copy_section, mangle_section): Renamed with no `s'
  2768. on the end.
  2769. * objcopy.1, binutils.texi: Document the new options.
  2770. * objdump.c (display_target_tables, display_target_list):
  2771. New functions broken out of display_info.
  2772. Eliminate some magic constants. Use more meaningful variable names.
  2773. (dump_bfd_header): New function broken out of display_bfd.
  2774. (dump_section_header): New function broken out of dump_headers.
  2775. (remove_useless_symbols): Don't shadow global variable name with
  2776. parameter.
  2777. (objdump_print_address): Fix backward test.
  2778. Tue Jan 25 19:40:54 1994 Stan Shebs (shebs@andros.cygnus.com)
  2779. * bucomm.c (print_arelt_descr): Change decl of `when' to time_t.
  2780. * objdump.h: Removed.
  2781. Mon Jan 24 13:29:02 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2782. * objdump.c (display_file): Remove call to list_matching_formats.
  2783. It would never be called.
  2784. (list_matching_formats): Take an arg giving the list of matching
  2785. formats.
  2786. (display_bfd): Pass the arg, and get it filled in by calling
  2787. bfd_check_format_matches instead of bfd_check_format.
  2788. (display_info, display_info_table): target_vector was renamed to
  2789. bfd_target_vector.
  2790. * binutils.texi (objdump): Note some limitations of -h section
  2791. address printing.
  2792. Sat Jan 22 16:20:46 1994 Stan Shebs (shebs@andros.cygnus.com)
  2793. * Makefile.in (MALLOC): Set to emptiness by default.
  2794. (ALL_CFLAGS): Add and use.
  2795. (arparse.h): Make it depend on arparse.y.
  2796. * ar.c (libbfd.h): Don't require to be in ../bfd.
  2797. * objdump.c (comp): Rename to compare_symbols.
  2798. Fri Jan 21 20:22:30 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2799. * objdump.c (list_matching_formats): If the file format is ambiguous,
  2800. print the matching names so the user can choose one.
  2801. (display_bfd): Call it.
  2802. (display_file): Call it.
  2803. Fri Jan 21 19:17:25 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2804. * objdump.c (disassemble_data): Support bfd_arch_rs6000.
  2805. Mon Jan 17 13:57:25 1994 Stan Shebs (shebs@andros.cygnus.com)
  2806. * objdump.c (stab_name): Allocate dynamically.
  2807. (stab_print): Use pointers to strings instead of char arrays.
  2808. (dump_stabs): Change alloc and init of arrays appropriately.
  2809. (dump_stabs_1): Always decide whether to print stab_name or
  2810. the stab's type number, if unnamed.
  2811. Fri Jan 14 14:42:48 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2812. * objcopy.c (strip_main, copy_main): Don't clobber the input file
  2813. if copy_file fails.
  2814. * nlmconv.c (main): Warn about an attempt to use a shared library
  2815. with uninitialized data.
  2816. * nlmconv.c (setup_sections): Make sure that we align the
  2817. output_offset of each input section appropriately.
  2818. Thu Jan 13 17:32:44 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2819. * objdump.c (dump_relocs): Don't crash if section name is NULL.
  2820. Tue Jan 11 19:46:33 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2821. * filemode.c (filemodestring): Commented out; not used.
  2822. (mode_string): Use POSIX definitions.
  2823. (ftypelet): Likewise.
  2824. (rwx): Removed; no longer used.
  2825. * bucomm.c: Include bucomm.h.
  2826. (bfd_nonfatal, bfd_fatal): Argument is const.
  2827. (fatal): Make __STDC__ version.
  2828. * bucomm.h (mode_string): Declare.
  2829. * Makefile.in (bucomm.o): Depend upon bucomm.h
  2830. Sun Jan 9 12:03:20 1994 Ken Raeburn (raeburn@rtl.cygnus.com)
  2831. * bucomm.c (xmalloc, xrealloc): Deleted.
  2832. * bucomm.h (xmalloc, xrealloc): Fix prototypes, to correspond to
  2833. libiberty version of functions.
  2834. Thu Jan 6 06:18:15 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2835. * binutils.texi: Add a chapter summarizing the ways to select
  2836. aspects of the target for each program.
  2837. * objdump.c (long_options, usage): Add long equivalents for all
  2838. remaining short options that lacked them.
  2839. * binutils.texi objdump.1: Document them.
  2840. * size.c (usage): Tweak usage message.
  2841. * size.1: Add missing `=' in examples.
  2842. * binutils.texi strip.1 objcopy.1 nlmconv.1 objcopy.c nlmconv.c:
  2843. Use "--target=bfdname" as the option to select the BFD target,
  2844. like nm and size already do.
  2845. Reserve "--format=format" for textual output selection options, but
  2846. for now keep old option names as obsolete for backward compatibility.
  2847. * strings.c (main, strings_object_file, usage): Add --target option.
  2848. * binutils.texi strings.1: Document it.
  2849. Sat Jan 1 13:58:24 1994 David J. Mackenzie (djm@thepub.cygnus.com)
  2850. * ar.c (main): Add \n in error message.
  2851. Thu Dec 23 12:23:11 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2852. gcc -Wall lint:
  2853. * ar.c (main): Put parens around assignment used as truth value.
  2854. * objcopy.c (strip_main): Remove unused variables. Return 0.
  2855. (copy_main): Remove unused variables. Return 0.
  2856. * objdump.c (display_bfd): Declare return value as void.
  2857. (stab_print): Use "" instead of 0 to initialize array.
  2858. (dump_stabs_1): Print vma using printf_vma.
  2859. (display_info): Put parens around assignment used as truth value.
  2860. * strings.c (print_strings): Cast printf arguments.
  2861. * objcopy.c (copy_main): Use copy_options, not strip_options.
  2862. * nlmheader.y (command): Warn about illegal date values.
  2863. Wed Dec 15 11:18:03 1993 David J. MacKenzie (djm@frosty.eng.umd.edu)
  2864. * bucomm.c bucomm.h: Run through indent. De-ansidecl-ify.
  2865. (bfd_nonfatal): New function.
  2866. (bfd_fatal): Call it.
  2867. * objcopy.c (smart_rename): Do a copy if the dest file has
  2868. multiple hard links. Remove source file on successful copy.
  2869. Try to preserve mode and owner on successful rename.
  2870. * objcopy.c: Run through indent. Clean up a bit.
  2871. Make global variables static.
  2872. Make {input,output}_{target,filename}, show_version local
  2873. to various functions.
  2874. New global variable `status' for exit status.
  2875. (strip_main, copy_main): New functions with code from main.
  2876. (nonfatal): New macro. Use it globally instead of bfd_perror and
  2877. bfd_fatal.
  2878. (copy_object): Call mangle_sections with bfd_map_over_sections.
  2879. (mangle_sections): Adjust for new calling convention.
  2880. Fri Dec 10 11:28:11 1993 Ian Lance Taylor (ian@deneb.cygnus.com)
  2881. * nlmheader.y (command): Accept MAP and FULLMAP without arguments.
  2882. * nlmconv.c (main): Change error message for MAP and FULLMAP.
  2883. Thu Dec 9 17:47:19 1993 Ian Lance Taylor (ian@deneb.cygnus.com)
  2884. * nlmconv.c (main): Warn about imported symbols that are not in
  2885. the IMPORT list even if the IMPORT keyword is not used.
  2886. * nlmconv.c (debug, unlink_on_exit): New static variables.
  2887. (long_options): Add "debug" and "linker".
  2888. (main): Handle -d and -l arguments. Make command line input and
  2889. output files optional. Parse the command file before opening the
  2890. BFD's, which requires storing more information in local variables.
  2891. If INPUT names multiple files, link them together. Use OUTPUT for
  2892. the output file name if not named on command line.
  2893. (show_usage): Changed for new options.
  2894. (link_inputs): New function to automatically invoke linker to
  2895. handle multiple INPUT files.
  2896. (choose_temp_base_try, choose_temp_base, pexecute): New functions,
  2897. mostly copied from gcc/gcc.c.
  2898. * nlmconv.h (input_files, output_file): Declare.
  2899. * nlmheader.y (input_files, output_file): Define.
  2900. (command): Support INPUT with a string_list argument. Support
  2901. OUTPUT.
  2902. (string_list): Renamed from module_list.
  2903. * Makefile.in (nlmconv.o): Define LD_NAME based on
  2904. program_transform_name.
  2905. Wed Dec 8 10:09:04 1993 Ian Lance Taylor (ian@deneb.cygnus.com)
  2906. * nlmheader.y (nlmheader_identify): New function. Use it to print
  2907. the program name just once, instead of with every error message.
  2908. Mon Dec 6 16:11:32 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2909. * nlmconv.c (long_options): Changed --header-info to --header-file
  2910. to match documentation and usage message.
  2911. Sun Dec 5 01:31:01 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
  2912. * objdump.c (dump_relocs): Avoid dereferencing a NULL sym_ptr_ptr
  2913. in a relocation.
  2914. Thu Dec 2 16:00:06 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2915. * nlmconv.c (main): Change various types from bfd_size_type to
  2916. size_t, since they have to be arguments to fread and fwrite.
  2917. Change set from char * to unsigned char *.
  2918. (select_output_format): Make mach argument unsigned. Handle
  2919. bfd_arch_alpha.
  2920. (setup_sections): Don't copy the .reginfo section of an ECOFF
  2921. file. Call bfd_set_reloc to initialize the relocation fields.
  2922. (copy_sections): Don't copy the .reginfo section of an ECOFF file.
  2923. Combine all relocs for a section.
  2924. (mangle_relocs): Change type of relocs to permit specific
  2925. functions to change it. Call alpha_mangle_relocs for alpha,
  2926. default_mangle_relocs for other architectures.
  2927. (default_mangle_relocs): New function. Adjust the address of all
  2928. relocs by the output_offset.
  2929. (i386_mangle_relocs): Change type of relocs argument. Cast length
  2930. argument to memmove to size_t.
  2931. (alpha_mangle_relocs): New function.
  2932. Wed Nov 17 17:38:58 1993 Sean Eric Fagan (sef@cygnus.com)
  2933. * nlmconv.c (select_output_format): Use nlm32-sparc for
  2934. bfd_arch_sparc.
  2935. Wed Nov 17 14:41:35 1993 Jeffrey Osier (jeffrey@thepub.cygnus.com)
  2936. * nlmconv.1: added man page
  2937. * objcopy.1: fixed format errors
  2938. Wed Nov 17 12:03:41 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2939. * Makefile.in: Use CFLAGS as well as LDFLAGS when linking.
  2940. Wed Nov 17 04:50:55 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  2941. * strings.1: Fix typo.
  2942. Mon Nov 15 12:03:20 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
  2943. * Makefile.in (DISTSTUFF): Build "info".
  2944. (VERSION): Updated to cygnus-2.3.1; 2.3 has gone out.
  2945. Sun Nov 14 00:27:24 1993 Jeffrey A. Law (law@snake.cs.utah.edu)
  2946. * objdump.c (dump_stabs): Handle stabs-in-som as implemented
  2947. by the new BFD SOM assembler.
  2948. Sat Nov 13 07:14:05 1993 David J. Mackenzie (djm@rtl.cygnus.com)
  2949. * ar.1 c++filt.1 nm.1 objcopy.1 objdump.1 ranlib.1 size.1
  2950. strings.1 strip.1: Replace \(em in NAME section with \- so
  2951. makewhatis can grok it.
  2952. Tue Nov 9 15:22:12 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2953. * nlmconv.c (i386_mangle_relocs): Adjust reloc address by
  2954. section output_offset.
  2955. Fri Nov 5 12:11:52 1993 Jeffrey Osier (jeffrey@thepub.cygnus.com)
  2956. * binutils.texi: added nlmconv chapter
  2957. Wed Nov 3 16:10:50 1993 Jeffrey Wheat (cassidy@cygnus.com)
  2958. * Makefile.in: Change RUNTESTFLAGS to RUNTEST_FLAGS
  2959. Wed Nov 3 15:09:23 1993 Ken Raeburn (raeburn@rover.cygnus.com)
  2960. * Makefile.in (distclean): Don't get rid of dvi or info files.
  2961. Tue Nov 2 13:29:59 1993 David J. Mackenzie (djm@rtl.cygnus.com)
  2962. * objcopy.c (S_ISLNK): Define as 0 if there's no S_IFLNK.
  2963. Fri Oct 29 16:02:34 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  2964. * binutils.texi: Move objcopy docs into alphabetical order.
  2965. * objdump.c: Use xmalloc instead of malloc.
  2966. Fri Oct 29 11:11:14 1993 Stan Shebs (shebs@rtl.cygnus.com)
  2967. * objdump.c (info): Rename to formats_info.
  2968. (dump_stabs_1): Better comments and formatting.
  2969. Thu Oct 28 19:43:16 1993 Stan Shebs (shebs@rtl.cygnus.com)
  2970. * ar.c (main): Always create the archive when quick appending,
  2971. even if no input files have been given.
  2972. Wed Oct 27 12:03:06 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2973. * nlmconv.c (main): Set sharedDebugRecordOffset and
  2974. sharedDebugRecordCount fields in extended header.
  2975. * nlmconv.c (main): Force moduleName field to upper case.
  2976. Mon Oct 25 16:45:42 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2977. * objcopy.c (main): Give a usage message if there are too many
  2978. arguments.
  2979. Mon Oct 25 10:37:08 1993 Ken Raeburn (raeburn@rover.cygnus.com)
  2980. * Makefile.in (install-info): Rewrite to take advantage of VPATH,
  2981. so FSF distributions (with info files in $(srcdir)) install
  2982. properly.
  2983. (DISTSTUFF): Build nlmheader.c too.
  2984. Fri Oct 22 11:43:23 1993 Ken Raeburn (raeburn@rover.cygnus.com)
  2985. * ar.c (program_name): Don't define here.
  2986. * objdump.c: Include "bucomm.h".
  2987. (xmalloc): Don't declare here.
  2988. (program_name): Don't define here.
  2989. (program_version): Fixed type in declaration.
  2990. * size.c: Include "bucomm.h".
  2991. (program_name): Don't declare here.
  2992. Fri Oct 22 14:10:41 1993 Mark Eichin (eichin@cygnus.com)
  2993. * objdump.c (fprintf): hide declaration in FPRINTF_ALREADY_DECLARED
  2994. Fri Oct 1 12:43:00 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  2995. * nlmconv.c (i386_mangle_relocs): Resolve and remove PC relative
  2996. relocs against defined symbols in the same section.
  2997. Thu Sep 30 16:46:26 1993 Roland H. Pesch (pesch@fowanton.cygnus.com)
  2998. * Makefile.in (binutils.dvi): use TEXIDIR to find texinfo.tex
  2999. Sat Sep 25 18:09:29 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3000. * objcopy.c (simple_copy, smart_rename): New functions.
  3001. (main): Use them.
  3002. Fri Sep 24 15:38:29 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3003. * Makefile.in (clean, distclean): Recurse into testsuite.
  3004. Thu Sep 23 01:05:06 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3005. * objcopy.c (setup_sections, copy_sections): If stripping, don't
  3006. copy SEC_DEBUGGING sections.
  3007. * objdump.c (dump_headers): Print SEC_DEBUGGING flag.
  3008. * objdump.c (usage): Mention --stabs.
  3009. * objcopy.c (copy_object): Copy all applicable file flags.
  3010. (copy_file): Don't copy EXEC_P specially here.
  3011. Mon Sep 20 19:28:57 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3012. * nlmconv.c (main): Adjust data section size to correspond to bss
  3013. alignment adjustment. Clear BSF_SECTION_SYM if symbol is moved to
  3014. a different section. Use time_t for time variable.
  3015. (setup_sections): Only put sections with contents in output NLM.
  3016. (i386_mangle_relocs): No symbols are common at this point. Add
  3017. casts to avoid warnings.
  3018. Fri Sep 10 11:00:40 1993 Stan Shebs (shebs@rtl.cygnus.com)
  3019. * objdump.c: Made the --stabs option work for stabs-in-coff.
  3020. (ELF_STAB_DISPLAY): Removed.
  3021. (dump_elf_stabs): Renamed to dump_stabs, changed to run for
  3022. any object file format.
  3023. (dump_elf_stabs_1): Renamed to dump_stabs_1, added calls to
  3024. generic BFD routines for non-ELF case, changed format of message
  3025. for no-section-found case.
  3026. (display_bfd): Always call dump_stabs if requested.
  3027. (dump_data): Call bfd_section_size to get section size.
  3028. Fri Sep 10 08:12:23 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3029. * Makefile.in (install): Don't put strings in tooldir/bin.
  3030. Mon Sep 6 15:39:04 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3031. * nlmconv.c (total_bss_size): Removed.
  3032. (main): Set the bss vma to always follow the data section. Move
  3033. symbols into new sections, and adjust values by output_offset.
  3034. (setup_sections): Don't copy all sections, but instead point all
  3035. text sections to .text, all data sections to .data, and all bss
  3036. sections to .bss.
  3037. (copy_sections): Adjust accordingly.
  3038. Thu Sep 2 12:34:03 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3039. Only build nlmconv if configured for a NetWare target.
  3040. * configure.in: If we have some *-*-netware* target, or are using
  3041. all targets, set BUILD_NLMCONV to $(NLMCONV_PROG) in Makefile.
  3042. * Makefile.in (PROGS): Use $(BUILD_NLMCONV) rather than
  3043. $(NLMCONV_PROG).
  3044. Tue Aug 31 14:13:35 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
  3045. * objdump.c (ARCH_all): Define ARCH_hppa too.
  3046. (dump_headers): Don't test for SEC_BALIGN if it's not defined by
  3047. bfd.h.
  3048. Tue Aug 31 13:29:12 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3049. * nlmconv.c (main): Force creation of .bss section. Set up the
  3050. sections before looking at the symbols. Move all common symbols
  3051. into .bss section. Automatically define _edata and _end. Only
  3052. export symbols in the export list, with multiple prefixes if
  3053. necessary. Warn if no version. Always create extended header.
  3054. Set date automatically if not already set.
  3055. (setup_sections): Count size of bss sections.
  3056. (mangle_relocs, i386_mangle_relocs): Accept section argument, and
  3057. take reloc_count as a changeable pointer; changed callers.
  3058. (i386_mangle_relocs): Remove PC relative relocs within a section,
  3059. as they require no adjustment.
  3060. * nlmheader.y: Fixed memory allocation throughout: token STRING is
  3061. now allocated on the heap, and freed if not needed. Null
  3062. terminated copyright message. Accept version with only two
  3063. strings.
  3064. (symbol_list_opt): New nonterminal, either symbol_list or empty.
  3065. (symbol_list): Use left recursion to avoid overflowing parser
  3066. stack.
  3067. (yylex): Rearranged beginning of line check. Accept quoted
  3068. strings using single quotes. End generic argument at comment
  3069. character or parentheses.
  3070. (string_list_append): Fixed.
  3071. (string_list_append1): New function.
  3072. * bucomm.h: The first argument to xrealloc is PTR, not char *.
  3073. * bucomm.c (xrealloc): Use PTR rather than char *.
  3074. * Makefile.in (objdump.o): Depend upon config.status to notice
  3075. --with-targets changes.
  3076. (nlmconv.o): Depend upon bucomm.h.
  3077. Tue Aug 17 09:46:01 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3078. * configure.in: Don't pass cpu to config.bfd.
  3079. Thu Aug 12 16:43:04 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3080. * Makefile.in ($(NM_PROG)): Depend on demangle.o.
  3081. (demangle.o): New target.
  3082. (cplus-dem.o): Depend on it, to force compilation order when doing
  3083. parallel compiles.
  3084. * nm.c (print_symbol_info_{bsd,sysv,posix}): Take a bfd arg.
  3085. (struct output_fns print_symbol_info): Ditto.
  3086. (long_options, usage, main): Add -C --demangle option.
  3087. (print_symname): New function, demangling if requested.
  3088. (print_symbols, print_symbol_info_{bsd,sysv,posix}): Use it.
  3089. Wed Aug 11 22:57:23 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3090. * Makefile.in: Put CFLAGS last in compilation rules and omit from
  3091. linking rules. Use ARCHDEFS to compile objdump.c.
  3092. Update dependencies.
  3093. * configure.in: Construct ARCHDEFS based on the BFD target makefile
  3094. fragments.
  3095. * objdump.c: Conditionalize calls to the print_insn_ARCH functions
  3096. according to ARCHDEFS.
  3097. Thu Aug 12 08:06:15 1993 Ian Lance Taylor (ian@cygnus.com)
  3098. * ar.c: Removed obsolete and non-functional GNU960 code.
  3099. Wed Aug 11 13:08:26 1993 Ian Lance Taylor (ian@cygnus.com)
  3100. * size.c (berkeley_sum): New function.
  3101. (bsssize, datasize, textsize): New global variables.
  3102. (bss_section_name, data_section_name, text_section_name): Removed.
  3103. (print_berkeley_format): Map berkeley_sum over all the sections,
  3104. rather than only reporting sizes of specifically named sections.
  3105. * Makefile.in ($(OBJDUMP_PROG)): Removed dependency on size.o.
  3106. Tue Aug 10 10:46:01 1993 Ian Lance Taylor (ian@cygnus.com)
  3107. * nlmconv.c, nlmconv.h, nlmheader.y: New files for program to
  3108. convert object files into NetWare Loadable Modules.
  3109. * Makefile.in (NLMCONV_PROG): New macro, define to be nlmconv.
  3110. (PROGS): Add NLMCONV_PROG.
  3111. (nlmheader.c, nlmheader.o, nlmconv.o, $(NLMCONV_PROG)): New
  3112. targets.
  3113. Thu Aug 5 15:48:32 1993 david d `zoo' zuhn (zoo@rtl.cygnus.com)
  3114. * Makefile.in: define MAKEOVERRIDES to an empty string
  3115. Wed Aug 4 17:08:08 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3116. * objcopy.c (copy_file): Make failures to process a file nonfatal.
  3117. Mon Aug 2 11:28:23 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3118. * nm.c: Add -B option, like --format=bsd.
  3119. Tue Jul 27 16:29:54 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3120. * objcopy.c (copy_file): If the file is neither an object nor an
  3121. archive, give an error rather than returning success.
  3122. Mon Jul 19 16:13:40 1993 Ken Raeburn (raeburn@rtl.cygnus.com)
  3123. * objdump.c (objdump_print_address): Prefer non-local symbols over
  3124. local ones, and especially discriminate against debugging symbols.
  3125. Also, for relocateable files, try to find a symbol in the current
  3126. section, instead of picking one from some random section with a
  3127. convenient value (read, section offset).
  3128. (disassemble_data): Cast argument to malloc to size_t first.
  3129. (dump_data): Likewise.
  3130. (dump_relocs): If a single section name is specified, show relocs
  3131. only for that section. Otherwise, silently omit sections without
  3132. relocs. Format table nicely even if values are printed using 16
  3133. digits instead of 8.
  3134. Fri Jul 16 15:19:59 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3135. * nm.c: Changes for final version of POSIX.2.
  3136. (print_symbol_filename_{bsd,sysv,posix}): New functions.
  3137. (formats): Add an element for a pointer to them.
  3138. (print_symbols): Call it.
  3139. (print_object_filename_posix, print_archive_member_posix): Produce
  3140. output according to new POSIX.2 spec.
  3141. * strings.c (print_strings): Handle STREAM being NULL.
  3142. (strings_a_section): Pass a NULL.
  3143. (main): Don't open /dev/null.
  3144. Thu Jul 15 12:44:09 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3145. * objdump.c (disassemble_data): Handle the m88k.
  3146. (display_bfd): Use bfd_errmsg, rather than just claiming that the
  3147. bfd is not an object file.
  3148. Mon Jul 12 17:55:34 1993 K. Richard Pixley (rich@cygnus.com)
  3149. * Makefile.in (TAGS): make work again by naming directories
  3150. explicitly rather than depending on undefined macros.
  3151. (INSTALL_XFORM): correct bad install target.
  3152. Fri Jul 2 16:58:34 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3153. * strings.c: Doc fixes.
  3154. Sun Jun 27 13:35:24 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3155. * Makefile.in: Note dependencies on bucomm.h.
  3156. (cplus-dem.o): Link c++filt with version.o.
  3157. * strings.c: Include bucomm.h and add prototypes to other decls.
  3158. Remove -h option.
  3159. * bucomm.h: Declare xrealloc.
  3160. * nm.c, objcopy.c, objdump.c, size.c, strings.c (main, usage): Add
  3161. --help option. Put "GNU" in the version message.
  3162. (usage): Take stream and exit status as args.
  3163. (main): Pass new args to usage.
  3164. Fri Jun 25 23:12:12 1993 David J. Mackenzie (djm@thepub.cygnus.com)
  3165. * strings.c, strings.1: New files.
  3166. * binutils.texi: Document strings.
  3167. * Makefile.in: Add rules for it.
  3168. Fri Jun 25 20:44:43 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
  3169. * objdump.c: Use size-independent bfd elf section names.
  3170. Sun Jun 20 23:09:06 1993 Ken Raeburn (raeburn@poseidon.cygnus.com)
  3171. * objdump.c (objdump_print_address): Handle wide offsets by
  3172. calling sprintf_vma.
  3173. Fri Jun 18 14:29:12 1993 Per Bothner (bothner@deneb.cygnus.com)
  3174. * objdump.c (syms2): Removed unused variable.
  3175. * objdump.c (remove_useless_symbols): New function.
  3176. * objdump.c (comp): Simplify.
  3177. * objdump.c (dis-assemble_data): Make simpler and more
  3178. efficient how we filter out useless symbols: Just filter
  3179. BEFORE the sort (using remove_useless_symbols).
  3180. * objdump.c (objdump_print_address): Simplify.
  3181. Change output syntax to match gdb.
  3182. Thu Jun 17 16:53:56 1993 david d `zoo' zuhn (zoo@cygnus.com)
  3183. * Makefile.in: canonicalize install.sh; for use within
  3184. this directory (and subdirs)
  3185. Mon Jun 14 12:13:22 1993 david d `zoo' zuhn (zoo at rtl.cygnus.com)
  3186. * Makefile.in (install, install-info): remove parentdir support,
  3187. use INSTALL_XFORM; define INSTALL_XFORM
  3188. Thu Jun 10 17:29:21 1993 Per Bothner (bothner@cygnus.com)
  3189. * objcopy.c (copy_object): Fix bad size passed to xmalloc().
  3190. Mon Jun 7 12:41:12 1993 Per Bothner (bothner@rtl.cygnus.com)
  3191. * Makefile.in (INCLUDES): Add -I../bfd for sysdep.h and bfd.h.
  3192. * configure.in: No longer need to configure to get sysdep.h.
  3193. * objcopy.c (copy_object): Fix symbol table handling.
  3194. Fri Jun 4 17:20:03 1993 Per Bothner (bothner@cygnus.com)
  3195. * objcopy.c (filter_symbols): Cannot filter the symbols
  3196. in place, because that confuses the relocs, so take separate
  3197. parameter for output array.
  3198. * objcopy.c (sympp): Make two variables: isympp and osympp.
  3199. * objcopy.c (copy_object): Allocate separate array (osympp)
  3200. for filtered symbols.
  3201. Fri Jun 4 10:51:44 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3202. * Makefile.in: change recursion test to presence of a configured
  3203. testsuite directory
  3204. Thu Jun 3 14:05:57 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
  3205. * Makefile.in (underscore.c): Hack the backquoted command so it
  3206. doesn't cause Solaris make to bomb.
  3207. Thu Jun 3 10:40:19 1993 Jeffrey Osier (jeffrey@cygnus.com)
  3208. * Makefile.in: added c++filt and objcopy to MANPAGES variable
  3209. Thu Jun 3 00:32:52 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3210. * Makefile.in: rename LOADLIBES to EXTRALIBS
  3211. Wed Jun 2 18:30:24 1993 Jeffrey Osier (jeffrey@cygnus.com)
  3212. * c++filt.1, objcopy.1: new man pages
  3213. Fri May 28 15:01:24 1993 Per Bothner (bothner@rtl.cygnus.com)
  3214. * Makefile.in (install): Also install ar and ranlib in
  3215. $(tooldir)/bin; needed for building libgcc.a.
  3216. * objdump.c (objdump_print_address): Fix the check
  3217. "coincidental" label matches by dis-allowing undefined
  3218. or com symbols.
  3219. Thu May 27 16:58:31 1993 Jeffrey Osier (jeffrey@cygnus.com)
  3220. * binutils.texi: revised c++filt chapter
  3221. Wed May 26 17:24:17 1993 Ian Lance Taylor (ian@cygnus.com)
  3222. * Makefile.in (FLAGS_TO_PASS): Pass down CC and CFLAGS.
  3223. Tue May 25 00:26:47 1993 Ken Raeburn (raeburn@cygnus.com)
  3224. * objdump.c (slurp_symtab): Print warning for bad symbol table.
  3225. (bfd_elf32_find_section, Elf32_Internal_Shdr): Updated
  3226. declarations and uses.
  3227. * Makefile.in (DISTSTUFF): Don't build binutils.mm.
  3228. Fri May 21 10:51:19 1993 David J. Mackenzie (djm@rtl.cygnus.com)
  3229. * nm.c: Add -f/--format, -P/--portability, -t/--radix options.
  3230. Make global variables static.
  3231. (main): Make -v like -n, not -V, and make -A like -o, for POSIX.2.
  3232. (set_print_radix, set_output_format,
  3233. print_{object_filename,archive_filename,archive_member,symbol_info}
  3234. {bsd,sysv,posix}): New functions.
  3235. (display_file, print_symbols): Call them.
  3236. * ar.c: Improve error messages.
  3237. * nm.c (main): Handle long options that just set a flag.
  3238. * nm.c (main), ar.c (do_show_version), objcopy.c (main), size.c
  3239. (main): Exit after printing the version number, per the GNU coding
  3240. standards.
  3241. Mon May 17 13:20:25 1993 Per Bothner (bothner@cygnus.com)
  3242. * README, Makefile.in: Minor updates for 2.2.
  3243. Fri May 14 11:12:26 1993 Per Bothner (bothner@cygnus.com)
  3244. * Makefile.in (underscore.c): Automatically generate
  3245. (using nm) a file with the variable prepends_underscore.
  3246. * Makefile.in (c++filt): Link underscore.o with cplus-dem.o
  3247. so that initial underscores get removed iff appropriate.
  3248. * binutils.texi: Preliminary documentation for c++filt.
  3249. * Makefile.in, binutils.texi: Set to version 2.2.
  3250. * NEWS: Mention copy->objcopy renaming and new c++filt program.
  3251. Wed May 12 12:05:36 1993 Ian Lance Taylor (ian@cygnus.com)
  3252. * Makefile.in (cplus-dem.o, $(DEMANGLER_PROG)): Build the
  3253. demangler via cplus-dem.o, rather than directly from the .c file.
  3254. * objcopy.c: Renamed from copy.c, updated comments accordingly.
  3255. * Makefile.in, binutils.texi: Renamed copy to objcopy.
  3256. * is-strip.c, maybe-strip.c, not-strip.c: Updated comments for
  3257. rename of copy to objcopy.
  3258. Mon May 10 17:20:18 1993 Per Bothner (bothner@cygnus.com)
  3259. * binutils.texi (strip, -v option): Fix typo.
  3260. Fri May 7 13:57:50 1993 Ian Lance Taylor (ian@cygnus.com)
  3261. * Makefile.in (RUNTEST): Define.
  3262. (FLAGS_TO_PASS): Pass down RUNTEST.
  3263. Tue May 4 10:06:50 1993 Ian Lance Taylor (ian@cygnus.com)
  3264. * Makefile.in (DEMANGLER_PROG): Name it c++filt.
  3265. (PROG): Also build and install COPY_PROG.
  3266. Mon May 3 19:11:48 1993 Per Bothner (bothner@cygnus.com)
  3267. * Makefile.in: Change definition of $(tooldir) to match FSF.
  3268. Wed Apr 28 23:41:32 1993 David J. Mackenzie (djm@rtl.cygnus.com)
  3269. * size.c (usage): Add missing options.
  3270. (main): Clean up option parser.
  3271. * objdump.c (usage): Add missing options.
  3272. (display_file): Print program name before calling
  3273. bdf_perror.
  3274. * nm.c (usage): Add missing options.
  3275. (main): Clean up option parser.
  3276. (display_file): Print program name before calling
  3277. bdf_perror.
  3278. * copy.c (copy_usage, strip_usage): Add missing options.
  3279. * ar.c (usage): New function.
  3280. (main): Call it.
  3281. (open_inarch, do_quick_append): Print program name before calling
  3282. bdf_perror.
  3283. Thu Apr 22 15:01:35 1993 Ian Lance Taylor (ian@cygnus.com)
  3284. * nm.c (main): Accept and ignore -A and -B for MIPS compatibility.
  3285. Mon Apr 19 14:06:59 1993 Rob Savoye (rob@cygnus.com)
  3286. * Makefile.in: Added FLAGS_TO_PASS so tests get run on freshly
  3287. built binaries if they exist. (otherwise the path)
  3288. Wed Apr 7 22:22:50 1993 Rob Savoye (rob@cygnus.com)
  3289. * Makefile.in: Changed check target to use DejaGnu.
  3290. Thu Apr 1 12:37:13 1993 Jim Kingdon (kingdon@cygnus.com)
  3291. * Makefile.in: Remove am29k-pinsn.c, i960-pinsn.c.
  3292. objdump.c: a29k and i960 are `disassemble' not `print'.
  3293. * objdump.c: Rename print_address to objdump_print_address
  3294. and change parameters.
  3295. (disassemble_data): Use objdump_print_address.
  3296. Wed Mar 31 10:25:29 1993 Jim Kingdon (kingdon@lioth.cygnus.com)
  3297. * objdump.c (disassemble_data): print_insn_sparc is now a
  3298. `disassemble' not a `print'.
  3299. Makefile.in: Remove sparc-pinsn.c (now in libopcodes.a).
  3300. * objdump.c (disassemble_data): Use new read_memory_func stuff.
  3301. Thu Mar 25 10:38:11 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
  3302. * objdump.c (fprintf): Declaration of variadic function had better
  3303. be a prototype for ANSI C systems.
  3304. Mon Mar 22 23:19:46 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3305. * Makefile.in: rename test-install to install-check
  3306. Fri Mar 19 14:40:08 1993 Steve Chamberlain (sac@thepub.cygnus.com)
  3307. * objdump.c (disassemble_data): Add H8500.
  3308. Fri Mar 19 10:56:51 1993 Jim Kingdon (kingdon@cygnus.com)
  3309. * objdump.c (usage): Mention long options.
  3310. Thu Mar 18 14:22:17 1993 Per Bothner (bothner@rtl.cygnus.com)
  3311. * nm.c: Modify behavior of -o flag for archives to match
  3312. BSD4.4 and Sunos 4: Prefix archive name before each line.
  3313. * m68k-pinsn.c: Removed. Subsumed by ../opcodes/m68k-dis.c.
  3314. * i386-pinsn.c: Removed. Subsumed by ../opcodes/i386-dis.c.
  3315. * Makefile.in: Adjust accordingly.
  3316. * objdump.c: Support new-style disassemblers (ones that use
  3317. the interface of ../include/dis-asm.h).
  3318. Thu Feb 25 15:57:00 1993 Per Bothner (bothner@rtl.cygnus.com)
  3319. * Makefile.in: When making tar file, remove texinfo/*,
  3320. except for texinfo/texinfo.tex.
  3321. * ardup.c: Add extern declaration of strdup.
  3322. * Makefile.in (testsuite): Add 'else true' since otherwise
  3323. Ultrix /bin/sh complains.
  3324. Wed Feb 24 19:44:18 1993 Per Bothner (bothner@rtl.cygnus.com)
  3325. * Makefile.in: Set VERSION to 2.1.
  3326. * README, NEWS: Updates.
  3327. * nm.c: Add -v as a synonym for -V.
  3328. Tue Feb 23 19:00:50 1993 Mike Werner (mtw@poseidon.cygnus.com)
  3329. * configure.in: added testsuite to configdirs.
  3330. * Makefile.in: added support for building testsuite.
  3331. Mon Feb 22 22:52:10 1993 Per Bothner (bothner@rtl.cygnus.com)
  3332. * objdump.c (disassemble_data): Print function names when
  3333. given by bfd_find_nearest_line. If not - still print
  3334. line numbers.
  3335. Mon Feb 22 07:54:03 1993 Mike Werner (mtw@poseidon.cygnus.com)
  3336. * testsuite: made modifications to testcases, etc., to allow
  3337. them to work properly given the reorganization of deja-gnu and the
  3338. relocation of the testcases from deja-gnu to a "tool" subdirectory.
  3339. Mon Feb 22 10:27:24 1993 Ken Raeburn (raeburn@cambridge.cygnus.com)
  3340. * objdump.c (dump_data): Free up section contents each time
  3341. through the loop. Reported by minyard@bnr.ca.
  3342. Sun Feb 21 10:55:55 1993 Mike Werner (mtw@poseidon.cygnus.com)
  3343. * testsuite: Initial creation of binutils/testsuite.
  3344. Migrated dejagnu testcases and support files for testing nm to
  3345. binutils/testsuite from deja-gnu. These files were moved "as is"
  3346. with no modifications. This migration is part of a major overhaul
  3347. of dejagnu. The modifications to these testcases, etc., which
  3348. will allow them to work with the new version of dejagnu will be
  3349. made in a future update.
  3350. Fri Feb 12 10:05:20 1993 Fred Fish (fnf@cygnus.com)
  3351. * Makefile.in (LIBIBERTY_SRC_DIR, LIBIBERTY_BIN_DIR): New macros.
  3352. * Makefile.in (LIBIBERTY): Use LIBIBERTY_BIN_DIR.
  3353. * Makefile.in (DEMANGLER_PROG): New program to build. Add macro
  3354. and rule.
  3355. * Makefile.in (PROGS): Add DEMANGLER_PROG.
  3356. Tue Jan 26 11:56:33 1993 Ian Lance Taylor (ian@cygnus.com)
  3357. * copy.c, nm.c, objdump.c, size.c: Use new bfd_is_com_section
  3358. macro rather than checking for equality to bfd_com_section.
  3359. Fri Jan 8 15:50:05 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3360. * objdump.c (disassemble_data): Fix code to find first useless
  3361. symbol.
  3362. Thu Jan 7 13:13:31 1993 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
  3363. * objdump.c (disassemble_data): Use mips_print_insn for MIPS.
  3364. Don't core dump if bfd_find_nearest_line returns false.
  3365. Wed Jan 6 17:14:01 1993 Steve Chamberlain (sac@thepub.cygnus.com)
  3366. * objdump.c (disassemble_data): know how to disassemble z8000s
  3367. too.
  3368. Wed Jan 6 15:16:27 1993 Per Bothner (bothner@cygnus.com)
  3369. * arsup.h (interactive), bucomm.h (program_name): Prefix
  3370. with 'extern', to avoid warnings from some compilers.
  3371. Wed Jan 6 15:14:11 1993 Per Bothner (bothner@rtl.cygnus.com)
  3372. * arparse.y: fix unnecessary shift/reduce
  3373. Tue Dec 22 15:46:56 1992 Per Bothner (bothner@rtl.cygnus.com)
  3374. * Makefile.in: Make check depend on all.
  3375. * Makefile.in (distclean): Remove sysdep.h.
  3376. * size.c: Use %u format where appropriate.
  3377. * objdump.c: Standardize: L_SET -> SEEK_SET.
  3378. * objdump.c: Use new macro bfd_asymbol_bfd.
  3379. * configure.in: Allow std-host as the default ${mys_host}.
  3380. Thu Dec 17 19:38:19 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3381. * Makefile.in: added dvi target, define and use TEXI2DVI
  3382. Tue Dec 15 18:05:07 1992 Per Bothner (bothner@cygnus.com)
  3383. * Makefile.in (dist): Fix permissions before release.
  3384. * size.c: Use bfd_size_type (and long) where appropriate.
  3385. * ar.c: Make writing a map the default, to be compatible
  3386. with SYSV and Posix.2. Remove some bogus kludges that
  3387. handled __.SYMDEF directly.
  3388. * NEWS: New file.
  3389. Mon Nov 9 13:36:53 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3390. * Makefile.in: flex no longer needs the -S flag
  3391. Sat Nov 7 15:06:13 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3392. * ar.c (extract_file): utime needs a pointer to a utimbuf
  3393. * Makefile.in: handle -I includes better, adding $(BASEDIR)/bfd to
  3394. the list (since some of the bfd/hosts/*.h files include other
  3395. files from that directory)
  3396. Fri Nov 6 00:12:51 1992 John Gilmore (gnu@cygnus.com)
  3397. * i960-pinsn.c (MEM_MAX, MEM_SIZ): Set upper bound properly.
  3398. Thu Nov 5 03:37:15 1992 John Gilmore (gnu@cygnus.com)
  3399. Clean up some old BFD ansification macros.
  3400. * arsup.h, bucomm.h, objdump.h: Remove EXFUN from binutils.
  3401. It still remains as a local macro in gmalloc.c, which is derived
  3402. from some other copy of GNU Malloc somewhere (FIXME).
  3403. * ar.c, objdump.c, size.c: Replace EXFUN with PROTO. Make static
  3404. fns really static.
  3405. * arsup.h: Declare extract_files.
  3406. Mon Nov 2 12:42:11 1992 Ian Lance Taylor (ian@cygnus.com)
  3407. * ar.c (extract_file): instead of checking USG: if POSIX_UTIME,
  3408. use utime and utimbuf structure, otherwise if USE_UTIME use utime
  3409. and array of two longs, otherwise use utimes.
  3410. Thu Oct 15 13:57:35 1992 Per Bothner (bothner@cygnus.com)
  3411. * binutils.texi: Document yesterday's changes to strip and copy.
  3412. Wed Oct 14 13:22:14 1992 Per Bothner (bothner@cygnus.com)
  3413. * copy.c: Re-do command-line parsing to use getopt_long().
  3414. Add long option names. Re-think option letters to be more
  3415. consistent.
  3416. * copy.c: New function filter_symbols() for stripping only
  3417. debug-symbols and/or local symbols. Use these to support
  3418. the previously-missing options of the old FSF strip.
  3419. Tue Oct 13 01:24:20 1992 John Gilmore (gnu@cygnus.com)
  3420. * configure.in (host): Use ${srcdir}/../bfd/configure.host rather
  3421. than repeating a copy of it here.
  3422. Wed Oct 7 12:53:52 1992 Ken Raeburn (raeburn@cygnus.com)
  3423. * copy.c (main): Even if is_strip, accept -d argument indicating
  3424. alternate output format. Needed by gdb for Nindy.
  3425. * m68k-pinsn.c (print_insn_arg): Handle new "`" operand type.
  3426. Tue Oct 6 16:33:56 1992 Jeffrey Osier (jeffrey@cygnus.com)
  3427. * binutils.texi: added documentation for "copy"
  3428. Tue Oct 6 14:22:56 1992 Per Bothner (bothner at PersSony)
  3429. * Makefile.in (*clean rules): Some cleaning up.
  3430. * Makefile.in (dist): Make diststuff in gprof for a dist.
  3431. * ar.c (do_show_version): New function.
  3432. * ar.c (main): Fix so "ar -V" works.
  3433. Thu Oct 1 22:44:45 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3434. * configure.in: now uses the cpu-vendor-os triple instead of
  3435. nested cases.
  3436. Fri Sep 25 22:41:08 1992 John Gilmore (gnu@cygnus.com)
  3437. * i960-pinsn.c: Change bzero to memset.
  3438. * sparc-pinsn.c: Change index to strchr.
  3439. Mon Sep 21 14:39:56 1992 Ian Lance Taylor (ian@cygnus.com)
  3440. * m68k-pinsn (print_insn_arg, fetch_arg): added support for
  3441. operands to memory management instructions, from WRS.
  3442. Tue Sep 15 15:26:38 1992 Ian Lance Taylor (ian@cygnus.com)
  3443. * Makefile.in (install): if $(tooldir) exists, install nm and
  3444. strip in $(tooldir)/bin.
  3445. Thu Sep 3 11:57:40 1992 Per Bothner (bothner@rtl.cygnus.com)
  3446. * Makefile.in: Let's call it version 2.0.
  3447. Wed Sep 2 00:25:13 1992 Per Bothner (bothner@rtl.cygnus.com)
  3448. * Makefile.in: Bump to version 0.98.
  3449. * TODO, README: Minor updates.
  3450. * Makefile.in: Added mostlyclean, distclean rules,
  3451. and cleaned up clean, realclean.
  3452. Sun Aug 30 21:18:59 1992 Ian Lance Taylor (ian@cygnus.com)
  3453. * Makefile.in: map program names through program_transform_name
  3454. when installing.
  3455. Sun Aug 30 18:09:03 1992 Per Bothner (bothner@rtl.cygnus.com)
  3456. * Makefile.in: Bump to versions 1.97.90.
  3457. * cplus-dem.c: Removed. Was nowhere used - and if some
  3458. programs are changed to to demangling should now use the
  3459. versions in libiberty.
  3460. Thu Aug 27 12:58:09 1992 Brendan Kehoe (brendan@cygnus.com)
  3461. * configure.in: add we32k
  3462. Mon Aug 24 14:53:42 1992 Steve Chamberlain (sac@thepub.cygnus.com)
  3463. * ar.c (map_over_members): if the element of the archive has a
  3464. null name, fill it in.
  3465. * nm.c (do_one_rel_file): only warn if a bfd's flags say there
  3466. will be symbols and there aren't any.
  3467. Wed Aug 19 11:20:25 1992 Ian Lance Taylor (ian@cygnus.com)
  3468. * m68k-pinsn.c: handle new operand type 'r', introduced for cas2.
  3469. Tue Aug 18 20:45:48 1992 Rob Savoye (rob@cygnus.com)
  3470. * nm.c objdump.c: Added support for a +version (-V)
  3471. to print the version number.
  3472. * ar.c, copy.c: Added support for a -V option to print
  3473. the version number.
  3474. Tue Aug 18 13:28:44 1992 Ian Lance Taylor (ian@cygnus.com)
  3475. * config/mh-apollo68v: removed -g from CC definition.
  3476. * Makefile.in: always create installation directories.
  3477. Mon Aug 17 18:33:41 1992 Per Bothner (bothner@rtl.cygnus.com)
  3478. * m68k-pinsn.c: Minor fix in style of output (don't use
  3479. range to indicate floating point control registers).
  3480. Tue Aug 11 23:42:21 1992 Per Bothner (bothner@cygnus.com)
  3481. * ar.c (main): Don't *always* set the verbose flag!
  3482. Wed Aug 5 11:25:27 1992 Per Bothner (bothner@rtl.cygnus.com)
  3483. * copy.c: When is_strip (because it is invoked as the strip
  3484. program), follow traditional argv processing:
  3485. 'strip file1 file2' now strips file1 and file2, rather
  3486. than stripping file1 (as input), leaving output in file2.
  3487. Mon Jul 27 16:28:08 1992 Per Bothner (bothner@rtl.cygnus.com)
  3488. * objdump.c (display_info, display_info_table): Call
  3489. bfd_set_format() on dummy bfd before using it (twice).
  3490. * ar.c: Make sure archive is created on command 'r'
  3491. even when no elements are inserted. (Clean up and
  3492. simplify some non-working related code.)
  3493. Mon Jul 20 02:48:38 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
  3494. * configure.in: hppa support doesn't assume hp OS (from sef).
  3495. Sat Jul 18 14:35:22 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
  3496. * configure.in: recognize hppa hosts (bsd & hpux), error messages
  3497. to stderr, not stdout
  3498. Fri Jul 17 18:39:44 1992 K. Richard Pixley (rich@rtl.cygnus.com)
  3499. * ar.1, binutils.texi, i960-pinsn.c, nm.1, objdump.1, ranlib.1,
  3500. size.1, sparc-pinsn.c, strip.1: removed rcsid's.
  3501. Thu Jul 16 16:55:24 1992 K. Richard Pixley (rich@rtl.cygnus.com)
  3502. * Makefile.dos: removed rcsid.
  3503. Thu Jul 16 08:23:07 1992 Steve Chamberlain (sac@thepub.cygnus.com)
  3504. * objdump.c (display_bfd): print state of BFD_IS_RELAXABLE too
  3505. Tue Jun 30 20:26:15 1992 D. V. Henkel-Wallace (gumby@cygnus.com)
  3506. * Makefile.in: Add program_suffix (parallel to program_prefix)
  3507. Thu Jun 25 04:52:45 1992 John Gilmore (gnu at cygnus.com)
  3508. * nm.c (sorters): Lint. Remove excess whitespace.
  3509. Wed Jun 24 13:48:07 1992 Per Bothner (bothner@cygnus.com)
  3510. * nm.c (valueof macro): Add missing parentheses.
  3511. (Their lack screwed up numeric_forward().)
  3512. Sun Jun 14 10:33:27 1992 John Gilmore (gnu at cygnus.com)
  3513. * objdump.c (dump_elf_stabs): Also dump .stab.index and
  3514. .stab.excl sections.
  3515. (dump_elf_stabs_1): Split out main body of old dump_elf_stabs.
  3516. * objdump.1, binutils.texi: Document new sections dumped.
  3517. Fri Jun 12 22:23:35 1992 John Gilmore (gnu at cygnus.com)
  3518. * size.c, objdump.c, bucomm.c: Lint.
  3519. Thu Jun 11 01:19:06 1992 John Gilmore (gnu at cygnus.com)
  3520. * objdump.c (dump_elf_stabs): New feature: --stabs prints out a
  3521. .stab section from an ELF file. Installed under #ifdef
  3522. ELF_STAB_DISPLAY so it can be easily disabled, since it requires
  3523. bfd-internals header files and such.
  3524. * objdump.1, binutils.texi: Update for --stabs. Also fix
  3525. objdump's doc to use -- rather than + for long options.
  3526. (FIXME: Not yet fixed everywhere in binutils.texinfo.)
  3527. Wed Jun 10 07:53:24 1992 Steve Chamberlain (sac@thepub.cygnus.com)
  3528. * objdump.c(display_info), patches from
  3529. mohring@informatik.tu-muenchen.de to print the table much more
  3530. nicely.
  3531. Thu May 28 13:36:16 1992 Per Bothner (bothner@rtl.cygnus.com)
  3532. * objdump.c: Add another enum->int cast, for the sake of
  3533. old compilers (such as PCC).
  3534. Wed May 27 13:01:44 1992 Per Bothner (bothner@rtl.cygnus.com)
  3535. * arlex.l: Don't include <sysdep.h> (unneeded conflicts).
  3536. Add declaration of strdup().
  3537. Fri May 22 13:40:37 1992 Per Bothner (bothner@cygnus.com)
  3538. * Makefile.in: Use srcdir instead of VPATH in ldgram/ldlex
  3539. rules, since these are used when building a distribution.
  3540. * Makefile.in (arlex.c): Don't re-direct output, since that
  3541. leaves a bogus output files if it fails.
  3542. * arlex.l: Make work with lex, for what it's worth.
  3543. * Makefile.in: Better lex support.
  3544. * Makefile.in (dist): Generate flex and bison outputs
  3545. for distribution.
  3546. Thu May 14 17:17:59 1992 K. Richard Pixley (rich@rtl.cygnus.com)
  3547. * Makefile.in: get BISON definition right.
  3548. Fri May 8 07:47:08 1992 K. Richard Pixley (rich@cygnus.com)
  3549. * sanity.sh: default TMPDIR to ".".
  3550. Thu May 7 12:34:50 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
  3551. * binutils.texi: add doc for ar command language.
  3552. Wed May 6 18:05:36 1992 Steve Chamberlain (sac@thepub.cygnus.com)
  3553. * arparse.y: make END call ar_end
  3554. * arsup.c (ar_end): added, deletes temp file if archive session
  3555. aborted.
  3556. Wed May 6 11:08:53 1992 K. Richard Pixley (rich@rtl.cygnus.com)
  3557. * Makefile.in: use bison & flex from ../ if they exist. Also,
  3558. FLEX->LEX.
  3559. * sanity.sh: remove temporary directory when finished.
  3560. Tue May 5 12:00:58 1992 Per Bothner (bothner@rtl.cygnus.com)
  3561. * Makefile.in: Bump to version 1.97.
  3562. * ar.c: Declare errno for machines that need it.
  3563. Mon May 4 23:29:51 1992 John Gilmore (gnu@cygnus.com)
  3564. * objdump.c (display_info): Handle error cases without coredump.
  3565. Close the dummy temporary file we open in the loop.
  3566. * Makefile.in (arsup.o): Add kludge to build with Sun Make.
  3567. Fri May 1 16:20:23 1992 K. Richard Pixley (rich@cygnus.com)
  3568. * Makefile.in: added test-install target.
  3569. * sanity.sh: new file.
  3570. * Makefile.in: use sanity test on make check.
  3571. Tue Apr 21 13:38:37 1992 K. Richard Pixley (rich@cygnus.com)
  3572. * Makefile.in: rework CFLAGS so that they can be passed on the
  3573. command line to make. Remove MINUS_G. Default CFLAGS to -g.
  3574. Wed Apr 15 14:33:07 1992 Steve Chamberlain (sac@thepub.cygnus.com)
  3575. * arsup.c, arsup.h, arparse.y, arlex.l: support for archive
  3576. scripting language.
  3577. Fri Mar 6 21:54:53 1992 K. Richard Pixley (rich@cygnus.com)
  3578. * Makefile.in: added check target.
  3579. Thu Mar 5 21:35:49 1992 K. Richard Pixley (rich@cygnus.com)
  3580. * Makefile.in: added clean-info target.
  3581. Tue Mar 3 15:36:37 1992 K. Richard Pixley (rich@rtl.cygnus.com)
  3582. * Makefile.in: remove $(COPY_PROG) from PROGS. It shouldn't be
  3583. installed. added tooldir and program_prefix.
  3584. Wed Feb 26 18:04:40 1992 K. Richard Pixley (rich@cygnus.com)
  3585. * Makefile.in, configure.in: removed traces of namesubdir,
  3586. -subdirs, $(subdir), $(unsubdir), some rcs triggers. Forced
  3587. copyrights to '92, changed some from Cygnus to FSF.
  3588. Sun Feb 16 12:53:02 1992 Per Bothner (bothner at cygnus.com)
  3589. * Makefile.in: Bump version to 1.96, and remove -beta
  3590. suffix from distribution name.
  3591. * m68k-pinsn.c: New macro COERCE_SIGNED_CHAR to extract
  3592. the signed value of a character (even if chars are unsigned).
  3593. * sparc-pinsn.c: Add new operand types.
  3594. Thu Feb 6 12:14:19 1992 Steve Chamberlain (sac at rtl.cygnus.com)
  3595. * objdump.c (disassemble_data): don't print a section's contents
  3596. if it's not loadable (eg bss)
  3597. Tue Jan 28 11:11:06 1992 Steve Chamberlain (sac at rtl.cygnus.com)
  3598. * m68k-pinsn.c (print_insn_arg): fixed so that -ve branch
  3599. displacements don't get printed as large +ve ones.
  3600. Fri Jan 24 14:47:53 1992 Steve Chamberlain (sac at rtl.cygnus.com)
  3601. * copy.c, nm.c, objdump.c, size.c : changed to use the
  3602. new reloc scheme.
  3603. Mon Dec 30 18:34:41 1991 Per Bothner (bothner at cygnus.com)
  3604. * bucomm.c (print_arelt_descr): Tweek the output format
  3605. so that 'ar tv' output follows Posix 1003.2/D11.
  3606. Output is now also identical to Sun's (except __.SYMDEF).
  3607. Mon Dec 30 06:09:53 1991 John Gilmore (gnu at cygnus.com)
  3608. * Makefile.in: Make `make' output more readable.
  3609. Wed Dec 18 15:04:45 1991 Per Bothner (bothner at cygnus.com)
  3610. * Makefile.in: Bump to version 1.94.
  3611. Wed Dec 11 16:48:09 1991 Steve Chamberlain (sac at cygnus.com)
  3612. * ar.c: added "b" to fopens for dos
  3613. * configdj.bat, makefile.dos new files from DJ
  3614. Tue Dec 10 04:07:26 1991 K. Richard Pixley (rich at rtl.cygnus.com)
  3615. * Makefile.in: infodir belongs in datadir.
  3616. Sat Dec 7 17:09:37 1991 Steve Chamberlain (sac at rtl.cygnus.com)
  3617. * bucomm.h: created to hold prototypes of bucomm.c
  3618. * objdump.h: created to hold prototyes of objdump.c
  3619. * am29k-pinsn.c: include objdump.h
  3620. * ar.c: include bucomm.h, get ar.h from the right place and
  3621. include libbfd.h
  3622. * bucomm.c: defunize bfd_fatal
  3623. * copy.c: include bucomm.h, lint.
  3624. * i960-pinsn.h: include bucomm.h
  3625. * m68k-pinsn.h: lint
  3626. * nm.c: include bucomm.h, lint
  3627. * objdump.c: lint
  3628. * sparc-pinsn.c: include objdump.h
  3629. Fri Dec 6 23:02:14 1991 K. Richard Pixley (rich at rtl.cygnus.com)
  3630. * Makefile.in: added standards.text support. install using
  3631. INSTALL_PROGRAM and INSTALL_DATA.
  3632. * configure.in: configure now does all of it's work from objdir so
  3633. make file existence tests against ${srcdir}.
  3634. Thu Dec 5 22:46:22 1991 K. Richard Pixley (rich at rtl.cygnus.com)
  3635. * Makefile.in: idestdir and ddestdir go away. Added copyrights
  3636. and shift gpl to v2. Added ChangeLog if it didn't exist. docdir
  3637. and mandir now keyed off datadir by default.
  3638. Wed Dec 4 22:42:03 1991 Per Bothner (bothner at cygnus.com)
  3639. * Makefile.in: Bump to version 1.93.
  3640. * Makefile.in: Add make-strip.o:maybe-strip.c dependency
  3641. for make versions that provide half-baked VPATH-support (e.g. Sun's).
  3642. * size.c: Improvements suggested by
  3643. "david d [zoo] zuhn" <zoo@aps1.spa.umn.edu>:
  3644. - Don't emit (Berkeley) headers if no files were found.
  3645. - Return a non-zero return code on failure.
  3646. Sat Nov 30 21:34:19 1991 Steve Chamberlain (sac at rtl.cygnus.com)
  3647. Changes due to include file renaming:
  3648. * am29k-pinsn.c: a29k-opcode.h -> opcode/a29k.h
  3649. * sparc-pinsn.c: sparc-opcode.h -> opcode/sparc.h
  3650. * m68k-pinsn.c: m68k-opcode.h -> opcode/m68k.h
  3651. * nm.c: stab.gnu.h -> aout/stab_gnu.h
  3652. Tue Nov 19 19:20:43 1991 Per Bothner (bothner at cygnus.com)
  3653. * README: Mention MINIMIZE flag for bfd's make.
  3654. Mon Nov 18 12:05:37 1991 Per Bothner (bothner at cygnus.com)
  3655. * README: Various improvements.
  3656. Sun Nov 17 23:40:59 1991 Per Bothner (bothner at cygnus.com)
  3657. * Makefile.in: Bump to version 1.92.
  3658. * version.c, Makefile.in: Get version string from Makefile.
  3659. * copy.c, is-strip.c, not-strip.c, maybe-strip.c, Makefile.in:
  3660. Make the same change that we earlier did for ar/ranlib:
  3661. Generate two different binaries for strip and copy and use
  3662. a global variable with different values to distinguish
  3663. ostrip from copy. (-1 means to use argv[0] to decide,
  3664. so you can get the old behavior, but it is no longer the default).
  3665. * copy.c (copy_file): Set EXEC_P of output bfd if input is so.
  3666. * copy.c (main): If is_strip==-1, compare last 5 chars
  3667. of argv[0], not the whole path.
  3668. * copy.c (main): Return 0, not 1.
  3669. * copy.c (setup_sections): Fix due to change in bfd_make_section
  3670. now failing if asked for a duplicate section.
  3671. * strip.c, ostrip.c: Removed obsolete files.
  3672. * ar.c, not-ranlib.c, maybe-ranlib.c:
  3673. Change encoding of is_ranlib variable to be consistent
  3674. with is_strip for strip.copy (i.e -1 to means use argv[0]).
  3675. Thu Nov 14 20:11:02 1991 Per Bothner (bothner at cygnus.com)
  3676. * version.c (program_version): Update to version 1.92.
  3677. Tue Nov 12 16:17:53 1991 Per Bothner (bothner at cygnus.com)
  3678. * ar.c (get_pos_bfd): Previous fix was missing a "break".
  3679. Thu Nov 7 08:55:56 1991 Steve Chamberlain (sac at cygnus.com)
  3680. * am29k-pinsn.c: Fixed bug in mtacc, dmac and fmac instruction
  3681. encodings. (Thaks to David Wood)
  3682. Sun Nov 3 14:50:23 1991 Per Bothner (bothner at cygnus.com)
  3683. * Makefile.in ($(DIST_NAME).tar.Z), TODO: Various fixes.
  3684. * ar.c (get_pos_bfd): Fix to handling of before/after
  3685. positioning options.
  3686. * bucomm.c (fatal): MISSING_VFPRINTF is no longer an issue,
  3687. since libiberty contains vfprintf etc if otherwise missing.
  3688. * m68k-pinsn.c (print_insn_arg): Support BB/BW/BL
  3689. type operands, as used by branch instructions.
  3690. * nm.c: Delegate printing of symbols to BFD,
  3691. by using bfd_print_symbol to do the formatting.
  3692. Mon Oct 28 11:20:47 1991 Steve Chamberlain (steve at cygnus.com)
  3693. * ar.c (write_archive.c): added unlink before rename since some
  3694. systems can't rename onto an existant file.
  3695. Mon Oct 21 09:47:23 1991 Steve Chamberlain (steve at rtl.cygnus.com)
  3696. * nm.c: now doesn't crash if a symbol with no section and no
  3697. SEC_ABS appears.
  3698. Thu Oct 17 15:25:50 1991 Per Bothner (bothner at cygnus.com)
  3699. * Makefile.in, version.c: Bump to version 1.91.
  3700. Wed Oct 16 11:45:36 1991 Per Bothner (bothner at cygnus.com)
  3701. * Makefile.in, ar.c, bucomm.c, copy.c, cplus-dem.c, filemode.c,
  3702. i960-pinsn.c, m68k-pinsn.c, nm.c, objdump.c, size.c, sparc-pinsn.c,
  3703. * strip.c: Add or update Copyright notice.
  3704. * TODO: Add note on 'nm -a'.
  3705. * version.c: Update version number to 1.90.
  3706. * Makefile.in: Fix making of documentation for dist.
  3707. Tue Oct 15 00:17:17 1991 Per Bothner (bothner at cygnus.com)
  3708. * README: New file.
  3709. * Makefile.in: New kludgy rules for making a tarfile.
  3710. * Makefile.in: Fix bindir path.
  3711. Mon Oct 14 17:34:29 1991 Roland H. Pesch (pesch at cygnus.com)
  3712. * Makefile.in: add targets binutils.mm, binutils.me
  3713. Fri Oct 11 22:44:21 1991 John Gilmore (gnu at cygnus.com)
  3714. * Makefile.in: Avoid Sun Make VPATH bugs by adding dependencies.
  3715. Fri Oct 11 12:51:33 1991 Roland H. Pesch (pesch at cygnus.com)
  3716. * Makefile.in: add target "binutils.ms"
  3717. * binutils.texinfo: minor restructuring for texi2roff comfort.
  3718. Fri Oct 11 04:12:28 1991 John Gilmore (gnu at cygnus.com)
  3719. Restructure configuration scheme for bfd, binutils, ld.
  3720. * configure.in: Revise to symlink sysdep.h to ../bfd/hosts/h-xxx.h.
  3721. Change some config names to match other dirs.
  3722. * *.c: Include bfd.h before sysdep.h, so ansidecl and PROTO()
  3723. get defined first.
  3724. * Makefile.in: Use -I. to get sysdep.h.
  3725. Wed Oct 9 22:42:56 1991 Per Bothner (bothner at cygnus.com)
  3726. * nm.c (print_symbols): Handle NULL name field of symbol.
  3727. * Makefile.in: Removed spurious comment.
  3728. Tue Oct 8 16:55:03 1991 Roland H. Pesch (pesch at cygnus.com)
  3729. * binutils.texinfo: minor typos, phrasing, formatting fixes.
  3730. Tue Oct 8 15:13:20 1991 Per Bothner (bothner at cygnus.com)
  3731. * configure.in: Get host file from ../bfd/config, not config.
  3732. * config/*: Remove config directory and its files.
  3733. Tue Oct 8 13:58:59 1991 Roland H. Pesch (pesch at cygnus.com)
  3734. * Makefile.in: new targets binutils.dvi, binutils.info
  3735. * binutils.texinfo: remove most remaining FIXME's, delete
  3736. references to __.SYMDEF by name
  3737. Tue Oct 8 10:23:44 1991 Steve Chamberlain (steve at cygnus.com)
  3738. * objdump.c (print_address) Print addresses nicely.
  3739. Mon Oct 7 11:31:05 1991 Per Bothner (bothner at cygnus.com)
  3740. * ar.c, Makefile.in, new files {is,not,maybe}-ranlib.c:
  3741. Make two different binaries for ar and ranlib, instead of
  3742. distinguishing them at run time using argv[0].
  3743. (Old behavior is still available if you "make ar_with_ranlib",
  3744. but it is not the default.)
  3745. * ranlib.sh (new): An alternative one-line
  3746. shell implementation of ranlib.
  3747. Fri Oct 4 21:49:44 1991 John Gilmore (gnu at cygnus.com)
  3748. * objdump.c: Cope with renames of a few BFD types & enums.
  3749. Fri Oct 4 19:08:09 1991 Roland H. Pesch (pesch at cygnus.com)
  3750. * binutils.texinfo: add new file (rudimentary docn)
  3751. Mon Sep 30 12:30:39 1991 Per Bothner (bothner at cygnus.com)
  3752. * config/hmake-news: Add new file (for Sony NEWSOS3).
  3753. * bucomm.c (fatal): Conditionally compile fatal() depending on
  3754. MISSING_VFPRINTF, and don't confuse the issue with NO_VARARGS.
  3755. * objdump.c (dump_headers): Trivial output format change.
  3756. * objdump.c (display_info): Loop over integers, not enums,
  3757. to appease old compilers.
  3758. Mon May 20 16:14:07 1991 Steve Chamberlain (steve at cygint.cygnus.com)
  3759. *objdump.c *nm.c *copy.c: Changed some types to work with 64 bit
  3760. object files.
  3761. Thu May 16 16:06:55 1991 Steve Chamberlain (steve at cygint.cygnus.com)
  3762. from bother
  3763. * objdump.c (print_address): Make disasembled output more
  3764. consistent with gdb and as: Add 0x when printing hex.
  3765. Don't print extra leading zeros.
  3766. Attempt to not print "filename.o".
  3767. * objdump.c: Add some enum-to-int casts to accommodate old compilers.
  3768. Fri May 3 22:21:44 1991 John Gilmore (gnu at cygint.cygnus.com)
  3769. * copy.c: Change =& constructs to = &, since they confuse older
  3770. C compilers.
  3771. Copyright (C) 1991-1997 Free Software Foundation, Inc.
  3772. Copying and distribution of this file, with or without modification,
  3773. are permitted in any medium without royalty provided the copyright
  3774. notice and this notice are preserved.
  3775. Local Variables:
  3776. mode: change-log
  3777. left-margin: 8
  3778. fill-column: 74
  3779. version-control: never
  3780. End: