C6000_8.2.xml 268 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <?eclipse version="3.0"?>
  3. <!-- Auto-generated from: D:\PS_Method_CCS\.metadata\.plugins\com.ti.ccstudio.builddefinitions.generator\native\C6000_8.2.6.xml -->
  4. <plugin>
  5. <extension point="org.eclipse.cdt.managedbuilder.core.buildDefinitions"
  6. id="C6000_8.2"
  7. name="C6000 v8.2 Build Definitions">
  8. <managedBuildRevision fileVersion="3.1.0"/>
  9. <!-- =================== Executable project-type / Debug configuration =================== -->
  10. <toolChain
  11. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.DebugToolchain"
  12. superClass="com.ti.ccstudio.buildDefinitions.core.toolChain"
  13. targetTool="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.linkerDebug">
  14. <builder
  15. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.builderDebug"
  16. superClass="com.ti.ccstudio.buildDefinitions.core.GNUMakeBuilder"/>
  17. <targetPlatform
  18. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.targetPlatformDebug"
  19. superClass="com.ti.ccstudio.buildDefinitions.core.targetPlatform"/>
  20. </toolChain>
  21. <tool
  22. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.compilerDebug"
  23. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler"/>
  24. <tool
  25. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.linkerDebug"
  26. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker"/>
  27. <!-- ================== Executable project-type / Release configuration ================== -->
  28. <toolChain
  29. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.ReleaseToolchain"
  30. superClass="com.ti.ccstudio.buildDefinitions.core.toolChain"
  31. targetTool="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.linkerRelease">
  32. <builder
  33. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.builderRelease"
  34. superClass="com.ti.ccstudio.buildDefinitions.core.GNUMakeBuilder"/>
  35. <targetPlatform
  36. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.targetPlatformRelease"
  37. superClass="com.ti.ccstudio.buildDefinitions.core.targetPlatform"/>
  38. </toolChain>
  39. <tool
  40. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.compilerRelease"
  41. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler">
  42. <option
  43. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.release"
  44. defaultValue="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.2"
  45. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL"/>
  46. </tool>
  47. <tool
  48. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exe.linkerRelease"
  49. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker"/>
  50. <!-- ===================== Library project-type / Debug configuration ==================== -->
  51. <toolChain
  52. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.libraryDebugToolchain"
  53. superClass="com.ti.ccstudio.buildDefinitions.core.toolChain"
  54. targetTool="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.librarianDebug">
  55. <builder
  56. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.builderDebug"
  57. superClass="com.ti.ccstudio.buildDefinitions.core.GNUMakeBuilder"/>
  58. <targetPlatform
  59. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.targetPlatformDebug"
  60. superClass="com.ti.ccstudio.buildDefinitions.core.targetPlatform"/>
  61. </toolChain>
  62. <tool
  63. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.compilerDebug"
  64. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler"/>
  65. <tool
  66. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.librarianDebug"
  67. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian"/>
  68. <!-- ==================== Library project-type / Release configuration =================== -->
  69. <toolChain
  70. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.ReleaseToolchain"
  71. superClass="com.ti.ccstudio.buildDefinitions.core.toolChain"
  72. targetTool="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.librarianRelease">
  73. <builder
  74. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.builderRelease"
  75. superClass="com.ti.ccstudio.buildDefinitions.core.GNUMakeBuilder"/>
  76. <targetPlatform
  77. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.targetPlatformRelease"
  78. superClass="com.ti.ccstudio.buildDefinitions.core.targetPlatform"/>
  79. </toolChain>
  80. <tool
  81. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.compilerRelease"
  82. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler">
  83. <option
  84. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.library.release"
  85. defaultValue="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.2"
  86. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL"/>
  87. </tool>
  88. <tool
  89. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.library.librarianRelease"
  90. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian"/>
  91. <!-- ============================= Target Tool Definitions =============================== -->
  92. <tool
  93. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler"
  94. name="C6000 Compiler"
  95. isAbstract="true"
  96. natureFilter="both"
  97. commandLinePattern="${command} ${flags} ${inputs}"
  98. errorParsers="org.eclipse.cdt.core.GmakeErrorParser;com.ti.ccstudio.errorparser.CoffErrorParser;com.ti.ccstudio.errorparser.AsmErrorParser"
  99. commandLineGenerator="com.ti.ccstudio.project.core.internal.build.CompilerCommandLineGenerator"
  100. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID">
  101. <inputType
  102. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler.inputType__C_SRCS"
  103. name="C Sources"
  104. sourceContentType="org.eclipse.cdt.core.cSource"
  105. dependencyContentType="org.eclipse.cdt.core.cHeader"
  106. dependencyCalculator="com.ti.ccstudio.project.core.internal.build.CCSDependencyCalculator"
  107. scannerConfigDiscoveryProfileId="com.ti.ccstudio.project.core.CCSScannerDiscoveryProfile"/>
  108. <inputType
  109. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler.inputType__CPP_SRCS"
  110. name="C++ Sources"
  111. sourceContentType="org.eclipse.cdt.core.cxxSource"
  112. dependencyContentType="org.eclipse.cdt.core.cxxHeader"
  113. dependencyCalculator="com.ti.ccstudio.project.core.internal.build.CCSDependencyCalculator"
  114. scannerConfigDiscoveryProfileId="com.ti.ccstudio.project.core.CCSScannerDiscoveryProfile"/>
  115. <inputType
  116. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler.inputType__ASM_SRCS"
  117. name="Assembly Sources"
  118. sourceContentType="org.eclipse.cdt.core.asmSource"
  119. scannerConfigDiscoveryProfileId="com.ti.ccstudio.project.core.CCSScannerDiscoveryProfile"/>
  120. <inputType
  121. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler.inputType__ASM2_SRCS"
  122. name="Assembly Sources"
  123. sourceContentType="com.ti.common.core.asmSource"
  124. scannerConfigDiscoveryProfileId="com.ti.ccstudio.project.core.CCSScannerDiscoveryProfile"/>
  125. <inputType
  126. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler.inputType__GEN_OPTS"
  127. name="Generated Command Option Files"
  128. sourceContentType="com.ti.common.core.commandOptionFile"
  129. buildVariable="GEN_OPTS"/>
  130. <inputType
  131. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler.inputType__GEN_HDRS"
  132. name="Generated Header Files"
  133. buildVariable="GEN_HDRS"/>
  134. <outputType
  135. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compiler.outputType__OBJS"
  136. name="Object Files"
  137. outputContentType="org.eclipse.cdt.managedbuilder.core.compiledObjectFile"
  138. nameProvider="com.ti.ccstudio.project.core.internal.build.CompilerOutputNameProvider"
  139. primaryOutput="true"
  140. buildVariable="OBJS"/>
  141. </tool>
  142. <tool
  143. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker"
  144. name="C6000 Linker"
  145. isAbstract="true"
  146. natureFilter="both"
  147. commandLineGenerator="com.ti.ccstudio.project.core.internal.build.LinkerCommandLineGenerator"
  148. commandLinePattern="${command} ${flags} ${output_flag} ${output} ${inputs}"
  149. errorParsers="com.ti.ccstudio.errorparser.LinkErrorParser"
  150. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID">
  151. <inputType
  152. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker.inputType__OBJS"
  153. name="Object Files"
  154. sourceContentType="org.eclipse.cdt.managedbuilder.core.compiledObjectFile"
  155. multipleOfType="true"
  156. buildVariable="OBJS"/>
  157. <inputType
  158. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker.inputType__CMD_SRCS"
  159. name="Linker Command Files"
  160. sourceContentType="com.ti.common.core.linkerCommandFile"
  161. multipleOfType="true"/>
  162. <inputType
  163. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker.inputType__CMD2_SRCS"
  164. name="Linker Command Files"
  165. sourceContentType="com.ti.common.core.linkerCommandFile2"
  166. multipleOfType="true"/>
  167. <inputType
  168. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker.inputType__LIB_SRCS"
  169. name="Runtime Support Libraries"
  170. sourceContentType="org.eclipse.cdt.managedbuilder.core.staticLibrary"
  171. multipleOfType="true"/>
  172. <inputType
  173. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker.inputType__GEN_CMDS"
  174. name="Generated Linker Command Files"
  175. sourceContentType="com.ti.common.core.linkerCommandFile"
  176. buildVariable="GEN_CMDS"/>
  177. <outputType
  178. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.exeLinker.outputType__EXE"
  179. name="C6000 Executable"
  180. outputContentType="org.eclipse.cdt.managedbuilder.core.executableFile"
  181. primaryOutput="true"
  182. buildVariable="EXE_OUTPUTS"/>
  183. </tool>
  184. <tool
  185. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian"
  186. name="C6000 Archiver"
  187. isAbstract="true"
  188. natureFilter="both"
  189. commandLineGenerator="com.ti.ccstudio.project.core.internal.build.ArchiverCommandLineGenerator"
  190. commandLinePattern="${command} ${flags} ${output} ${inputs}"
  191. errorParsers="com.ti.ccstudio.errorparser.LinkErrorParser"
  192. superClass="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID">
  193. <inputType
  194. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian.inputType__OBJS"
  195. name="Object Files"
  196. sourceContentType="org.eclipse.cdt.managedbuilder.core.compiledObjectFile"
  197. multipleOfType="true"
  198. buildVariable="OBJS"/>
  199. <inputType
  200. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian.inputType__OBJ_SRCS"
  201. name="Object Files"
  202. sourceContentType="org.eclipse.cdt.managedbuilder.core.compiledObjectFile"
  203. multipleOfType="true"/>
  204. <inputType
  205. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian.inputType__CMD_SRCS"
  206. name="Linker Command Files"
  207. sourceContentType="com.ti.common.core.linkerCommandFile"
  208. multipleOfType="true"/>
  209. <inputType
  210. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian.inputType__CMD2_SRCS"
  211. name="Linker Command Files"
  212. sourceContentType="com.ti.common.core.linkerCommandFile2"
  213. multipleOfType="true"/>
  214. <inputType
  215. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian.inputType__LIB_SRCS"
  216. name="Runtime Support Libraries"
  217. sourceContentType="org.eclipse.cdt.managedbuilder.core.staticLibrary"
  218. multipleOfType="true"/>
  219. <outputType
  220. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.librarian.outputType__LIB"
  221. name="C6000 Library"
  222. outputContentType="org.eclipse.cdt.managedbuilder.core.staticLibrary"
  223. primaryOutput="true"
  224. buildVariable="LIB_OUTPUTS"/>
  225. </tool>
  226. <!-- ============================= Begin auto-generated body ============================= -->
  227. <tool
  228. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID"
  229. superClass="com.ti.ccstudio.buildDefinitions.baseCompilerTool"
  230. isAbstract="true"
  231. name="C6000 Compiler"
  232. command="&quot;${CG_TOOL_CL}&quot;">
  233. <option
  234. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SILICON_VERSION"
  235. name="Target processor version (--silicon_version, -mv)"
  236. tip="Aliases: --silicon_version, -mv&lt;BODY&gt;Target processor version"
  237. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PROCESSOR"
  238. command="-mv"
  239. valueType="string"/>
  240. <option
  241. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.BIG_ENDIAN"
  242. name="Generate big endian code [See 'General' page to edit] (--big_endian, -me)"
  243. tip="Aliases: --big_endian, -me&lt;BODY&gt;Generate big endian code"
  244. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PROCESSOR"
  245. applicabilityCalculator="com.ti.common.project.core.internal.options.ReadonlyOptionApplicability"
  246. defaultValue="false"
  247. command="--big_endian"
  248. valueType="boolean"/>
  249. <option
  250. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI"
  251. name="Application binary interface (coffabi not supported) (--abi)"
  252. tip="Aliases: --abi&lt;BODY&gt;Specify application binary interface (option deprecated). COFFABI is no longer supported; to use it use Code Generation Tools 7.4.x. Default is eabi."
  253. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PROCESSOR"
  254. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  255. valueHandler="com.ti.ccstudio.project.core.internal.options.DeprecatedEnumOptionValueHandler"
  256. command="--abi"
  257. valueType="enumerated">
  258. <enumeratedOptionValue
  259. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI._none"
  260. name=""
  261. command=""/>
  262. <enumeratedOptionValue
  263. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI.coffabi"
  264. name="coffabi [deprecated]"
  265. command="--abi=coffabi"/>
  266. <enumeratedOptionValue
  267. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI.eabi"
  268. name="eabi"
  269. command="--abi=eabi"/>
  270. <enumeratedOptionValue
  271. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI.elfabi"
  272. name="elfabi [deprecated]"
  273. command="--abi=elfabi"/>
  274. </option>
  275. <optionCategory
  276. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PROCESSOR"
  277. name="Processor Options"
  278. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID"/>
  279. <option
  280. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL"
  281. name="Optimization level (--opt_level, -O)"
  282. tip="Aliases: --opt_level, -O&lt;BODY&gt;Set compiler optimization level.
  283. Level 0 includes register optimizations. Level 1 adds local optimizations. Level 2 further adds global optimizations. Level 3 further adds interprocedure optimizations."
  284. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.BASICOPT"
  285. command="-O"
  286. valueType="enumerated">
  287. <enumeratedOptionValue
  288. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL._none"
  289. name=""
  290. command=""/>
  291. <enumeratedOptionValue
  292. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.off"
  293. name="off"
  294. command="-Ooff"/>
  295. <enumeratedOptionValue
  296. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.0"
  297. name="0 - Register Optimizations"
  298. command="-O0"/>
  299. <enumeratedOptionValue
  300. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.1"
  301. name="1 - Local Optimizations"
  302. command="-O1"/>
  303. <enumeratedOptionValue
  304. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.2"
  305. name="2 - Global Optimizations"
  306. command="-O2"/>
  307. <enumeratedOptionValue
  308. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_LEVEL.3"
  309. name="3 - Interprocedure Optimizations"
  310. command="-O3"/>
  311. </option>
  312. <option
  313. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED"
  314. name="Speed vs. size trade-offs (--opt_for_speed, -mf)"
  315. tip="Aliases: --opt_for_speed, -mf&lt;BODY&gt;Control speed vs. size trade-offs in optimization. A value of 5 indicates fully optimizing for speed with a potentially large code size penalty, while a value of 0 indicates fully optimizing for size. Values between 0 and 5 indicate trade-offs between the two extremes."
  316. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.BASICOPT"
  317. fieldEditor="com.ti.ccstudio.project.ui.ScaleOptionEditor"
  318. command="--opt_for_speed"
  319. valueType="enumerated">
  320. <enumeratedOptionValue
  321. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED._none"
  322. name=""
  323. command=""/>
  324. <enumeratedOptionValue
  325. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED.0"
  326. name="0 (size)"
  327. command="--opt_for_speed=0"/>
  328. <enumeratedOptionValue
  329. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED.1"
  330. name="1"
  331. command="--opt_for_speed=1"/>
  332. <enumeratedOptionValue
  333. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED.2"
  334. name="2"
  335. command="--opt_for_speed=2"/>
  336. <enumeratedOptionValue
  337. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED.3"
  338. name="3"
  339. command="--opt_for_speed=3"/>
  340. <enumeratedOptionValue
  341. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED.4"
  342. name="4"
  343. command="--opt_for_speed=4"/>
  344. <enumeratedOptionValue
  345. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPEED.5"
  346. name="5 (speed)"
  347. command="--opt_for_speed=5"/>
  348. </option>
  349. <option
  350. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPACE"
  351. name="Optimize for code size (--opt_for_space, -ms)"
  352. tip="Aliases: --opt_for_space, -ms&lt;BODY&gt;Optimize for code size"
  353. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.BASICOPT"
  354. command="-ms"
  355. valueType="enumerated">
  356. <enumeratedOptionValue
  357. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPACE._none"
  358. name=""
  359. command=""/>
  360. <enumeratedOptionValue
  361. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPACE.0"
  362. name="0"
  363. command="-ms0"/>
  364. <enumeratedOptionValue
  365. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPACE.1"
  366. name="1"
  367. command="-ms1"/>
  368. <enumeratedOptionValue
  369. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPACE.2"
  370. name="2"
  371. command="-ms2"/>
  372. <enumeratedOptionValue
  373. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPT_FOR_SPACE.3"
  374. name="3"
  375. command="-ms3"/>
  376. </option>
  377. <optionCategory
  378. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.BASICOPT"
  379. name="Optimization"
  380. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID"/>
  381. <option
  382. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INCLUDE_PATH"
  383. name="Add dir to #include search path (--include_path, -I)"
  384. tip="Aliases: --include_path, -I&lt;BODY&gt;Add the specified dir(ectory) to the #include file search path list."
  385. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.INCLUDES"
  386. command="--include_path="
  387. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  388. browseType="directory"
  389. browseFilterPath="${CG_TOOL_ROOT}/include"
  390. valueType="includePath">
  391. </option>
  392. <option
  393. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREINCLUDE"
  394. name="Specify a preinclude file (--preinclude)"
  395. tip="Aliases: --preinclude&lt;BODY&gt;Include the source code of the indicated file at the beginning of the compilation. This can be used to establish standard macro definitions, etc. The file name is searched for in the directories on the include search list. The files are processed in the order in which they were specified."
  396. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.INCLUDES"
  397. command="--preinclude="
  398. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  399. browseType="file"
  400. browseFilterPath="${PROJECT_ROOT}"
  401. valueType="stringList">
  402. </option>
  403. <optionCategory
  404. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.INCLUDES"
  405. name="Include Options"
  406. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID"/>
  407. <option
  408. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ADVICE__PERFORMANCE"
  409. name="Provide advice on optimization techniques (--advice:performance)"
  410. tip="Aliases: --advice:performance&lt;BODY&gt;Provide advice on optimization techniques to ensure use of right options and improve software pipelining."
  411. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PERFORMANCE"
  412. fieldEditor="com.ti.ccstudio.project.ui.ChoiceListOptionEditor"
  413. fieldEditorExtraArgument="command=--advice:performance; isEditable=true; supportsFlagMode=true; values={all,none};"
  414. command="${value}"
  415. valueType="string"/>
  416. <option
  417. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ADVICE__PERFORMANCE_DIR"
  418. name="Place advice file in specified directory (--advice:performance_dir)"
  419. tip="Aliases: --advice:performance_dir&lt;BODY&gt;Place advice file in specified directory"
  420. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PERFORMANCE"
  421. command="--advice:performance_dir="
  422. valueType="string"/>
  423. <option
  424. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ADVICE__PERFORMANCE_FILE"
  425. name="Place advice in specified file (--advice:performance_file)"
  426. tip="Aliases: --advice:performance_file&lt;BODY&gt;Place advice in specified file"
  427. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PERFORMANCE"
  428. command="--advice:performance_file="
  429. valueType="string"/>
  430. <optionCategory
  431. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PERFORMANCE"
  432. name="Performance Advisor"
  433. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID"/>
  434. <option
  435. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEFINE"
  436. name="Pre-define NAME (--define, -D)"
  437. tip="Aliases: --define, -D&lt;BODY&gt;Pre-define a symbol with the id 'NAME', optionally setting it's contents to 'value'."
  438. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DEFINES"
  439. command="--define="
  440. valueType="definedSymbols">
  441. </option>
  442. <option
  443. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LLOPT"
  444. name="LLVM Optimization Level (--llopt)"
  445. tip="Aliases: --llopt&lt;BODY&gt;Run LLVM with specified optimization level"
  446. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DEFINES"
  447. command="--llopt"
  448. valueType="enumerated">
  449. <enumeratedOptionValue
  450. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LLOPT._none"
  451. name=""
  452. command=""/>
  453. <enumeratedOptionValue
  454. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LLOPT.0"
  455. name="0"
  456. command="--llopt=0"/>
  457. <enumeratedOptionValue
  458. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LLOPT.1"
  459. name="1"
  460. command="--llopt=1"/>
  461. <enumeratedOptionValue
  462. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LLOPT.2"
  463. name="2"
  464. command="--llopt=2"/>
  465. <enumeratedOptionValue
  466. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LLOPT.3"
  467. name="3"
  468. command="--llopt=3"/>
  469. </option>
  470. <option
  471. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.UNDEFINE"
  472. name="Undefine NAME (--undefine, -U)"
  473. tip="Aliases: --undefine, -U&lt;BODY&gt;Undefine the symbol with the id 'NAME'."
  474. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DEFINES"
  475. command="--undefine="
  476. valueType="stringList">
  477. </option>
  478. <option
  479. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.W"
  480. name="Give Clang warning argument (-W)"
  481. tip="Aliases: -W&lt;BODY&gt;Forwards a warning argument to Clang"
  482. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DEFINES"
  483. command="-W"
  484. valueType="stringList">
  485. </option>
  486. <optionCategory
  487. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DEFINES"
  488. name="Predefined Symbols"
  489. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID"/>
  490. <option
  491. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUGGING_MODEL"
  492. name="Debugging model"
  493. tip="(-g) - Enable full symbolic DWARF debugging in the generated object or out file. (--symdebug:skeletal) - Enable symbolic debug information for program analysis. (DEPRECATED) (--symdebug:none) - Disable debug and suppress all symbolic debug information from being included in the generated object or out file. (--symdebug:coff) - Enable full symbolic COFF debugging in the generated object or out file (DEPRECATED). (--symdebug:profile_coff) - Adds the necessary debug directives to the object file which are needed by the profiler to allow function level profiling with minimal impact on optimization (if optimization is enabled). Using -g may hinder some optimizations to ensure that debugability is maintained, while this option will not hinder optimization.
  494. You will still be able to set breakpoints and profile on function-level boundaries, but you will not be able to single-step through code as with full debug ability."
  495. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.SYMDEBUG"
  496. command="@mutex"
  497. valueType="enumerated">
  498. <enumeratedOptionValue
  499. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUGGING_MODEL._none"
  500. name=""
  501. command=""/>
  502. <enumeratedOptionValue
  503. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUGGING_MODEL.SYMDEBUG__DWARF"
  504. name="Full symbolic debug (--symdebug:dwarf, -g)"
  505. command="-g"/>
  506. <enumeratedOptionValue
  507. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUGGING_MODEL.SYMDEBUG__SKELETAL"
  508. name="Symbolic debug for program analysis (DEPRECATED) (--symdebug:skeletal)"
  509. command="--symdebug:skeletal"/>
  510. <enumeratedOptionValue
  511. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUGGING_MODEL.SYMDEBUG__NONE"
  512. name="Suppress all symbolic debug generation (--symdebug:none)"
  513. command="--symdebug:none"/>
  514. <enumeratedOptionValue
  515. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUGGING_MODEL.SYMDEBUG__COFF"
  516. name="Full symbolic debug (COFF, deprecated) (--symdebug:coff)"
  517. command="--symdebug:coff"/>
  518. <enumeratedOptionValue
  519. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUGGING_MODEL.SYMDEBUG__PROFILE_COFF"
  520. name="Function profile debug (COFF, deprecated) (--symdebug:profile_coff)"
  521. command="--symdebug:profile_coff"/>
  522. </option>
  523. <option
  524. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPTIMIZE_WITH_DEBUG"
  525. name="Optimize fully in the presence of debug (DEPRECATED) (--optimize_with_debug, -mn)"
  526. tip="Aliases: --optimize_with_debug, -mn&lt;BODY&gt;Optimize fully in the presence of debug (DEPRECATED)"
  527. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.SYMDEBUG"
  528. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  529. command="--optimize_with_debug"
  530. valueType="enumerated">
  531. <enumeratedOptionValue
  532. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPTIMIZE_WITH_DEBUG._none"
  533. name=""
  534. command=""/>
  535. <enumeratedOptionValue
  536. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPTIMIZE_WITH_DEBUG.on"
  537. name="on"
  538. command="--optimize_with_debug=on"/>
  539. <enumeratedOptionValue
  540. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPTIMIZE_WITH_DEBUG.off"
  541. name="off"
  542. command="--optimize_with_debug=off"/>
  543. </option>
  544. <option
  545. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MACHINE_REGS"
  546. name="Display reg operands as machine registers in asm (--machine_regs)"
  547. tip="Aliases: --machine_regs&lt;BODY&gt;When compiling linear assembly, register operands can be displayed in the assembly file as either machine registers or symbolic registers. Symbolic registers is the default. Use this option to display machine registers in the assembly file when compiling linear assembly. When compiling C/C++ machine registers are the default."
  548. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.SYMDEBUG"
  549. defaultValue="false"
  550. command="--machine_regs"
  551. valueType="boolean"/>
  552. <option
  553. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMDEBUG__KEEP_ALL_TYPES"
  554. name="Keep unreferenced type info (default for elf w/ debug) (--symdebug:keep_all_types)"
  555. tip="Aliases: --symdebug:keep_all_types&lt;BODY&gt;Keep referenced type info (default for elf w/ debug)"
  556. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.SYMDEBUG"
  557. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  558. defaultValue="false"
  559. command="--symdebug:keep_all_types"
  560. valueType="boolean"/>
  561. <option
  562. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMDEBUG__DWARF_VERSION"
  563. name="Specify DWARF version (--symdebug:dwarf_version)"
  564. tip="Aliases: --symdebug:dwarf_version&lt;BODY&gt;Specify DWARF version"
  565. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.SYMDEBUG"
  566. command="--symdebug:dwarf_version"
  567. valueType="enumerated">
  568. <enumeratedOptionValue
  569. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMDEBUG__DWARF_VERSION._none"
  570. name=""
  571. command=""/>
  572. <enumeratedOptionValue
  573. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMDEBUG__DWARF_VERSION.2"
  574. name="2"
  575. command="--symdebug:dwarf_version=2"/>
  576. <enumeratedOptionValue
  577. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMDEBUG__DWARF_VERSION.3"
  578. name="3"
  579. command="--symdebug:dwarf_version=3"/>
  580. <enumeratedOptionValue
  581. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMDEBUG__DWARF_VERSION.4"
  582. name="4"
  583. command="--symdebug:dwarf_version=4"/>
  584. </option>
  585. <optionCategory
  586. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.SYMDEBUG"
  587. name="Advanced Debug Options"
  588. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  589. <option
  590. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C_DIALECT"
  591. name="C Dialect"
  592. tip="(--c89) - Compile program in ANSI C89 mode. (--c99) - Compile program in C99 mode. (--kr_compatible) - Enable K &amp; R C compatibility."
  593. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  594. command="@mutex"
  595. valueType="enumerated">
  596. <enumeratedOptionValue
  597. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C_DIALECT._none"
  598. name=""
  599. command=""/>
  600. <enumeratedOptionValue
  601. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C_DIALECT.C89"
  602. name="Compile program in ANSI C89 mode. (--c89)"
  603. command="--c89"/>
  604. <enumeratedOptionValue
  605. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C_DIALECT.C99"
  606. name="Compile program in C99 mode. (--c99)"
  607. command="--c99"/>
  608. <enumeratedOptionValue
  609. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C_DIALECT.KR_COMPATIBLE"
  610. name="K &amp; R compatibility (--kr_compatible, -pk)"
  611. command="--kr_compatible"/>
  612. </option>
  613. <option
  614. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C___DIALECT"
  615. name="C++ Dialect"
  616. tip="(--c++03) - Compile program in C++03 mode. (--embedded_cpp) - Enable support for embedded C++"
  617. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  618. command="@mutex"
  619. valueType="enumerated">
  620. <enumeratedOptionValue
  621. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C___DIALECT._none"
  622. name=""
  623. command=""/>
  624. <enumeratedOptionValue
  625. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C___DIALECT.CPLUSPLUS03"
  626. name="Compile program in C++03 mode. (--c++03)"
  627. command="--c++03"/>
  628. <enumeratedOptionValue
  629. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C___DIALECT.EMBEDDED_CPP"
  630. name="Embedded C++ (--embedded_cpp, -pe)"
  631. command="--embedded_cpp"/>
  632. </option>
  633. <option
  634. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LANGUAGE_MODE"
  635. name="Language mode"
  636. tip="(--relaxed_ansi) - Enable relaxed ANSI source parsing mode. (--strict_ansi) - Enable strict ANSI source parsing mode. Any source violating strict ANSI guidelines will generate a parsing error."
  637. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  638. command="@mutex"
  639. valueType="enumerated">
  640. <enumeratedOptionValue
  641. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LANGUAGE_MODE._none"
  642. name=""
  643. command=""/>
  644. <enumeratedOptionValue
  645. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LANGUAGE_MODE.RELAXED_ANSI"
  646. name="Relaxed parsing (non-strict ANSI) (--relaxed_ansi, -pr)"
  647. command="--relaxed_ansi"/>
  648. <enumeratedOptionValue
  649. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LANGUAGE_MODE.STRICT_ANSI"
  650. name="Strict ANSI mode (errors) (--strict_ansi, -ps)"
  651. command="--strict_ansi"/>
  652. </option>
  653. <option
  654. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXCEPTIONS"
  655. name="Enable C++ exception handling (--exceptions)"
  656. tip="Aliases: --exceptions&lt;BODY&gt;Enable C++ exception handling"
  657. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  658. applicabilityCalculator="com.ti.common.project.core.internal.options.VirtualOptionApplicability"
  659. defaultValue="false"
  660. command="--exceptions"
  661. valueType="boolean"/>
  662. <option
  663. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.RTTI"
  664. name="Support C++ run-time type information (--rtti, -rtti)"
  665. tip="Aliases: --rtti, -rtti&lt;BODY&gt;Support C++ run-time type information"
  666. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  667. defaultValue="false"
  668. command="--rtti"
  669. valueType="boolean"/>
  670. <option
  671. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CPP_DEFAULT"
  672. name="Treat C files as C++ files (--cpp_default, -fg)"
  673. tip="Aliases: --cpp_default, -fg&lt;BODY&gt;Treat C files as C++ files"
  674. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  675. defaultValue="false"
  676. command="--cpp_default"
  677. valueType="boolean"/>
  678. <option
  679. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXTERN_C_CAN_THROW"
  680. name="Allow extern C functions to propagate exceptions (--extern_c_can_throw)"
  681. tip="Aliases: --extern_c_can_throw&lt;BODY&gt;This option is only supported under EABI for table-driven exception handling (TDEH). This option is valid only when `--exceptions` is also present. This option allows a function defined in C++ with extern `C` linkage to propagate exceptions."
  682. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  683. applicabilityCalculator="com.ti.common.project.core.internal.options.VirtualOptionApplicability"
  684. defaultValue="false"
  685. command="--extern_c_can_throw"
  686. valueType="boolean"/>
  687. <option
  688. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FLOAT_OPERATIONS_ALLOWED"
  689. name="Floating point precision accepted by compiler (--float_operations_allowed)"
  690. tip="Aliases: --float_operations_allowed&lt;BODY&gt;Control the acceptable precision of floating point operations. The default is all."
  691. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  692. command="--float_operations_allowed"
  693. valueType="enumerated">
  694. <enumeratedOptionValue
  695. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FLOAT_OPERATIONS_ALLOWED._none"
  696. name=""
  697. command=""/>
  698. <enumeratedOptionValue
  699. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FLOAT_OPERATIONS_ALLOWED.all"
  700. name="all"
  701. command="--float_operations_allowed=all"/>
  702. <enumeratedOptionValue
  703. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FLOAT_OPERATIONS_ALLOWED.32"
  704. name="32"
  705. command="--float_operations_allowed=32"/>
  706. <enumeratedOptionValue
  707. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FLOAT_OPERATIONS_ALLOWED.64"
  708. name="64"
  709. command="--float_operations_allowed=64"/>
  710. <enumeratedOptionValue
  711. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FLOAT_OPERATIONS_ALLOWED.none"
  712. name="none"
  713. command="--float_operations_allowed=none"/>
  714. </option>
  715. <option
  716. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CREATE_PCH"
  717. name="Create a precompiled header file as named (--create_pch)"
  718. tip="Aliases: --create_pch&lt;BODY&gt;Create a precompiled header file with the name specified. This option specifies the filename for the precompiled header file. If this option is not used, the precompiled header file will use the primary source file name as its filename with .pch as suffix."
  719. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  720. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  721. command="--create_pch="
  722. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  723. browseType="file"
  724. browseFilterPath="${PROJECT_ROOT}"
  725. valueType="string"/>
  726. <option
  727. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GCC"
  728. name="Enable support for GCC extensions (DEPRECATED) (--gcc)"
  729. tip="Aliases: --gcc&lt;BODY&gt;This option enables the support for GCC extensions. This feature is incompatible with strict ANSI mode."
  730. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  731. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  732. defaultValue="false"
  733. command="--gcc"
  734. valueType="boolean"/>
  735. <option
  736. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.KEEP_UNNEEDED_STATICS"
  737. name="Do not delete unreferenced static variables (--keep_unneeded_statics)"
  738. tip="Aliases: --keep_unneeded_statics&lt;BODY&gt;The parser, by default, will remark about and then remove any unreferenced static variables. This option will keep the parser from deleting unreferenced static variables and any static functions that are, in turn referenced by these variables."
  739. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  740. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  741. defaultValue="false"
  742. command="--keep_unneeded_statics"
  743. valueType="boolean"/>
  744. <option
  745. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MULTIBYTE_CHARS"
  746. name="Multibyte character support (--multibyte_chars, -pc)"
  747. tip="Aliases: --multibyte_chars, -pc&lt;BODY&gt;Enable parser support for multibyte character sequences in comments, string literals, and character constants."
  748. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  749. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  750. defaultValue="false"
  751. command="--multibyte_chars"
  752. valueType="boolean"/>
  753. <option
  754. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_INLINING"
  755. name="Ignore inline keyword (--no_inlining, -pi)"
  756. tip="Aliases: --no_inlining, -pi&lt;BODY&gt;Ignore the inline keyword while parsing."
  757. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  758. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  759. defaultValue="false"
  760. command="--no_inlining"
  761. valueType="boolean"/>
  762. <option
  763. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_INTRINSICS"
  764. name="Disable intrinsic functions (--no_intrinsics, -pn)"
  765. tip="Aliases: --no_intrinsics, -pn&lt;BODY&gt;Disable intrinsic functions in the parser."
  766. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  767. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  768. defaultValue="false"
  769. command="--no_intrinsics"
  770. valueType="boolean"/>
  771. <option
  772. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PCH"
  773. name="Automatically create/use precompiled headers (--pch)"
  774. tip="Aliases: --pch&lt;BODY&gt;Automatically create and/or use precompiled header files. This option will enable EDG parser to provide a mechanism for, in effect, taking a snapshot of the state of the compilation at a particular point and writing it to a disk file before completing the parsing; then, when recompiling the same source file or compiling another file with the same set of header files, it can recognize the `snapshot point`, and reload this file instead of recompile these headers. In this way, compilation time can be reduced."
  775. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  776. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  777. defaultValue="false"
  778. command="--pch"
  779. valueType="boolean"/>
  780. <option
  781. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PCH_DIR"
  782. name="Specify precompiled header path (--pch_dir)"
  783. tip="Aliases: --pch_dir&lt;BODY&gt;Specify path where precompiled header file will reside. This option will direct the parser to put the generated precompiled header file in the specified directory. If this option is not used, the precompiled header file will be put into the same directory as the primary source file"
  784. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  785. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  786. command="--pch_dir="
  787. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  788. browseType="directory"
  789. browseFilterPath="${PROJECT_ROOT}"
  790. valueType="string"/>
  791. <option
  792. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PCH_VERBOSE"
  793. name="Info on considered &amp; unused precompiled headers (--pch_verbose)"
  794. tip="Aliases: --pch_verbose&lt;BODY&gt;This option displays a message for each precompiled header file that is considered but can not be used. It also gives the reason why it can not be used."
  795. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  796. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  797. defaultValue="false"
  798. command="--pch_verbose"
  799. valueType="boolean"/>
  800. <option
  801. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PENDING_INSTANTIATIONS"
  802. name="limit pending template instantiations (--pending_instantiations)"
  803. tip="Aliases: --pending_instantiations&lt;BODY&gt;The number of template instantiations that may be in progress at any given time. Use 0 to specify an unlimited number."
  804. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  805. command="--pending_instantiations="
  806. valueType="string"/>
  807. <option
  808. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PRINTF_SUPPORT"
  809. name="Level of printf/scanf support required (--printf_support)"
  810. tip="Aliases: --printf_support&lt;BODY&gt;The printf and scanf families of functions are large because they provide complex formatting capabilities, which may not be required in typical embedded applications. Use this option to reduce code size by eliminating features. This option must be specified at link time.
  811. Use '--printf_support=nofloat' to exclude support for printing and scanning floating values. All format specifiers except %f, %F, %g, %G, %e, and %E are supported.
  812. Use '--printf_support=minimal' to exclude support for width and precision flags and all format specifiers except %%, %d %o, %c, %s, and %x."
  813. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  814. command="--printf_support"
  815. valueType="enumerated">
  816. <enumeratedOptionValue
  817. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PRINTF_SUPPORT._none"
  818. name=""
  819. command=""/>
  820. <enumeratedOptionValue
  821. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PRINTF_SUPPORT.nofloat"
  822. name="nofloat"
  823. command="--printf_support=nofloat"/>
  824. <enumeratedOptionValue
  825. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PRINTF_SUPPORT.minimal"
  826. name="minimal"
  827. command="--printf_support=minimal"/>
  828. <enumeratedOptionValue
  829. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PRINTF_SUPPORT.full"
  830. name="full"
  831. command="--printf_support=full"/>
  832. </option>
  833. <option
  834. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STATIC_TEMPLATE_INSTANTIATION"
  835. name="Do static early template instantiation (--static_template_instantiation)"
  836. tip="Aliases: --static_template_instantiation&lt;BODY&gt;All template entities are instantiated as needed in the file. The instantiations are given internal (static) linkage."
  837. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  838. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  839. defaultValue="false"
  840. command="--static_template_instantiation"
  841. valueType="boolean"/>
  842. <option
  843. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.USE_PCH"
  844. name="Precompiled header file for compilation (--use_pch)"
  845. tip="Aliases: --use_pch&lt;BODY&gt;This option specifies the file name of the precompiled header file for this compilation."
  846. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  847. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  848. command="--use_pch="
  849. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  850. browseType="file"
  851. browseFilterPath="${PROJECT_ROOT}"
  852. valueType="string"/>
  853. <option
  854. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VECTYPES"
  855. name="Support OpenCL C-like vector types (--vectypes, --vtypes)"
  856. tip="Aliases: --vectypes, --vtypes&lt;BODY&gt;Support OpenCL C-like vector types"
  857. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  858. command="--vectypes"
  859. valueType="enumerated">
  860. <enumeratedOptionValue
  861. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VECTYPES._none"
  862. name=""
  863. command=""/>
  864. <enumeratedOptionValue
  865. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VECTYPES.on"
  866. name="on"
  867. command="--vectypes=on"/>
  868. <enumeratedOptionValue
  869. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VECTYPES.off"
  870. name="off"
  871. command="--vectypes=off"/>
  872. </option>
  873. <optionCategory
  874. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PARSER"
  875. name="Language Options"
  876. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  877. <option
  878. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_MODE"
  879. name="Mode"
  880. tip="In 'automatic' mode, CCS will implicitly use the parser-preprocessing options to generate source dependency-graph. In 'manual' mode, no dependency-graph is generated, and the user has full manual control over the preprocessing options."
  881. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  882. valueType="enumerated">
  883. <enumeratedOptionValue
  884. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_MODE.automatic"
  885. name="automatic (default)"
  886. isDefault="true"
  887. command=""/>
  888. <enumeratedOptionValue
  889. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_MODE.manual"
  890. name="manual"
  891. command=""/>
  892. </option>
  893. <option
  894. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_ONLY"
  895. name="Preprocess only (--preproc_only, -ppo)"
  896. tip="Aliases: --preproc_only, -ppo&lt;BODY&gt;Only preprocess the source file(s) and then stop."
  897. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  898. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  899. defaultValue="false"
  900. command="--preproc_only"
  901. valueType="boolean"/>
  902. <option
  903. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_WITH_COMMENT"
  904. name="Preprocess only; maintain comments (--preproc_with_comment, -ppc)"
  905. tip="Aliases: --preproc_with_comment, -ppc&lt;BODY&gt;Only preprocess the source file(s) and then stop; maintain source comments in the output."
  906. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  907. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  908. defaultValue="false"
  909. command="--preproc_with_comment"
  910. valueType="boolean"/>
  911. <option
  912. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_WITH_COMPILE"
  913. name="Continue compilation after using -pp&lt;X&gt; options. (--preproc_with_compile, -ppa)"
  914. tip="Aliases: --preproc_with_compile, -ppa&lt;BODY&gt;This option instructs the compiler to additionally continue compilation of the source file (rather than exiting) after generating a pre-processing .pp output file such as those generated by -ppd (dependencies) -ppi (included files), or -ppm (macros)."
  915. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  916. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  917. defaultValue="false"
  918. command="--preproc_with_compile"
  919. valueType="boolean"/>
  920. <option
  921. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_WITH_LINE"
  922. name="Preprocess only; maintain line directives (--preproc_with_line, -ppl)"
  923. tip="Aliases: --preproc_with_line, -ppl&lt;BODY&gt;Only preprocess the source file(s) and then stop; maintain #line directives in the output.."
  924. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  925. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  926. defaultValue="false"
  927. command="--preproc_with_line"
  928. valueType="boolean"/>
  929. <option
  930. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_DEPENDENCY"
  931. name="Generate include file dependency information (--preproc_dependency, -ppd)"
  932. tip="Aliases: --preproc_dependency, -ppd&lt;BODY&gt;Generate a dependency list for the source file into the file &lt;filename&gt;.pp and then exit. Optionally, name the output file. The output will include all files included in the source file as well as any of the files included. Also see the -ppa option to continue compilation after generating the dependency list (similar to gcc)."
  933. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  934. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  935. command="--preproc_dependency="
  936. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  937. browseType="file"
  938. browseFilterPath="${PROJECT_ROOT}"
  939. valueType="string"/>
  940. <option
  941. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_INCLUDES"
  942. name="Generate first-level include file list (--preproc_includes, -ppi)"
  943. tip="Aliases: --preproc_includes, -ppi&lt;BODY&gt;Generate an include list for the source file into the file &lt;filename&gt;.pp and then exit. Optionally, name the output file. The output will include only those files directly included by the source file. Also see the -ppa option to continue compilation after generating the include list (similar to gcc)."
  944. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  945. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  946. command="--preproc_includes="
  947. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  948. browseType="file"
  949. browseFilterPath="${PROJECT_ROOT}"
  950. valueType="string"/>
  951. <option
  952. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PREPROC_MACROS"
  953. name="Generate list of pre- &amp; user-defined macros (--preproc_macros, -ppm)"
  954. tip="Aliases: --preproc_macros, -ppm&lt;BODY&gt;Generate a list of predefined and user defined macros for the source file into the file &lt;filename&gt;.pp and then exit. Optionally, name the output file. The output will include only those files directly included by the source file. Also see the -ppa option to continue compilation after generating the macro list (similar to gcc)."
  955. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  956. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  957. command="--preproc_macros="
  958. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  959. browseType="file"
  960. browseFilterPath="${PROJECT_ROOT}"
  961. valueType="string"/>
  962. <optionCategory
  963. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PREPROC"
  964. name="Parser Preprocessing Options"
  965. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  966. <option
  967. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.BUFFER_DIAGNOSTICS"
  968. name="Line buffer diagnostic output (--buffer_diagnostics, -pdb)"
  969. tip="Aliases: --buffer_diagnostics, -pdb&lt;BODY&gt;Line buffer diagnostic output to reduce message mixing when compiling in parallel."
  970. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  971. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  972. defaultValue="false"
  973. command="--buffer_diagnostics"
  974. valueType="boolean"/>
  975. <option
  976. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_ERROR"
  977. name="Treat diagnostic &lt;id&gt; as error (--diag_error, -pdse)"
  978. tip="Aliases: --diag_error, -pdse&lt;BODY&gt;Treat diagnostic &lt;id&gt; as error"
  979. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  980. command="--diag_error="
  981. valueType="stringList">
  982. </option>
  983. <option
  984. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_REMARK"
  985. name="Treat diagnostic &lt;id&gt; as remark (--diag_remark, -pdsr)"
  986. tip="Aliases: --diag_remark, -pdsr&lt;BODY&gt;Treat diagnostic &lt;id&gt; as remark"
  987. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  988. command="--diag_remark="
  989. valueType="stringList">
  990. </option>
  991. <option
  992. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_SUPPRESS"
  993. name="Suppress diagnostic &lt;id&gt; (--diag_suppress, -pds)"
  994. tip="Aliases: --diag_suppress, -pds&lt;BODY&gt;Suppress diagnostic &lt;id&gt;"
  995. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  996. command="--diag_suppress="
  997. valueType="stringList">
  998. </option>
  999. <option
  1000. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_WARNING"
  1001. name="Treat diagnostic &lt;id&gt; as warning (--diag_warning, -pdsw)"
  1002. tip="Aliases: --diag_warning, -pdsw&lt;BODY&gt;Treat diagnostic &lt;id&gt; as warning"
  1003. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1004. command="--diag_warning="
  1005. valueType="stringList">
  1006. </option>
  1007. <option
  1008. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_WRAP"
  1009. name="Wrap diagnostic messages (--diag_wrap)"
  1010. tip="Aliases: --diag_wrap&lt;BODY&gt;Set diagnostic messages to wrap at 79 columns (on) or not (off)."
  1011. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1012. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1013. command="--diag_wrap"
  1014. valueType="enumerated">
  1015. <enumeratedOptionValue
  1016. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_WRAP._none"
  1017. name=""
  1018. command=""/>
  1019. <enumeratedOptionValue
  1020. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_WRAP.on"
  1021. name="on"
  1022. command="--diag_wrap=on"/>
  1023. <enumeratedOptionValue
  1024. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_WRAP.off"
  1025. name="off"
  1026. command="--diag_wrap=off"/>
  1027. </option>
  1028. <option
  1029. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DISPLAY_ERROR_NUMBER"
  1030. name="Emit diagnostic identifier numbers (--display_error_number, -pden)"
  1031. tip="Aliases: --display_error_number, -pden&lt;BODY&gt;Emit the diagnostic identifier numbers along with diagnostic messages. These identifiers can be used with options such as -pds to suppress a specific diagnostic."
  1032. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1033. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1034. defaultValue="false"
  1035. command="--display_error_number"
  1036. valueType="boolean"/>
  1037. <option
  1038. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EMIT_WARNINGS_AS_ERRORS"
  1039. name="Treat warnings as errors (--emit_warnings_as_errors, -pdew)"
  1040. tip="Aliases: --emit_warnings_as_errors, -pdew&lt;BODY&gt;Treat warnings as errors"
  1041. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1042. defaultValue="false"
  1043. command="--emit_warnings_as_errors"
  1044. valueType="boolean"/>
  1045. <option
  1046. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ISSUE_REMARKS"
  1047. name="Issue remarks (--issue_remarks, -pdr)"
  1048. tip="Aliases: --issue_remarks, -pdr&lt;BODY&gt;Issue remarks, which are normally suppressed."
  1049. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1050. defaultValue="false"
  1051. command="--issue_remarks"
  1052. valueType="boolean"/>
  1053. <option
  1054. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_WARNINGS"
  1055. name="Suppress warnings (--no_warnings, -pdw)"
  1056. tip="Aliases: --no_warnings, -pdw&lt;BODY&gt;Suppress all parser warnings."
  1057. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1058. defaultValue="false"
  1059. command="--no_warnings"
  1060. valueType="boolean"/>
  1061. <option
  1062. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SET_ERROR_LIMIT"
  1063. name="Set error limit to &lt;count&gt; (--set_error_limit, -pdel)"
  1064. tip="Aliases: --set_error_limit, -pdel&lt;BODY&gt;Set error limit to &lt;count&gt;"
  1065. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1066. command="--set_error_limit="
  1067. valueType="string"/>
  1068. <option
  1069. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.TOOL_VERSION"
  1070. name="Print version numbers for each tool (--tool_version, -version)"
  1071. tip="Aliases: --tool_version, -version&lt;BODY&gt;Print version numbers for each tool"
  1072. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1073. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1074. defaultValue="false"
  1075. command="--tool_version"
  1076. valueType="boolean"/>
  1077. <option
  1078. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VERBOSE_DIAGNOSTICS"
  1079. name="Verbose diagnostics (--verbose_diagnostics, -pdv)"
  1080. tip="Aliases: --verbose_diagnostics, -pdv&lt;BODY&gt;Enable verbose diagnostic information from the parser, including the source line of the error and an indicator of the error position within the line."
  1081. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1082. defaultValue="false"
  1083. command="--verbose_diagnostics"
  1084. valueType="boolean"/>
  1085. <option
  1086. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.WRITE_DIAGNOSTICS_FILE"
  1087. name="Output diagnostic to .err file (--write_diagnostics_file, -pdf)"
  1088. tip="Aliases: --write_diagnostics_file, -pdf&lt;BODY&gt;Write diagnostics to an .err file instead of the standard output. The file name with be the same as the source file but with an .err extension."
  1089. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1090. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1091. defaultValue="false"
  1092. command="--write_diagnostics_file"
  1093. valueType="boolean"/>
  1094. <option
  1095. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.QUIET_LEVEL"
  1096. name="Quiet Level"
  1097. tip="(--verbose) - Display progress information and toolset version when executing. (--quiet) - Suppress common compiler non-diagnostic output. Remarks, errors and warnings will still be generated, as well as feature specific status. (--super_quiet) - Suppress all compiler non-diagnostic output. Remarks, errors and warnings will still be generated."
  1098. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1099. command="@mutex"
  1100. valueType="enumerated">
  1101. <enumeratedOptionValue
  1102. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.QUIET_LEVEL._none"
  1103. name=""
  1104. command=""/>
  1105. <enumeratedOptionValue
  1106. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.QUIET_LEVEL.VERBOSE"
  1107. name="Display banner and function progress information (--verbose)"
  1108. command="--verbose"/>
  1109. <enumeratedOptionValue
  1110. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.QUIET_LEVEL.QUIET"
  1111. name="Quiet Mode (--quiet, -q)"
  1112. command="--quiet"/>
  1113. <enumeratedOptionValue
  1114. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.QUIET_LEVEL.SUPER_QUIET"
  1115. name="Super Quiet Mode (--super_quiet, -qq)"
  1116. command="--super_quiet"/>
  1117. </option>
  1118. <optionCategory
  1119. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.PDIAG"
  1120. name="Diagnostic Options"
  1121. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1122. <option
  1123. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_FUNC_SUBSECTIONS"
  1124. name="Place each function in a separate subsection (--gen_func_subsections, -mo)"
  1125. tip="Aliases: --gen_func_subsections, -mo&lt;BODY&gt;Placing functions in subsections allows the linker to remove unused functions at link time. If the option is not specified, the default behavior is off"
  1126. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1127. command="--gen_func_subsections"
  1128. valueType="enumerated">
  1129. <enumeratedOptionValue
  1130. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_FUNC_SUBSECTIONS._none"
  1131. name=""
  1132. command=""/>
  1133. <enumeratedOptionValue
  1134. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_FUNC_SUBSECTIONS.on"
  1135. name="on"
  1136. command="--gen_func_subsections=on"/>
  1137. <enumeratedOptionValue
  1138. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_FUNC_SUBSECTIONS.off"
  1139. name="off"
  1140. command="--gen_func_subsections=off"/>
  1141. </option>
  1142. <option
  1143. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_DATA_SUBSECTIONS"
  1144. name="Place structs and arrays in separate subsections (--gen_data_subsections)"
  1145. tip="Aliases: --gen_data_subsections&lt;BODY&gt;Placing structs and arrays in subsections allows the linker to remove unused data at link time. If the option is not specified, the default behavior is on"
  1146. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1147. command="--gen_data_subsections"
  1148. valueType="enumerated">
  1149. <enumeratedOptionValue
  1150. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_DATA_SUBSECTIONS._none"
  1151. name=""
  1152. command=""/>
  1153. <enumeratedOptionValue
  1154. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_DATA_SUBSECTIONS.on"
  1155. name="on"
  1156. command="--gen_data_subsections=on"/>
  1157. <enumeratedOptionValue
  1158. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_DATA_SUBSECTIONS.off"
  1159. name="off"
  1160. command="--gen_data_subsections=off"/>
  1161. </option>
  1162. <option
  1163. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.WCHAR_T"
  1164. name="Set the size (in bits) of the C/C++ type wchar_t (16,32) (--wchar_t)"
  1165. tip="Aliases: --wchar_t&lt;BODY&gt;Designate the size of the C/C++ type wchar_t. In EABI mode users can choose either 16-bit or 32-bit wchar_t type. Note that objects built with 16-bit wchar_t are not compatible with 32-bit wchar_t objects. The default is 16-bit wchar_t."
  1166. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1167. command="--wchar_t"
  1168. valueType="enumerated">
  1169. <enumeratedOptionValue
  1170. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.WCHAR_T._none"
  1171. name=""
  1172. command=""/>
  1173. <enumeratedOptionValue
  1174. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.WCHAR_T.16"
  1175. name="16"
  1176. command="--wchar_t=16"/>
  1177. <enumeratedOptionValue
  1178. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.WCHAR_T.32"
  1179. name="32"
  1180. command="--wchar_t=32"/>
  1181. </option>
  1182. <option
  1183. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUG_SOFTWARE_PIPELINE"
  1184. name="Generate verbose software pipelining information (--debug_software_pipeline, -mw)"
  1185. tip="Aliases: --debug_software_pipeline, -mw&lt;BODY&gt;Generate verbose software pipelining information"
  1186. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1187. defaultValue="false"
  1188. command="--debug_software_pipeline"
  1189. valueType="boolean"/>
  1190. <option
  1191. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DISABLE_SOFTWARE_PIPELINE"
  1192. name="Disable software pipelining (--disable_software_pipeline, -mu)"
  1193. tip="Aliases: --disable_software_pipeline, -mu&lt;BODY&gt;Disable software pipelining"
  1194. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1195. defaultValue="false"
  1196. command="--disable_software_pipeline"
  1197. valueType="boolean"/>
  1198. <option
  1199. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DPREL"
  1200. name="Always use DP-relative addressing for data (ELF only) (--dprel)"
  1201. tip="Aliases: --dprel&lt;BODY&gt;Always use DP-relative addressing for data (ELF only)"
  1202. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1203. defaultValue="false"
  1204. command="--dprel"
  1205. valueType="boolean"/>
  1206. <option
  1207. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_NOT_ASSOCIATIVE"
  1208. name="Do not reorder floating point operations (--fp_not_associative, -mc)"
  1209. tip="Aliases: --fp_not_associative, -mc&lt;BODY&gt;Do not reorder floating point operations"
  1210. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1211. defaultValue="false"
  1212. command="--fp_not_associative"
  1213. valueType="boolean"/>
  1214. <option
  1215. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INTERRUPT_THRESHOLD"
  1216. name="Specify maximum disabled interrupt cycles (--interrupt_threshold, -mi)"
  1217. tip="Aliases: --interrupt_threshold, -mi&lt;BODY&gt;Specify the maximum number of cycles that interrupts may be disabled."
  1218. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1219. fieldEditor="com.ti.ccstudio.project.ui.ValueOptionEditor"
  1220. fieldEditorExtraArgument="command=--interrupt_threshold; supportsFlagMode=true;"
  1221. commandGenerator="com.ti.common.project.core.internal.options.ValueOptionCommandGenerator"
  1222. command="${value}"
  1223. valueType="string"/>
  1224. <option
  1225. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__CONST"
  1226. name="Const access model (--mem_model:const)"
  1227. tip="Aliases: --mem_model:const&lt;BODY&gt;Const access model"
  1228. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1229. command="--mem_model:const"
  1230. valueType="enumerated">
  1231. <enumeratedOptionValue
  1232. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__CONST._none"
  1233. name=""
  1234. command=""/>
  1235. <enumeratedOptionValue
  1236. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__CONST.data"
  1237. name="data"
  1238. command="--mem_model:const=data"/>
  1239. <enumeratedOptionValue
  1240. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__CONST.far"
  1241. name="far"
  1242. command="--mem_model:const=far"/>
  1243. <enumeratedOptionValue
  1244. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__CONST.far_aggregates"
  1245. name="far_aggregates"
  1246. command="--mem_model:const=far_aggregates"/>
  1247. </option>
  1248. <option
  1249. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__DATA"
  1250. name="Data access model (--mem_model:data)"
  1251. tip="Aliases: --mem_model:data&lt;BODY&gt;Data access model"
  1252. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1253. command="--mem_model:data"
  1254. valueType="enumerated">
  1255. <enumeratedOptionValue
  1256. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__DATA._none"
  1257. name=""
  1258. command=""/>
  1259. <enumeratedOptionValue
  1260. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__DATA.near"
  1261. name="near"
  1262. command="--mem_model:data=near"/>
  1263. <enumeratedOptionValue
  1264. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__DATA.far"
  1265. name="far"
  1266. command="--mem_model:data=far"/>
  1267. <enumeratedOptionValue
  1268. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MEM_MODEL__DATA.far_aggregates"
  1269. name="far_aggregates"
  1270. command="--mem_model:data=far_aggregates"/>
  1271. </option>
  1272. <option
  1273. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_BAD_ALIASES"
  1274. name="Assume no irregular alias or loop behavior (--no_bad_aliases, -mt)"
  1275. tip="Aliases: --no_bad_aliases, -mt&lt;BODY&gt;Assume no irregular alias or loop behavior"
  1276. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1277. defaultValue="false"
  1278. command="--no_bad_aliases"
  1279. valueType="boolean"/>
  1280. <option
  1281. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_COMPRESS"
  1282. name="Disable compression for 6400+ (--no_compress)"
  1283. tip="Aliases: --no_compress&lt;BODY&gt;This option disables compression (use of 16-bit instructions) for 6400+. It also tells the assembler to (1) prevent labeled execute packets from spanning fetch packet boundaries, (2) pad the end of code sections to 32-byte boundaries, and (3) handle .align directives. Normally for 6400+, these are the responsibilities of the compressor (cmp6x)."
  1284. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1285. defaultValue="false"
  1286. command="--no_compress"
  1287. valueType="boolean"/>
  1288. <option
  1289. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_RELOAD_ERRORS"
  1290. name="Prevent loop buffer reload-related error detection (--no_reload_errors)"
  1291. tip="Aliases: --no_reload_errors&lt;BODY&gt;Prevent detection of loop buffer reload-related errors. Accept loop buffer assembly code that would normally cause the assembler to issue loop buffer reload-related errors."
  1292. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1293. defaultValue="false"
  1294. command="--no_reload_errors"
  1295. valueType="boolean"/>
  1296. <option
  1297. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PROFILE__BREAKPT"
  1298. name="Compile for breakpoint-based profiling (--profile:breakpt)"
  1299. tip="Aliases: --profile:breakpt&lt;BODY&gt;Disable optimizations that cannot be handled by a breakpoint-based profiler"
  1300. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1301. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1302. defaultValue="false"
  1303. command="--profile:breakpt"
  1304. valueType="boolean"/>
  1305. <option
  1306. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PROFILE__POWER"
  1307. name="Compile for power profiling (--profile:power)"
  1308. tip="Aliases: --profile:power&lt;BODY&gt;Enable power profiling support by inserting NOPs into the frame code. These NOPs can then be instrumented by the power profiling tooling to track power usage of functions. If the power profiling tool is not used, this option will increase the cycle count of each function because of the NOPs. This switch also disables optimizations that cannot be handled by the power-profiler."
  1309. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1310. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1311. defaultValue="false"
  1312. command="--profile:power"
  1313. valueType="boolean"/>
  1314. <option
  1315. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.RAMFUNC"
  1316. name="Run functions from RAM. (--ramfunc)"
  1317. tip="Aliases: --ramfunc&lt;BODY&gt;Indicate that each function will be run out of RAM. Functions will be placed in RAM and optimized for RAM execution. Equivalent to specifying __attribute__((ramfunc)) on all functions in the translation units compiled with this option. For additional information, see http://processors.wiki.ti.com/index.php/Ramfunc_Attribute"
  1318. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1319. command="--ramfunc"
  1320. valueType="enumerated">
  1321. <enumeratedOptionValue
  1322. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.RAMFUNC._none"
  1323. name=""
  1324. command=""/>
  1325. <enumeratedOptionValue
  1326. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.RAMFUNC.on"
  1327. name="on"
  1328. command="--ramfunc=on"/>
  1329. <enumeratedOptionValue
  1330. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.RAMFUNC.off"
  1331. name="off"
  1332. command="--ramfunc=off"/>
  1333. </option>
  1334. <option
  1335. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SMALL_ENUM"
  1336. name="Enums may be char/short, instead of int (--small_enum, --small-enum)"
  1337. tip="Aliases: --small_enum, --small-enum&lt;BODY&gt;Enums may be char/short, instead of int"
  1338. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1339. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1340. defaultValue="false"
  1341. command="--small_enum"
  1342. valueType="boolean"/>
  1343. <option
  1344. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SPECULATE_LOADS"
  1345. name="Specify speculative load byte count threshold or 'auto' (--speculate_loads, -mh)"
  1346. tip="Aliases: --speculate_loads, -mh&lt;BODY&gt;Specify the number of bytes the compiler is allowed to speculatively load beyond the proven allocated memory.
  1347. The argument 0 (-mh=0) has a special meaning and turns off speculative loads.
  1348. The special argument 'auto' (-mh=auto) means the compiler chooses the number of bytes and also adds required padding during link step.
  1349. -mh with no argument means no limit on the number of bytes loaded speculatively by the compiler."
  1350. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1351. command="--speculate_loads="
  1352. valueType="string"/>
  1353. <option
  1354. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SPECULATE_UNKNOWN_LOADS"
  1355. name="Speculate loads with unbounded address ranges (--speculate_unknown_loads)"
  1356. tip="Aliases: --speculate_unknown_loads&lt;BODY&gt;Speculate loads with unbounded address ranges"
  1357. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1358. defaultValue="false"
  1359. command="--speculate_unknown_loads"
  1360. valueType="boolean"/>
  1361. <option
  1362. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.TARGET_COMPATIBILITY_6200"
  1363. name="Enable 62xx compatibility (Option disabled) (--target_compatibility_6200, -mb)"
  1364. tip="Aliases: --target_compatibility_6200, -mb&lt;BODY&gt;Enable 62xx compatibility (Option disabled)"
  1365. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1366. defaultValue="false"
  1367. command="--target_compatibility_6200"
  1368. valueType="boolean"/>
  1369. <option
  1370. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.USE_CONST_FOR_ALIAS_ANALYSIS"
  1371. name="Use const to disambiguate pointers. (--use_const_for_alias_analysis, -ox)"
  1372. tip="Aliases: --use_const_for_alias_analysis, -ox&lt;BODY&gt;Treats pointer-to-const as an indication that no other store within the pointer's scope will affect the pointer's target."
  1373. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1374. defaultValue="false"
  1375. command="--use_const_for_alias_analysis"
  1376. valueType="boolean"/>
  1377. <optionCategory
  1378. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MODEL"
  1379. name="Runtime Model Options"
  1380. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1381. <option
  1382. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_REASSOC"
  1383. name="Allow reassociation of FP arithmetic (--fp_reassoc)"
  1384. tip="Aliases: --fp_reassoc&lt;BODY&gt;Set to on to allow reassociation of floating point arithmetic even in cases where the reassociation will result in a slightly different answer."
  1385. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1386. command="--fp_reassoc"
  1387. valueType="enumerated">
  1388. <enumeratedOptionValue
  1389. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_REASSOC._none"
  1390. name=""
  1391. command=""/>
  1392. <enumeratedOptionValue
  1393. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_REASSOC.on"
  1394. name="on"
  1395. command="--fp_reassoc=on"/>
  1396. <enumeratedOptionValue
  1397. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_REASSOC.off"
  1398. name="off"
  1399. command="--fp_reassoc=off"/>
  1400. </option>
  1401. <option
  1402. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SAT_REASSOC"
  1403. name="Allow reassociation of sat arithmetic (--sat_reassoc)"
  1404. tip="Aliases: --sat_reassoc&lt;BODY&gt;Set to on to allow reassociation of saturating arithmetic even in cases where the reassociation will cause saturation to occur differently."
  1405. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1406. command="--sat_reassoc"
  1407. valueType="enumerated">
  1408. <enumeratedOptionValue
  1409. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SAT_REASSOC._none"
  1410. name=""
  1411. command=""/>
  1412. <enumeratedOptionValue
  1413. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SAT_REASSOC.on"
  1414. name="on"
  1415. command="--sat_reassoc=on"/>
  1416. <enumeratedOptionValue
  1417. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SAT_REASSOC.off"
  1418. name="off"
  1419. command="--sat_reassoc=off"/>
  1420. </option>
  1421. <option
  1422. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PROGRAM_LEVEL_COMPILE"
  1423. name="Program mode compilation (--program_level_compile, -pm)"
  1424. tip="Aliases: --program_level_compile, -pm&lt;BODY&gt;Enable program mode compilation."
  1425. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1426. resourceFilter="project"
  1427. defaultValue="false"
  1428. command="--program_level_compile"
  1429. valueType="boolean"/>
  1430. <option
  1431. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CALL_ASSUMPTIONS"
  1432. name="Specify call assumptions when optimizing (--call_assumptions, -op)"
  1433. tip="Aliases: --call_assumptions, -op&lt;BODY&gt;Specify assumptions to make about function calls when optimizing.
  1434. Level 0 (-op0) indicates that the module has functions that are called from other modules.
  1435. Level 1 (-op1) indicates that the module does not have functions that are called by other modules but has global variables that are modified in other modules.
  1436. Level 2 (-op2) indicates that the module does not have functions that are called or globals that are modified by other modules.
  1437. Level 3 (-op3) indicates that the module has functions that are called by other modules but does not have globals that are modified by other modules."
  1438. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1439. command="--call_assumptions"
  1440. valueType="enumerated">
  1441. <enumeratedOptionValue
  1442. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CALL_ASSUMPTIONS._none"
  1443. name=""
  1444. command=""/>
  1445. <enumeratedOptionValue
  1446. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CALL_ASSUMPTIONS.0"
  1447. name="0"
  1448. command="--call_assumptions=0"/>
  1449. <enumeratedOptionValue
  1450. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CALL_ASSUMPTIONS.1"
  1451. name="1"
  1452. command="--call_assumptions=1"/>
  1453. <enumeratedOptionValue
  1454. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CALL_ASSUMPTIONS.2"
  1455. name="2"
  1456. command="--call_assumptions=2"/>
  1457. <enumeratedOptionValue
  1458. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CALL_ASSUMPTIONS.3"
  1459. name="3"
  1460. command="--call_assumptions=3"/>
  1461. </option>
  1462. <option
  1463. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.AUTO_INLINE"
  1464. name="Specify threshold for automatic inlining (--auto_inline, -oi)"
  1465. tip="Aliases: --auto_inline, -oi&lt;BODY&gt;Specify threshold for automatic inlining"
  1466. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1467. command="--auto_inline="
  1468. valueType="string"/>
  1469. <option
  1470. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DISABLE_INLINING"
  1471. name="Disable inlining (--disable_inlining)"
  1472. tip="Aliases: --disable_inlining&lt;BODY&gt;Disables both automatic inlining and inlining based on the inline keyword. Functions can still be forced to inline by using the FUNC_ALWAYS_INLINE pragma."
  1473. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1474. defaultValue="false"
  1475. command="--disable_inlining"
  1476. valueType="boolean"/>
  1477. <option
  1478. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DISABLE_PUSH_POP"
  1479. name="Disable push-pop optimization. (--disable_push_pop)"
  1480. tip="Aliases: --disable_push_pop&lt;BODY&gt;Disable code-size optimization that calls RTS functions _push_rts() and _pop_rts()."
  1481. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1482. defaultValue="false"
  1483. command="--disable_push_pop"
  1484. valueType="boolean"/>
  1485. <option
  1486. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_MODE"
  1487. name="Floating Point mode (--fp_mode)"
  1488. tip="Aliases: --fp_mode&lt;BODY&gt;Specify a floating point mode. In relaxed mode if the result of a double-precision floating point expression is assigned to a single-precision floating-point or an integer, the computations in the expression are converted to single-precision computations. Any double-precision constants in the expression are also converted to single-precision if they will fit. Hardware instructions may replace floating point library calls when available. Floating point arithmetic reassociation is also allowed. This behavior is not ISO conformant, but results in faster/smaller code, with some loss in accuracy."
  1489. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1490. command="--fp_mode"
  1491. valueType="enumerated">
  1492. <enumeratedOptionValue
  1493. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_MODE._none"
  1494. name=""
  1495. command=""/>
  1496. <enumeratedOptionValue
  1497. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_MODE.relaxed"
  1498. name="relaxed"
  1499. command="--fp_mode=relaxed"/>
  1500. <enumeratedOptionValue
  1501. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_MODE.strict"
  1502. name="strict"
  1503. command="--fp_mode=strict"/>
  1504. </option>
  1505. <option
  1506. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MULTITHREAD"
  1507. name="Multi-threading is assumed (--multithread)"
  1508. tip="Aliases: --multithread&lt;BODY&gt;Indicate that application uses multi-threading or prefers to be linked with a thread-safe version of the RTS library"
  1509. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1510. defaultValue="false"
  1511. command="--multithread"
  1512. valueType="boolean"/>
  1513. <option
  1514. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPENMP"
  1515. name="Enable support for OpenMP 3.0 (--openmp, --omp)"
  1516. tip="Aliases: --openmp, --omp&lt;BODY&gt;Enable support for OpenMP 3.0"
  1517. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1518. defaultValue="false"
  1519. command="--openmp"
  1520. valueType="boolean"/>
  1521. <option
  1522. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SINGLE_INLINE"
  1523. name="Inline functions only called once. (--single_inline)"
  1524. tip="Aliases: --single_inline&lt;BODY&gt;Inline function that are called only once. Will inline these functions even if auto inlining has been turned off (-oi0)"
  1525. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1526. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1527. defaultValue="false"
  1528. command="--single_inline"
  1529. valueType="boolean"/>
  1530. <option
  1531. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ALIASED_VARIABLES"
  1532. name="Assume called funcs create hidden aliases (rare) (--aliased_variables, -ma)"
  1533. tip="Aliases: --aliased_variables, -ma&lt;BODY&gt;Assume called funcs create hidden aliases (rare)"
  1534. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1535. defaultValue="false"
  1536. command="--aliased_variables"
  1537. valueType="boolean"/>
  1538. <optionCategory
  1539. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.OPTIM"
  1540. name="Advanced Optimizations"
  1541. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1542. <option
  1543. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ENTRY_HOOK"
  1544. name="Insert this call at entry to each function (--entry_hook)"
  1545. tip="Aliases: --entry_hook&lt;BODY&gt;Insert this call at entry to each function"
  1546. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.HOOK"
  1547. command="--entry_hook="
  1548. valueType="string"/>
  1549. <option
  1550. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXIT_HOOK"
  1551. name="Insert this call at exit from each function (--exit_hook)"
  1552. tip="Aliases: --exit_hook&lt;BODY&gt;Insert this call at exit from each function"
  1553. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.HOOK"
  1554. command="--exit_hook="
  1555. valueType="string"/>
  1556. <option
  1557. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ENTRY_PARM"
  1558. name="Pass caller's name or address to entry hook (--entry_parm)"
  1559. tip="Aliases: --entry_parm&lt;BODY&gt;Pass caller's name or address to entry hook"
  1560. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.HOOK"
  1561. command="--entry_parm"
  1562. valueType="enumerated">
  1563. <enumeratedOptionValue
  1564. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ENTRY_PARM._none"
  1565. name=""
  1566. command=""/>
  1567. <enumeratedOptionValue
  1568. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ENTRY_PARM.name"
  1569. name="name"
  1570. command="--entry_parm=name"/>
  1571. <enumeratedOptionValue
  1572. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ENTRY_PARM.address"
  1573. name="address"
  1574. command="--entry_parm=address"/>
  1575. <enumeratedOptionValue
  1576. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ENTRY_PARM.none"
  1577. name="none"
  1578. command="--entry_parm=none"/>
  1579. </option>
  1580. <option
  1581. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXIT_PARM"
  1582. name="Pass caller's name or address to exit hook (--exit_parm)"
  1583. tip="Aliases: --exit_parm&lt;BODY&gt;Pass caller's name or address to exit hook"
  1584. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.HOOK"
  1585. command="--exit_parm"
  1586. valueType="enumerated">
  1587. <enumeratedOptionValue
  1588. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXIT_PARM._none"
  1589. name=""
  1590. command=""/>
  1591. <enumeratedOptionValue
  1592. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXIT_PARM.name"
  1593. name="name"
  1594. command="--exit_parm=name"/>
  1595. <enumeratedOptionValue
  1596. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXIT_PARM.address"
  1597. name="address"
  1598. command="--exit_parm=address"/>
  1599. <enumeratedOptionValue
  1600. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXIT_PARM.none"
  1601. name="none"
  1602. command="--exit_parm=none"/>
  1603. </option>
  1604. <option
  1605. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.REMOVE_HOOKS_WHEN_INLINING"
  1606. name="Remove entry/exit hooks from inlined functions (--remove_hooks_when_inlining)"
  1607. tip="Aliases: --remove_hooks_when_inlining&lt;BODY&gt;Remove the entry and exit hooks from the bodies of inlined functions."
  1608. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.HOOK"
  1609. defaultValue="false"
  1610. command="--remove_hooks_when_inlining"
  1611. valueType="boolean"/>
  1612. <optionCategory
  1613. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.HOOK"
  1614. name="Entry/Exit Hook Options"
  1615. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1616. <option
  1617. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_PROFILE_INFO"
  1618. name="Generate profile feedback data (--gen_profile_info)"
  1619. tip="Aliases: --gen_profile_info&lt;BODY&gt;Instrument the object code that is generated for a compilation with path profiling information. The compiler will annotate the code that is generated for an application so that, when executed, the application can generate information about which code paths were executed and how often. This profile data can then be used by subsequent compiles to analyze code coverage or call graph information to assist with subsequent development."
  1620. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FEEDBACK"
  1621. defaultValue="false"
  1622. command="--gen_profile_info"
  1623. valueType="boolean"/>
  1624. <option
  1625. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ANALYZE"
  1626. name="Generate analysis info from profile data (--analyze)"
  1627. tip="Aliases: --analyze&lt;BODY&gt;Generate analysis information about code coverage or call graph information in the form of CSV files. This information can then be read and interpreted by other tools. For example, the cache layout tool, clt6x, can be used to interpret the call graph information and produce a preferred function order that can be incorporated into the application link. The compiler can only generate one kind of analysis information for a given invocation of the compiler."
  1628. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FEEDBACK"
  1629. command="--analyze"
  1630. valueType="enumerated">
  1631. <enumeratedOptionValue
  1632. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ANALYZE._none"
  1633. name=""
  1634. command=""/>
  1635. <enumeratedOptionValue
  1636. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ANALYZE.codecov"
  1637. name="codecov"
  1638. command="--analyze=codecov"/>
  1639. <enumeratedOptionValue
  1640. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ANALYZE.callgraph"
  1641. name="callgraph"
  1642. command="--analyze=callgraph"/>
  1643. </option>
  1644. <option
  1645. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ANALYZE_ONLY"
  1646. name="Only generate analysis (--analyze_only)"
  1647. tip="Aliases: --analyze_only&lt;BODY&gt;Generate analysis only; do not continue compilation. This option is used in combination with the --analyze option to instruct the compiler to halt the compilation after it has completed the generation of analysis information requested in the --analyze option."
  1648. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FEEDBACK"
  1649. defaultValue="false"
  1650. command="--analyze_only"
  1651. valueType="boolean"/>
  1652. <option
  1653. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.USE_PROFILE_INFO"
  1654. name="Use profile feedback file(s) (--use_profile_info)"
  1655. tip="Aliases: --use_profile_info&lt;BODY&gt;This option is used in combination with the --analyze option to generate analysis information about code coverage or call graph information in the form of CSV files. This information can then be read and interpreted by other tools. For example, the cache layout tool, clt6x, can be used to interpret the call graph information and produce a preferred function order that can be incorporated into the application link. The compiler can only generate one kind of analysis information for a given invocation of the compiler."
  1656. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FEEDBACK"
  1657. command="--use_profile_info="
  1658. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1659. browseType="file"
  1660. browseFilterPath="${PROJECT_ROOT}"
  1661. valueType="stringList">
  1662. </option>
  1663. <optionCategory
  1664. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FEEDBACK"
  1665. name="Feedback and Analysis Options"
  1666. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1667. <option
  1668. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STD_LIB_FUNC_DEFINED"
  1669. name="File contains an RTS library function. (--std_lib_func_defined, -ol1)"
  1670. tip="Aliases: --std_lib_func_defined, -ol1&lt;BODY&gt;File contains an RTS library function."
  1671. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.LIB"
  1672. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1673. defaultValue="false"
  1674. command="--std_lib_func_defined"
  1675. valueType="boolean"/>
  1676. <option
  1677. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STD_LIB_FUNC_NOT_DEFINED"
  1678. name="File does not define any RTS library func (def.) (--std_lib_func_not_defined, -ol2)"
  1679. tip="Aliases: --std_lib_func_not_defined, -ol2&lt;BODY&gt;File does not define any RTS library func (def.)"
  1680. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.LIB"
  1681. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1682. defaultValue="false"
  1683. command="--std_lib_func_not_defined"
  1684. valueType="boolean"/>
  1685. <option
  1686. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STD_LIB_FUNC_REDEFINED"
  1687. name="File redefines an RTS library function. (--std_lib_func_redefined, -ol0)"
  1688. tip="Aliases: --std_lib_func_redefined, -ol0&lt;BODY&gt;File redefines an RTS library function."
  1689. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.LIB"
  1690. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1691. defaultValue="false"
  1692. command="--std_lib_func_redefined"
  1693. valueType="boolean"/>
  1694. <optionCategory
  1695. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.LIB"
  1696. name="Library Function Assumptions"
  1697. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1698. <option
  1699. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.KEEP_ASM"
  1700. name="Keep the generated assembly language (.asm) file (--keep_asm, -k)"
  1701. tip="Aliases: --keep_asm, -k&lt;BODY&gt;Keep the generated assembly language (.asm) file"
  1702. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1703. defaultValue="false"
  1704. command="-k"
  1705. valueType="boolean"/>
  1706. <option
  1707. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_LISTING"
  1708. name="Generate listing file (--asm_listing, -al)"
  1709. tip="Aliases: --asm_listing, -al&lt;BODY&gt;Generate listing file"
  1710. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1711. defaultValue="false"
  1712. command="--asm_listing"
  1713. valueType="boolean"/>
  1714. <option
  1715. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SOURCE_INTERLIST"
  1716. name="Source interlist"
  1717. tip="(--src_interlist) - Generate interlisted assembly file (--c_src_interlist) - Generate C source interlisted assembly file"
  1718. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1719. command="@mutex"
  1720. valueType="enumerated">
  1721. <enumeratedOptionValue
  1722. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SOURCE_INTERLIST._none"
  1723. name=""
  1724. command=""/>
  1725. <enumeratedOptionValue
  1726. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SOURCE_INTERLIST.SRC_INTERLIST"
  1727. name="Generate interlisted assembly file (--src_interlist, -s)"
  1728. command="--src_interlist"/>
  1729. <enumeratedOptionValue
  1730. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SOURCE_INTERLIST.C_SRC_INTERLIST"
  1731. name="Generate C source interlisted assembly file (--c_src_interlist, -ss)"
  1732. command="--c_src_interlist"/>
  1733. </option>
  1734. <option
  1735. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_DEFINE"
  1736. name="Pre-define assembly symbol NAME (--asm_define, -ad)"
  1737. tip="Aliases: --asm_define, -ad&lt;BODY&gt;Pre-define the assembly symbol NAME, optionally setting its contents to 'value'."
  1738. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1739. command="--asm_define="
  1740. valueType="stringList">
  1741. </option>
  1742. <option
  1743. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_UNDEFINE"
  1744. name="Undefine assembly symbol NAME (--asm_undefine, -au)"
  1745. tip="Aliases: --asm_undefine, -au&lt;BODY&gt;Undefine assembly symbol NAME"
  1746. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1747. command="--asm_undefine="
  1748. valueType="stringList">
  1749. </option>
  1750. <option
  1751. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_CROSS_REFERENCE_LISTING"
  1752. name="Generate cross reference assembly listing file (--asm_cross_reference_listing)"
  1753. tip="Aliases: --asm_cross_reference_listing&lt;BODY&gt;Generate cross reference assembly listing file"
  1754. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1755. defaultValue="false"
  1756. command="--asm_cross_reference_listing"
  1757. valueType="boolean"/>
  1758. <option
  1759. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_DEPENDENCY"
  1760. name="Generate assembly dependency information (--asm_dependency, -apd)"
  1761. tip="Aliases: --asm_dependency, -apd&lt;BODY&gt;Generate assembly dependency information. Optionally, name the assembly dependency file."
  1762. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1763. command="--asm_dependency="
  1764. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1765. browseType="file"
  1766. browseFilterPath="${PROJECT_ROOT}"
  1767. valueType="string"/>
  1768. <option
  1769. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_INCLUDES"
  1770. name="Generate first-level assembly include file list (--asm_includes, -api)"
  1771. tip="Aliases: --asm_includes, -api&lt;BODY&gt;Generate first-level assembly include file list"
  1772. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1773. defaultValue="false"
  1774. command="--asm_includes"
  1775. valueType="boolean"/>
  1776. <option
  1777. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.COPY_FILE"
  1778. name="Simulate source '.copy filename' (--copy_file, -ahc)"
  1779. tip="Aliases: --copy_file, -ahc&lt;BODY&gt;Simulate source '.copy filename'"
  1780. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1781. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1782. command="--copy_file="
  1783. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1784. browseType="file"
  1785. browseFilterPath="${PROJECT_ROOT}"
  1786. valueType="stringList">
  1787. </option>
  1788. <option
  1789. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CROSS_REFERENCE"
  1790. name="Generate cross reference file (--cross_reference, -ax)"
  1791. tip="Aliases: --cross_reference, -ax&lt;BODY&gt;Generate cross reference file"
  1792. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1793. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1794. defaultValue="false"
  1795. command="--cross_reference"
  1796. valueType="boolean"/>
  1797. <option
  1798. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INCLUDE_FILE"
  1799. name="Simulate source '.include filename' (--include_file, -ahi)"
  1800. tip="Aliases: --include_file, -ahi&lt;BODY&gt;Simulate source '.include filename'"
  1801. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1802. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1803. command="--include_file="
  1804. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1805. browseType="file"
  1806. browseFilterPath="${PROJECT_ROOT}"
  1807. valueType="stringList">
  1808. </option>
  1809. <option
  1810. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_CONST_CLINK"
  1811. name="Do not generate .clink for .const sections (--no_const_clink)"
  1812. tip="Aliases: --no_const_clink&lt;BODY&gt;Do not generate .clink directives for const global arrays. By default these arrays are placed in a .const subsection and conditionally linked."
  1813. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1814. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1815. defaultValue="false"
  1816. command="--no_const_clink"
  1817. valueType="boolean"/>
  1818. <option
  1819. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OUTPUT_ALL_SYMS"
  1820. name="Keep local symbols in output file (--output_all_syms, -as)"
  1821. tip="Aliases: --output_all_syms, -as&lt;BODY&gt;Keep local symbols in output file"
  1822. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1823. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1824. defaultValue="false"
  1825. command="--output_all_syms"
  1826. valueType="boolean"/>
  1827. <option
  1828. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STRIP_COFF_UNDERSCORE"
  1829. name="Aid for transitioning hand-coded assembly from COFF to ELF (--strip_coff_underscore)"
  1830. tip="Aliases: --strip_coff_underscore&lt;BODY&gt;Strip underscores from externally defined or referenced symbols to aid transition of hand-coded assembly code from COFF to ELF."
  1831. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1832. defaultValue="false"
  1833. command="--strip_coff_underscore"
  1834. valueType="boolean"/>
  1835. <option
  1836. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMS_IGNORE_CASE"
  1837. name="Symbol names are not case-significant (--syms_ignore_case, -ac)"
  1838. tip="Aliases: --syms_ignore_case, -ac&lt;BODY&gt;Symbol names are not case-significant"
  1839. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1840. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  1841. defaultValue="false"
  1842. command="--syms_ignore_case"
  1843. valueType="boolean"/>
  1844. <optionCategory
  1845. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ASM"
  1846. name="Assembler Options"
  1847. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1848. <option
  1849. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.AP_FILE"
  1850. name="File is a linear asm file (default for .sa) (--ap_file, -fl)"
  1851. tip="Aliases: --ap_file, -fl&lt;BODY&gt;File is a linear asm file (default for .sa)"
  1852. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILE"
  1853. command="--ap_file="
  1854. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1855. browseType="file"
  1856. browseFilterPath="${PROJECT_ROOT}"
  1857. valueType="stringList">
  1858. </option>
  1859. <option
  1860. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_FILE"
  1861. name="File is an assembly file (default for .asm) (--asm_file, -fa)"
  1862. tip="Aliases: --asm_file, -fa&lt;BODY&gt;File is an assembly file (default for .asm)"
  1863. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILE"
  1864. command="--asm_file="
  1865. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1866. browseType="file"
  1867. browseFilterPath="${PROJECT_ROOT}"
  1868. valueType="stringList">
  1869. </option>
  1870. <option
  1871. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C_FILE"
  1872. name="File is a C file (default for .c/no ext) (--c_file, -fc)"
  1873. tip="Aliases: --c_file, -fc&lt;BODY&gt;File is a C file (default for .c/no ext)"
  1874. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILE"
  1875. command="--c_file="
  1876. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1877. browseType="file"
  1878. browseFilterPath="${PROJECT_ROOT}"
  1879. valueType="stringList">
  1880. </option>
  1881. <option
  1882. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CPP_FILE"
  1883. name="File is a C++ file (default for .C .cpp .cc) (--cpp_file, -fp)"
  1884. tip="Aliases: --cpp_file, -fp&lt;BODY&gt;File is a C++ file (default for .C .cpp .cc)"
  1885. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILE"
  1886. command="--cpp_file="
  1887. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1888. browseType="file"
  1889. browseFilterPath="${PROJECT_ROOT}"
  1890. valueType="stringList">
  1891. </option>
  1892. <option
  1893. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OBJ_FILE"
  1894. name="File is an object file (default for .obj) (--obj_file, -fo)"
  1895. tip="Aliases: --obj_file, -fo&lt;BODY&gt;File is an object file (default for .obj)"
  1896. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILE"
  1897. command="--obj_file="
  1898. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1899. browseType="file"
  1900. browseFilterPath="${PROJECT_ROOT}"
  1901. valueType="stringList">
  1902. </option>
  1903. <optionCategory
  1904. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILE"
  1905. name="File Type Specifier"
  1906. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1907. <option
  1908. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIRECTORY_MODE"
  1909. name="Mode"
  1910. tip="In 'automatic' mode, CCS will implicitly control intermediate-file directories to reflect the source-file directory structure. In 'manual' mode, the user has full manual control over the intermediate-file directories."
  1911. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1912. valueType="enumerated">
  1913. <enumeratedOptionValue
  1914. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIRECTORY_MODE.automatic"
  1915. name="automatic (default)"
  1916. isDefault="true"
  1917. command=""/>
  1918. <enumeratedOptionValue
  1919. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIRECTORY_MODE.manual"
  1920. name="manual"
  1921. command=""/>
  1922. </option>
  1923. <option
  1924. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_DIRECTORY"
  1925. name="Assembly file directory (default is .) (--asm_directory, -fs)"
  1926. tip="Aliases: --asm_directory, -fs&lt;BODY&gt;Assembly file directory (default is .)"
  1927. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1928. command="--asm_directory="
  1929. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1930. browseType="directory"
  1931. browseFilterPath="${PROJECT_BUILD_DIR}"
  1932. valueType="string"/>
  1933. <option
  1934. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LIST_DIRECTORY"
  1935. name="Listing/xref file directory (default is .obj dir) (--list_directory, -ff)"
  1936. tip="Aliases: --list_directory, -ff&lt;BODY&gt;Listing/xref file directory (default is .obj dir)"
  1937. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1938. command="--list_directory="
  1939. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1940. browseType="directory"
  1941. browseFilterPath="${PROJECT_BUILD_DIR}"
  1942. valueType="string"/>
  1943. <option
  1944. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OBJ_DIRECTORY"
  1945. name="Object file directory (default is .) (--obj_directory, -fr)"
  1946. tip="Aliases: --obj_directory, -fr&lt;BODY&gt;Object file directory (default is .)"
  1947. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1948. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DirectoryOptionApplicabilityCalculator"
  1949. command="--obj_directory="
  1950. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1951. browseType="directory"
  1952. browseFilterPath="${PROJECT_BUILD_DIR}"
  1953. valueType="string"/>
  1954. <option
  1955. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OUTPUT_FILE"
  1956. name="Compilation output file name, can override --obj_directory (--output_file, -fe)"
  1957. tip="Aliases: --output_file, -fe&lt;BODY&gt;Compilation output file name, can override --obj_directory"
  1958. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1959. command="--output_file="
  1960. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1961. browseType="file"
  1962. browseFilterPath="${PROJECT_BUILD_DIR}"
  1963. valueType="string"/>
  1964. <option
  1965. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PP_DIRECTORY"
  1966. name="Preprocessor file directory (default is .) (--pp_directory)"
  1967. tip="Aliases: --pp_directory&lt;BODY&gt;Place preprocessor output files in specified directory. The directory must exist prior to compiler invocation."
  1968. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1969. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.PreprocOptionApplicabilityCalculator"
  1970. command="--pp_directory="
  1971. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1972. browseType="directory"
  1973. browseFilterPath="${PROJECT_BUILD_DIR}"
  1974. valueType="string"/>
  1975. <option
  1976. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.TEMP_DIRECTORY"
  1977. name="Temporary file directory (default is .) (--temp_directory, -ft)"
  1978. tip="Aliases: --temp_directory, -ft&lt;BODY&gt;Temporary file directory (default is .)"
  1979. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1980. command="--temp_directory="
  1981. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  1982. browseType="directory"
  1983. browseFilterPath="${PROJECT_BUILD_DIR}"
  1984. valueType="string"/>
  1985. <optionCategory
  1986. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DIRECTORY"
  1987. name="Directory Specifier"
  1988. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  1989. <option
  1990. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.AP_EXTENSION"
  1991. name="Extension for linear asm files (default is .sa) (--ap_extension, -el)"
  1992. tip="Aliases: --ap_extension, -el&lt;BODY&gt;Extension for linear asm files (default is .sa)"
  1993. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILEEXT"
  1994. command="--ap_extension="
  1995. valueType="string"/>
  1996. <option
  1997. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ASM_EXTENSION"
  1998. name="Extension for assembly files (default is .asm) (--asm_extension, -ea)"
  1999. tip="Aliases: --asm_extension, -ea&lt;BODY&gt;Extension for assembly files (default is .asm)"
  2000. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILEEXT"
  2001. command="--asm_extension="
  2002. valueType="string"/>
  2003. <option
  2004. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.C_EXTENSION"
  2005. name="Extension for C files (default is .c) (--c_extension, -ec)"
  2006. tip="Aliases: --c_extension, -ec&lt;BODY&gt;Extension for C files (default is .c)"
  2007. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILEEXT"
  2008. command="--c_extension="
  2009. valueType="string"/>
  2010. <option
  2011. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CPP_EXTENSION"
  2012. name="Extension for C++ files (default is .cpp) (--cpp_extension, -ep)"
  2013. tip="Aliases: --cpp_extension, -ep&lt;BODY&gt;Extension for C++ files (default is .cpp)"
  2014. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILEEXT"
  2015. command="--cpp_extension="
  2016. valueType="string"/>
  2017. <option
  2018. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LISTING_EXTENSION"
  2019. name="Extension for listing files (default is .lst) (--listing_extension, -es)"
  2020. tip="Aliases: --listing_extension, -es&lt;BODY&gt;Extension for listing files (default is .lst)"
  2021. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILEEXT"
  2022. command="--listing_extension="
  2023. valueType="string"/>
  2024. <option
  2025. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OBJ_EXTENSION"
  2026. name="Extension for object files (default is .obj) (--obj_extension, -eo)"
  2027. tip="Aliases: --obj_extension, -eo&lt;BODY&gt;Extension for object files (default is .obj)"
  2028. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILEEXT"
  2029. command="--obj_extension="
  2030. valueType="string"/>
  2031. <optionCategory
  2032. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.FILEEXT"
  2033. name="Default File Extensions"
  2034. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  2035. <option
  2036. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DSBT"
  2037. name="Generate addressing via Dynamic Segment Base Table (--dsbt)"
  2038. tip="Aliases: --dsbt&lt;BODY&gt;This option causes the compiler to load the DP from the Data Segment Address Table (DBST) for every function marked exported. This allows each dynamic object to have its own near DP segment and allows efficient near DP addressing in each dynamic module."
  2039. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2040. defaultValue="false"
  2041. command="--dsbt"
  2042. valueType="boolean"/>
  2043. <option
  2044. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXPORT_ALL_CPP_VTBL"
  2045. name="Export C++ virtual tables by default (--export_all_cpp_vtbl)"
  2046. tip="Aliases: --export_all_cpp_vtbl&lt;BODY&gt;If a c++ class is not exported, its virtual table and typeinfo are not exported. This option exports these symbols for all classes."
  2047. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2048. defaultValue="false"
  2049. command="--export_all_cpp_vtbl"
  2050. valueType="boolean"/>
  2051. <option
  2052. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.IMPORT_HELPER_FUNCTIONS"
  2053. name="Treat compiler helper functions as imported refs (--import_helper_functions)"
  2054. tip="Aliases: --import_helper_functions&lt;BODY&gt;This option tells the compiler to treat calls to compiler helper functions as imported references. Compiler helper functions are part of the runtime support library. This option is useful in platforms that support dynamic shared objects (DSO/DLL) where the OS can provide runtime support in a shared object. Without this option, the compiler treats helper function calls as non-imported references and the supporting runtime functions are statically linked in by the static linker."
  2055. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2056. defaultValue="false"
  2057. command="--import_helper_functions"
  2058. valueType="boolean"/>
  2059. <option
  2060. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.IMPORT_UNDEF"
  2061. name="Import all undefined symbols (--import_undef)"
  2062. tip="Aliases: --import_undef&lt;BODY&gt;This option imports all undefined symbols."
  2063. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2064. command="--import_undef"
  2065. valueType="enumerated">
  2066. <enumeratedOptionValue
  2067. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.IMPORT_UNDEF._none"
  2068. name=""
  2069. command=""/>
  2070. <enumeratedOptionValue
  2071. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.IMPORT_UNDEF.on"
  2072. name="on"
  2073. command="--import_undef=on"/>
  2074. <enumeratedOptionValue
  2075. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.IMPORT_UNDEF.off"
  2076. name="off"
  2077. command="--import_undef=off"/>
  2078. </option>
  2079. <option
  2080. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INLINE_PLT"
  2081. name="Inline the import function call stub. (--inline_plt)"
  2082. tip="Aliases: --inline_plt&lt;BODY&gt;The linker generates an import function call stub to call an imported function. This linker generated call stub is called 'Procedure Linkage Table' (PLT) entry. The PLT entry is similar to a trampoline. The performance of the generated code can be improved if the PLT entry is inlined. This option makes the compiler inline the PLT. Note that the use of this option can increase the code size in some cases. Also the dynamic load time can increase as the dynamic linker needs to patch more entries"
  2083. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2084. command="--inline_plt"
  2085. valueType="enumerated">
  2086. <enumeratedOptionValue
  2087. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INLINE_PLT._none"
  2088. name=""
  2089. command=""/>
  2090. <enumeratedOptionValue
  2091. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INLINE_PLT.on"
  2092. name="on"
  2093. command="--inline_plt=on"/>
  2094. <enumeratedOptionValue
  2095. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INLINE_PLT.off"
  2096. name="off"
  2097. command="--inline_plt=off"/>
  2098. </option>
  2099. <option
  2100. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LINUX"
  2101. name="Generate code for Linux (--linux)"
  2102. tip="Aliases: --linux&lt;BODY&gt;Set all the necessary options to build code for Linux."
  2103. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2104. defaultValue="false"
  2105. command="--linux"
  2106. valueType="boolean"/>
  2107. <option
  2108. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PIC"
  2109. name="Position-independent addressing for a shared object (--pic)"
  2110. tip="Aliases: --pic&lt;BODY&gt;Generate position-independent addressing for a dynamic shared object. All externally visible objects will be addressed through a Global Offset Table (GOT)."
  2111. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2112. command="--pic"
  2113. valueType="enumerated">
  2114. <enumeratedOptionValue
  2115. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PIC._none"
  2116. name=""
  2117. command=""/>
  2118. <enumeratedOptionValue
  2119. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PIC.near"
  2120. name="near"
  2121. command="--pic=near"/>
  2122. <enumeratedOptionValue
  2123. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PIC.far"
  2124. name="far"
  2125. command="--pic=far"/>
  2126. </option>
  2127. <option
  2128. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VISIBILITY"
  2129. name="Specify visibility of global symbols. (--visibility)"
  2130. tip="Aliases: --visibility&lt;BODY&gt;This option specifies the ELF visibility attribute of the global symbols. The ELF visibility attribute controls if and how the symbol can be accessed by other modules."
  2131. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2132. command="--visibility"
  2133. valueType="enumerated">
  2134. <enumeratedOptionValue
  2135. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VISIBILITY._none"
  2136. name=""
  2137. command=""/>
  2138. <enumeratedOptionValue
  2139. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VISIBILITY.default"
  2140. name="default"
  2141. command="--visibility=default"/>
  2142. <enumeratedOptionValue
  2143. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VISIBILITY.protected"
  2144. name="protected"
  2145. command="--visibility=protected"/>
  2146. <enumeratedOptionValue
  2147. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VISIBILITY.hidden"
  2148. name="hidden"
  2149. command="--visibility=hidden"/>
  2150. </option>
  2151. <optionCategory
  2152. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.DYNAMIC"
  2153. name="Dynamic Linking Support Options"
  2154. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  2155. <option
  2156. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.generatedCommandOptionFiles"
  2157. name="[Legacy] Generated Command Option Files"
  2158. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.CMDFILES"
  2159. applicabilityCalculator="com.ti.common.project.core.internal.options.LegacyOptionApplicability"
  2160. valueType="string"/>
  2161. <option
  2162. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CMD_FILE"
  2163. name="Read options from specified file (--cmd_file, -@)"
  2164. tip="Aliases: --cmd_file, -@&lt;BODY&gt;Read additional compile options the specified filename."
  2165. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.CMDFILES"
  2166. applicabilityCalculator="com.ti.common.project.core.internal.options.VirtualOptionApplicability"
  2167. command="--cmd_file="
  2168. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  2169. browseType="file"
  2170. browseFilterPath="${PROJECT_ROOT}"
  2171. valueType="stringList">
  2172. </option>
  2173. <optionCategory
  2174. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.CMDFILES"
  2175. name="Command Files"
  2176. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  2177. <option
  2178. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CHECK_MISRA"
  2179. name="Enable checking of MISRA-C:2004 rules (--check_misra)"
  2180. tip="Aliases: --check_misra&lt;BODY&gt;Enable verification of the MISRA-C:2004 rules, 'Guidelines for the use of the C language in critical systems.' For information on MISRA-C, see http://www.misra.org.uk. MISRA and MISRA-C are trademarks of MIRA Ltd."
  2181. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MISRA"
  2182. fieldEditor="com.ti.ccstudio.project.ui.RuleListOptionEditor"
  2183. fieldEditorExtraArgument="&lt;body&gt;
  2184. &lt;group id=&quot;required&quot; name=&quot;Required&quot;/&gt;
  2185. &lt;group id=&quot;advisory&quot; name=&quot;Advisory&quot;/&gt;
  2186. &lt;category id=&quot;1&quot; name=&quot;Environment&quot;&gt;
  2187. &lt;rule id=&quot;1.1&quot; groups=&quot;required&quot; name=&quot;All code shall conform to ISO 9899:1990 &amp;quot;Programming languages - C&amp;quot;, amended and corrected by ISO/IEC 9899/COR1:1995, ISO/IEC 9899/AMD1:1995, and ISO/IEC 9899/COR2:1996.&quot;/&gt;
  2188. &lt;/category&gt;
  2189. &lt;category id=&quot;2&quot; name=&quot;Language extensions&quot;&gt;
  2190. &lt;rule id=&quot;2.1&quot; groups=&quot;required&quot; name=&quot;Assembly language shall be encapsulated and isolated.&quot;/&gt;
  2191. &lt;rule id=&quot;2.2&quot; groups=&quot;required&quot; name=&quot;Source code shall only use /* ... */ style comments.&quot;/&gt;
  2192. &lt;rule id=&quot;2.3&quot; groups=&quot;required&quot; name=&quot;The character sequence /* shall not be used within a comment.&quot;/&gt;
  2193. &lt;/category&gt;
  2194. &lt;category id=&quot;3&quot; name=&quot;Documentation&quot;&gt;
  2195. &lt;/category&gt;
  2196. &lt;category id=&quot;4&quot; name=&quot;Character sets&quot;&gt;
  2197. &lt;rule id=&quot;4.1&quot; groups=&quot;required&quot; name=&quot;Only those excape sequences that are defined in the ISO C standard shall be used.&quot;/&gt;
  2198. &lt;rule id=&quot;4.2&quot; groups=&quot;required&quot; name=&quot;Trigraphs shall not be used.&quot;/&gt;
  2199. &lt;/category&gt;
  2200. &lt;category id=&quot;5&quot; name=&quot;Identifiers&quot;&gt;
  2201. &lt;rule id=&quot;5.2&quot; groups=&quot;required&quot; name=&quot;Identifiers in an inner scope shall not use the same name as an identifier in an outer scope, and therefore hide that identifier.&quot;/&gt;
  2202. &lt;rule id=&quot;5.3&quot; groups=&quot;required&quot; name=&quot;A typedef name shall be a unique identifier.&quot;/&gt;
  2203. &lt;rule id=&quot;5.4&quot; groups=&quot;required&quot; name=&quot;A tag name shall be a unique identifier.&quot;/&gt;
  2204. &lt;rule id=&quot;5.6&quot; groups=&quot;advisory&quot; name=&quot;No identifier in one name space should have the same spelling as an identifier in another name space, with the exception of structure and union member names.&quot;/&gt;
  2205. &lt;rule id=&quot;5.7&quot; groups=&quot;advisory&quot; name=&quot;No identifier name should be reused&quot;/&gt;
  2206. &lt;/category&gt;
  2207. &lt;category id=&quot;6&quot; name=&quot;Types&quot;&gt;
  2208. &lt;rule id=&quot;6.1&quot; groups=&quot;required&quot; name=&quot;The plain char type shall be used only for storage and use of character values.&quot;/&gt;
  2209. &lt;rule id=&quot;6.2&quot; groups=&quot;required&quot; name=&quot;signed and unsigned char type shall be used only of the storage and use of numeric values.&quot;/&gt;
  2210. &lt;rule id=&quot;6.3&quot; groups=&quot;advisory&quot; name=&quot;typedefs that indicate size and signedness should be used in place of the basic numerical types.&quot;/&gt;
  2211. &lt;rule id=&quot;6.4&quot; groups=&quot;required&quot; name=&quot;Bit fields shall only be defined to be of type unsigned inti or signed int.&quot;/&gt;
  2212. &lt;rule id=&quot;6.5&quot; groups=&quot;required&quot; name=&quot;Bit fields of the type signed int shall be at least 2 bits long.&quot;/&gt;
  2213. &lt;/category&gt;
  2214. &lt;category id=&quot;7&quot; name=&quot;Constants&quot;&gt;
  2215. &lt;rule id=&quot;7.1&quot; groups=&quot;required&quot; name=&quot;Octal extensions (other than zero) and octal escape sequences shall not be used.&quot;/&gt;
  2216. &lt;/category&gt;
  2217. &lt;category id=&quot;8&quot; name=&quot;Declarations and definitions&quot;&gt;
  2218. &lt;rule id=&quot;8.1&quot; groups=&quot;required&quot; name=&quot;Functions shall have prototype declarsions and the prototype shall be visible at both the function definition and call.&quot;/&gt;
  2219. &lt;rule id=&quot;8.2&quot; groups=&quot;required&quot; name=&quot;Whenever an object or function is declared or defined, its type shall be explicitly stated.&quot;/&gt;
  2220. &lt;rule id=&quot;8.5&quot; groups=&quot;required&quot; name=&quot;There shall be no definitions of objects or functons in a header file.&quot;/&gt;
  2221. &lt;rule id=&quot;8.6&quot; groups=&quot;required&quot; name=&quot;Functions shall be declared at file scope.&quot;/&gt;
  2222. &lt;rule id=&quot;8.7&quot; groups=&quot;required&quot; name=&quot;Objects shall be defined at block scope if they are only accessed from within a single function.&quot;/&gt;
  2223. &lt;rule id=&quot;8.8&quot; groups=&quot;required&quot; name=&quot;An external object or function shall be declared in one and only one file.&quot;/&gt;
  2224. &lt;rule id=&quot;8.11&quot; groups=&quot;required&quot; name=&quot;The static storage class specifier shall be used in definitions and declarations of objects and functions that have internal linkage.&quot;/&gt;
  2225. &lt;rule id=&quot;8.12&quot; groups=&quot;required&quot; name=&quot;When an array is declared with external linkage, its size shall be stated explicitly or defined implicitly by initialization.&quot;/&gt;
  2226. &lt;/category&gt;
  2227. &lt;category id=&quot;9&quot; name=&quot;Initialization&quot;&gt;
  2228. &lt;rule id=&quot;9.1&quot; groups=&quot;required&quot; name=&quot;All automatic variables shall have been assigned a value before being used.&quot;/&gt;
  2229. &lt;rule id=&quot;9.2&quot; groups=&quot;required&quot; name=&quot;Braces shall be used to indicate and match the structure in the non-zero initialization of arrays and structures.&quot;/&gt;
  2230. &lt;rule id=&quot;9.3&quot; groups=&quot;required&quot; name=&quot;In an enumerator list, the &amp;quot;=&amp;quot; construct shall not be used to explicitly initialize members other than the first, unless all items are explicitly initialized.&quot;/&gt;
  2231. &lt;/category&gt;
  2232. &lt;category id=&quot;10&quot; name=&quot;Arithmetic type conversions&quot;&gt;
  2233. &lt;rule id=&quot;10.1&quot; groups=&quot;required&quot; name=&quot;The value of an expression of integer type shall not be implicitly converted to a different underlying type if: a) it is not a conversion to a wider integer type of the same signedness, or b) the expression is complex, or c) the expression is not constant and is a function argument, or d) the expression is not constant and is a return expression.&quot;/&gt;
  2234. &lt;rule id=&quot;10.2&quot; groups=&quot;required&quot; name=&quot;The value of an expression of floating type shall not be implicitly converted to a different type if: a) it is not a conversion to a wider floating type, or b) the expression is complex, or c) the expression is a function argument, or d) the expression is a return expression.&quot;/&gt;
  2235. &lt;rule id=&quot;10.3&quot; groups=&quot;required&quot; name=&quot;The value of a complex expression of integer type may only be cast to a type that is narrower and of the same signedness as the underlying type of the expression.&quot;/&gt;
  2236. &lt;rule id=&quot;10.4&quot; groups=&quot;required&quot; name=&quot;The value of a complex expression of floating type may only be cast to a narrower floating type.&quot;/&gt;
  2237. &lt;rule id=&quot;10.5&quot; groups=&quot;required&quot; name=&quot;If the bitwise operations ~ and &amp;lt;&amp;lt; are applied to an operand of underlying type unsigned char or unsigned short, the result shall immediately cast to the underlying type of the operand.&quot;/&gt;
  2238. &lt;rule id=&quot;10.6&quot; groups=&quot;required&quot; name=&quot;A &amp;quot;U&amp;quot; suffix shall be applied to all constans of unsigned type.&quot;/&gt;
  2239. &lt;/category&gt;
  2240. &lt;category id=&quot;11&quot; name=&quot;Pointer type conversions&quot;&gt;
  2241. &lt;rule id=&quot;11.1&quot; groups=&quot;required&quot; name=&quot;Conversions shall not be performed between a pointer to a function and any type other than an integral type.&quot;/&gt;
  2242. &lt;rule id=&quot;11.2&quot; groups=&quot;required&quot; name=&quot;Conversions shall not be perfornmed between a pointer to object and any type other than an integral type, another pointer to object type or a pointer to void.&quot;/&gt;
  2243. &lt;rule id=&quot;11.3&quot; groups=&quot;advisory&quot; name=&quot;A cast should not be performed between a pointer type and an integral type.&quot;/&gt;
  2244. &lt;rule id=&quot;11.4&quot; groups=&quot;advisory&quot; name=&quot;A cast should not be performed between a pointer to object type and a different pointer to object type.&quot;/&gt;
  2245. &lt;rule id=&quot;11.5&quot; groups=&quot;required&quot; name=&quot;A cast shall not be performed that removes any const or volatile qualifications from the type addressed by a pointer.&quot;/&gt;
  2246. &lt;/category&gt;
  2247. &lt;category id=&quot;12&quot; name=&quot;Expressions&quot;&gt;
  2248. &lt;rule id=&quot;12.1&quot; groups=&quot;advisory&quot; name=&quot;Limited dependence should be placed on C's operator precedence rules in expressions.&quot;/&gt;
  2249. &lt;rule id=&quot;12.2&quot; groups=&quot;required&quot; name=&quot;The value of an expression shall be the same under any order of evaluation that the standard permits.&quot;/&gt;
  2250. &lt;rule id=&quot;12.3&quot; groups=&quot;required&quot; name=&quot;The sizeof operator shall not be used on expression that contain side effects.&quot;/&gt;
  2251. &lt;rule id=&quot;12.4&quot; groups=&quot;required&quot; name=&quot;The right-hand operand of a logical &amp;amp;&amp;amp; or || operator shall not contain side effects.&quot;/&gt;
  2252. &lt;rule id=&quot;12.5&quot; groups=&quot;required&quot; name=&quot;The operations of a logical &amp;amp;&amp;amp; or || shall be primary-expressions.&quot;/&gt;
  2253. &lt;rule id=&quot;12.6&quot; groups=&quot;advisory&quot; name=&quot;The operands of logical operators (&amp;amp;&amp;amp;, || and !) should be effectively Boolean. Expressions that are effectively Boolean should not be used as operands to operators other than (&amp;amp;&amp;amp;, || and !).&quot;/&gt;
  2254. &lt;rule id=&quot;12.7&quot; groups=&quot;required&quot; name=&quot;Bitwise operators shall not be applied to operands whose underlying type is signed.&quot;/&gt;
  2255. &lt;rule id=&quot;12.8&quot; groups=&quot;required&quot; name=&quot;The right-hand operand of a shift operator shall lie between zero and one less than the width in bits of the underlying type of the left-hand operand.&quot;/&gt;
  2256. &lt;rule id=&quot;12.9&quot; groups=&quot;required&quot; name=&quot;The unary minus operator shall not be applied to an expression whose underlying type is unsigned.&quot;/&gt;
  2257. &lt;rule id=&quot;12.10&quot; groups=&quot;required&quot; name=&quot;The comma operator shall not be used&quot;/&gt;
  2258. &lt;rule id=&quot;12.13&quot; groups=&quot;advisory&quot; name=&quot;The increment (++ and decrement (--) operators should not be mixed with other operators in an expression.&quot;/&gt;
  2259. &lt;/category&gt;
  2260. &lt;category id=&quot;13&quot; name=&quot;Control statement expressions&quot;&gt;
  2261. &lt;rule id=&quot;13.1&quot; groups=&quot;required&quot; name=&quot;Assignment operators shall not be used in expressiopns that yield a Boolean value.&quot;/&gt;
  2262. &lt;rule id=&quot;13.2&quot; groups=&quot;advisory&quot; name=&quot;Tests of a value against zero should be made explicit, unless the operand is effectively Boolean.&quot;/&gt;
  2263. &lt;rule id=&quot;13.3&quot; groups=&quot;required&quot; name=&quot;Floating-point expressions shall not be tested for equality nor inequality.&quot;/&gt;
  2264. &lt;rule id=&quot;13.4&quot; groups=&quot;required&quot; name=&quot;The controlling expression of a for statement shall not contain any objects of floating type.&quot;/&gt;
  2265. &lt;rule id=&quot;13.5&quot; groups=&quot;required&quot; name=&quot;The three expressions of a for statement shall be concerned only with loop control.&quot;/&gt;
  2266. &lt;rule id=&quot;13.6&quot; groups=&quot;required&quot; name=&quot;Numeric variables being used within a for loop for iteration counting shall not be modified in the body of the loop.&quot;/&gt;
  2267. &lt;/category&gt;
  2268. &lt;category id=&quot;14&quot; name=&quot;Control Flow&quot;&gt;
  2269. &lt;rule id=&quot;14.1&quot; groups=&quot;required&quot; name=&quot;There shall be no unreachable code.&quot;/&gt;
  2270. &lt;rule id=&quot;14.2&quot; groups=&quot;required&quot; name=&quot;All non-null statements shall either: a) have at least one side effect however executed, or b) cause cohntrol flow to change.&quot;/&gt;
  2271. &lt;rule id=&quot;14.3&quot; groups=&quot;required&quot; name=&quot;Before preprocessing, a null statement shall only occur on a line by itself; it may be followed by a comment provided that the first character following the null statement is a white-space character.&quot;/&gt;
  2272. &lt;rule id=&quot;14.4&quot; groups=&quot;required&quot; name=&quot;The goto statement shall not be used.&quot;/&gt;
  2273. &lt;rule id=&quot;14.5&quot; groups=&quot;required&quot; name=&quot;The continue statement shall not be used.&quot;/&gt;
  2274. &lt;rule id=&quot;14.6&quot; groups=&quot;required&quot; name=&quot;For any iteration statement there shall be at most one break statement used for loop termination.&quot;/&gt;
  2275. &lt;rule id=&quot;14.7&quot; groups=&quot;required&quot; name=&quot;A function shall have a single point of exit at the end of the function.&quot;/&gt;
  2276. &lt;rule id=&quot;14.8&quot; groups=&quot;required&quot; name=&quot;The statement forming the body of a switch, while, do ... while or for statement shall be a compound statement.&quot;/&gt;
  2277. &lt;rule id=&quot;14.9&quot; groups=&quot;required&quot; name=&quot;An if (expression) construct shall be followed by a compound statement. The else keyword shall be followed by either a compound statement, or another if statement.&quot;/&gt;
  2278. &lt;rule id=&quot;14.10&quot; groups=&quot;required&quot; name=&quot;All if ... else if constructs shall be terminated with an else clause.&quot;/&gt;
  2279. &lt;/category&gt;
  2280. &lt;category id=&quot;15&quot; name=&quot;Switch statements&quot;&gt;
  2281. &lt;rule id=&quot;15.1&quot; groups=&quot;required&quot; name=&quot;A switch label shall only be used when the most closely-enclosing compound statement is the body of a switch statement.&quot;/&gt;
  2282. &lt;rule id=&quot;15.2&quot; groups=&quot;required&quot; name=&quot;An unconditional break statement shall terminate every non-empty switch clause.&quot;/&gt;
  2283. &lt;rule id=&quot;15.3&quot; groups=&quot;required&quot; name=&quot;The final clause of a switch statement sahll be the default clause.&quot;/&gt;
  2284. &lt;rule id=&quot;15.4&quot; groups=&quot;required&quot; name=&quot;A switch statement shall not represent a value that is effectively Boolean.&quot;/&gt;
  2285. &lt;rule id=&quot;15.5&quot; groups=&quot;required&quot; name=&quot;Every switch statement shall have at least one case clause.&quot;/&gt;
  2286. &lt;/category&gt;
  2287. &lt;category id=&quot;16&quot; name=&quot;Functions&quot;&gt;
  2288. &lt;rule id=&quot;16.1&quot; groups=&quot;required&quot; name=&quot;Functions shall not be defined with variable numbers of arguments.&quot;/&gt;
  2289. &lt;rule id=&quot;16.3&quot; groups=&quot;required&quot; name=&quot;Identifiers shall be given for all of the parameters in a functuion protoype declaration.&quot;/&gt;
  2290. &lt;rule id=&quot;16.4&quot; groups=&quot;required&quot; name=&quot;The identifiers used in the declaration and definition of a function shall be identical.&quot;/&gt;
  2291. &lt;rule id=&quot;16.5&quot; groups=&quot;required&quot; name=&quot;Functions with no parameters shall be declared with parameter type void.&quot;/&gt;
  2292. &lt;rule id=&quot;16.7&quot; groups=&quot;advisory&quot; name=&quot;A pointer parameter in a function prototype shall be declared as pointer to const if the pointer is not used to modify the adressed object.&quot;/&gt;
  2293. &lt;rule id=&quot;16.8&quot; groups=&quot;required&quot; name=&quot;All exit paths from a function with non-void return type shall have an explicit return statement with an expression.&quot;/&gt;
  2294. &lt;rule id=&quot;16.9&quot; groups=&quot;required&quot; name=&quot;A function identifier shall only be used with either a preceding &amp;amp;, or with a parenthesized parameter list, which may be empty.&quot;/&gt;
  2295. &lt;/category&gt;
  2296. &lt;category id=&quot;17&quot; name=&quot;Pointers and arrays&quot;&gt;
  2297. &lt;rule id=&quot;17.4&quot; groups=&quot;required&quot; name=&quot;Array indexing shall be the only allowed form of pointer arithmetic.&quot;/&gt;
  2298. &lt;rule id=&quot;17.5&quot; groups=&quot;advisory&quot; name=&quot;The declaration of objects should contain no more than 2 levels of pointer indirection.&quot;/&gt;
  2299. &lt;rule id=&quot;17.6&quot; groups=&quot;required&quot; name=&quot;The address of an object with automatic storage shall not be assigned to another object that may persist after the first object has ceased to exist.&quot;/&gt;
  2300. &lt;/category&gt;
  2301. &lt;category id=&quot;18&quot; name=&quot;Structures and unions&quot;&gt;
  2302. &lt;rule id=&quot;18.1&quot; groups=&quot;required&quot; name=&quot;All structure or union types shall be complete at the end of a translation unit.&quot;/&gt;
  2303. &lt;rule id=&quot;18.4&quot; groups=&quot;required&quot; name=&quot;Unions shall not be used.&quot;/&gt;
  2304. &lt;/category&gt;
  2305. &lt;category id=&quot;19&quot; name=&quot;Preprocessing directives&quot;&gt;
  2306. &lt;rule id=&quot;19.1&quot; groups=&quot;advisory&quot; name=&quot;#include statements in a file should only be preceded by other preprocessor directives or comments.&quot;/&gt;
  2307. &lt;rule id=&quot;19.2&quot; groups=&quot;advisory&quot; name=&quot;Non-standard characters should not occur in header file hnames in #include directives.&quot;/&gt;
  2308. &lt;rule id=&quot;19.3&quot; groups=&quot;required&quot; name=&quot;The #include directive shall be followed by either a &amp;lt;filename&amp;gt; or &amp;quot;filename&amp;quot; sequence.&quot;/&gt;
  2309. &lt;rule id=&quot;19.4&quot; groups=&quot;required&quot; name=&quot;C macros shall only expand to a braced initializer, a constant, a parenthesized expression, a type qualifier, a storage class specifier, or a do-while-zero construct.&quot;/&gt;
  2310. &lt;rule id=&quot;19.5&quot; groups=&quot;required&quot; name=&quot;Macros shall not be #define'd or #undef'd within a block.&quot;/&gt;
  2311. &lt;rule id=&quot;19.6&quot; groups=&quot;required&quot; name=&quot;#undef shall not be used.&quot;/&gt;
  2312. &lt;rule id=&quot;19.7&quot; groups=&quot;advisory&quot; name=&quot;A function should be used in preference to a function-like macro.&quot;/&gt;
  2313. &lt;rule id=&quot;19.8&quot; groups=&quot;required&quot; name=&quot;A function-like macro shall not be invoked without all of its arguments.&quot;/&gt;
  2314. &lt;rule id=&quot;19.9&quot; groups=&quot;required&quot; name=&quot;Arguments to a function-like macro shall not contain tokens that look like preprocessing directives.&quot;/&gt;
  2315. &lt;rule id=&quot;19.10&quot; groups=&quot;required&quot; name=&quot;In the definition of a function-like macro each instance of a parameter shall be enclosed in parentheses unless it it used as the operand of # or ##.&quot;/&gt;
  2316. &lt;rule id=&quot;19.11&quot; groups=&quot;required&quot; name=&quot;All macro identifiers in preprocessor directives shall be defined before use, except in #ifdef and #ifndef preprocessor directives and the defined() operator.&quot;/&gt;
  2317. &lt;rule id=&quot;19.12&quot; groups=&quot;required&quot; name=&quot;There shall be at most one occurrence of the # or ## preprocessor operators in a single macro definition.&quot;/&gt;
  2318. &lt;rule id=&quot;19.13&quot; groups=&quot;advisory&quot; name=&quot;The # and ## preprocessor operators should not be used.&quot;/&gt;
  2319. &lt;rule id=&quot;19.14&quot; groups=&quot;required&quot; name=&quot;The defined preprocessor operator shall only be used in one of the two standard forms.&quot;/&gt;
  2320. &lt;rule id=&quot;19.15&quot; groups=&quot;required&quot; name=&quot;Precautions shall be taken in order to prevent the contents of a header file being included twice.&quot;/&gt;
  2321. &lt;rule id=&quot;19.16&quot; groups=&quot;required&quot; name=&quot;Preprocessoing directives shall be syntactically meaningful even when excluded by the preprocessor.&quot;/&gt;
  2322. &lt;rule id=&quot;19.17&quot; groups=&quot;required&quot; name=&quot;All #else, #elif and #endif preprocessor directives shall reside in the same file as the #if or #ifdef directive to which they are related.&quot;/&gt;
  2323. &lt;/category&gt;
  2324. &lt;category id=&quot;20&quot; name=&quot;Standard libraries&quot;&gt;
  2325. &lt;rule id=&quot;20.1&quot; groups=&quot;required&quot; name=&quot;Reserved identifiers, macros and functions in the standard library, shall not be defined, redefined or undefined.&quot;/&gt;
  2326. &lt;rule id=&quot;20.2&quot; groups=&quot;required&quot; name=&quot;The names of standard library macros, obhjects and functions shall not be reused.&quot;/&gt;
  2327. &lt;rule id=&quot;20.4&quot; groups=&quot;required&quot; name=&quot;Dynamic heap memory allocation shall not be used.&quot;/&gt;
  2328. &lt;rule id=&quot;20.5&quot; groups=&quot;required&quot; name=&quot;The error indicator errno shall not be used.&quot;/&gt;
  2329. &lt;rule id=&quot;20.6&quot; groups=&quot;required&quot; name=&quot;The macro offsetof, in library &amp;lt;stddef.h&amp;gt;, shall not be used.&quot;/&gt;
  2330. &lt;rule id=&quot;20.7&quot; groups=&quot;required&quot; name=&quot;The setjmp macro and the longjmp function shall not be used.&quot;/&gt;
  2331. &lt;rule id=&quot;20.8&quot; groups=&quot;required&quot; name=&quot;The signal handling facilities of &amp;lt;signal.h&amp;gt; shall not be used.&quot;/&gt;
  2332. &lt;rule id=&quot;20.9&quot; groups=&quot;required&quot; name=&quot;The input/output library &amp;lt;stdio.h&amp;gt; shall not be used in production code.&quot;/&gt;
  2333. &lt;rule id=&quot;20.10&quot; groups=&quot;required&quot; name=&quot;The library functions atof, atoi and atol from library &amp;lt;stdlib.h&amp;gt; shall not be used.&quot;/&gt;
  2334. &lt;rule id=&quot;20.11&quot; groups=&quot;required&quot; name=&quot;The library functions abort, exit, getenv and system from library &amp;lt;stdlib.h&amp;gt; shall not be used.&quot;/&gt;
  2335. &lt;rule id=&quot;20.12&quot; groups=&quot;required&quot; name=&quot;The time handling functions of library &amp;lt;time.h&amp;gt; shall not be used.&quot;/&gt;
  2336. &lt;/category&gt;
  2337. &lt;/body&gt;"
  2338. command="--check_misra="
  2339. valueType="string"/>
  2340. <option
  2341. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_ADVISORY"
  2342. name="Set severity of MISRA 'advisory' rule class (--misra_advisory)"
  2343. tip="Aliases: --misra_advisory&lt;BODY&gt;Set diagnostic severity level for the MISRA advisory class of rules. See the --check_misra option for further information."
  2344. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MISRA"
  2345. command="--misra_advisory"
  2346. valueType="enumerated">
  2347. <enumeratedOptionValue
  2348. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_ADVISORY._none"
  2349. name=""
  2350. command=""/>
  2351. <enumeratedOptionValue
  2352. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_ADVISORY.error"
  2353. name="error"
  2354. command="--misra_advisory=error"/>
  2355. <enumeratedOptionValue
  2356. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_ADVISORY.warning"
  2357. name="warning"
  2358. command="--misra_advisory=warning"/>
  2359. <enumeratedOptionValue
  2360. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_ADVISORY.remark"
  2361. name="remark"
  2362. command="--misra_advisory=remark"/>
  2363. <enumeratedOptionValue
  2364. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_ADVISORY.suppress"
  2365. name="suppress"
  2366. command="--misra_advisory=suppress"/>
  2367. </option>
  2368. <option
  2369. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_REQUIRED"
  2370. name="Set severity of MISRA 'required' rule class (--misra_required)"
  2371. tip="Aliases: --misra_required&lt;BODY&gt;Set the diagnostic severity level for the MISRA required class of rules. See the --check_misra option for further information."
  2372. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MISRA"
  2373. command="--misra_required"
  2374. valueType="enumerated">
  2375. <enumeratedOptionValue
  2376. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_REQUIRED._none"
  2377. name=""
  2378. command=""/>
  2379. <enumeratedOptionValue
  2380. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_REQUIRED.error"
  2381. name="error"
  2382. command="--misra_required=error"/>
  2383. <enumeratedOptionValue
  2384. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_REQUIRED.warning"
  2385. name="warning"
  2386. command="--misra_required=warning"/>
  2387. <enumeratedOptionValue
  2388. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_REQUIRED.remark"
  2389. name="remark"
  2390. command="--misra_required=remark"/>
  2391. <enumeratedOptionValue
  2392. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MISRA_REQUIRED.suppress"
  2393. name="suppress"
  2394. command="--misra_required=suppress"/>
  2395. </option>
  2396. <optionCategory
  2397. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MISRA"
  2398. name="MISRA-C:2004"
  2399. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  2400. <option
  2401. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_ACP_RAW"
  2402. name="Output raw listing to .rl file (--gen_acp_raw, -pl)"
  2403. tip="Aliases: --gen_acp_raw, -pl&lt;BODY&gt;Output raw listing to .rl file"
  2404. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2405. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  2406. defaultValue="false"
  2407. command="--gen_acp_raw"
  2408. valueType="boolean"/>
  2409. <option
  2410. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_ACP_XREF"
  2411. name="Output xref listing to .crl file (--gen_acp_xref, -px)"
  2412. tip="Aliases: --gen_acp_xref, -px&lt;BODY&gt;Output xref listing to .crl file"
  2413. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2414. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  2415. defaultValue="false"
  2416. command="--gen_acp_xref"
  2417. valueType="boolean"/>
  2418. <option
  2419. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_CROSS_REFERENCE_LISTING"
  2420. name="Output cross reference listing to .crl file (--gen_cross_reference_listing)"
  2421. tip="Aliases: --gen_cross_reference_listing&lt;BODY&gt;Generates a listing file with information on where symbols are referenced and defined. A .crl file will be created for every source file."
  2422. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2423. defaultValue="false"
  2424. command="--gen_cross_reference_listing"
  2425. valueType="boolean"/>
  2426. <option
  2427. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_FUNC_INFO_LISTING"
  2428. name="Generate a function information listing file (--gen_func_info_listing)"
  2429. tip="Aliases: --gen_func_info_listing&lt;BODY&gt;Generates a file with information on each function. The information includes the stack usage information and a list of called function. A .aux file is created for every source file."
  2430. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2431. defaultValue="false"
  2432. command="--gen_func_info_listing"
  2433. valueType="boolean"/>
  2434. <option
  2435. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_OPT_INFO"
  2436. name="Generate optimizer information file at level [0-2] (--gen_opt_info, -on)"
  2437. tip="Aliases: --gen_opt_info, -on&lt;BODY&gt;Set the optimizer information file level, or disable with 0. Level 1 includes basic information. Level 2 includes detailed information. The file will be created in the assembly directory if a custom asm directory is specified on the command line otherwise it will be created in the object file directory."
  2438. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2439. command="--gen_opt_info"
  2440. valueType="enumerated">
  2441. <enumeratedOptionValue
  2442. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_OPT_INFO._none"
  2443. name=""
  2444. command=""/>
  2445. <enumeratedOptionValue
  2446. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_OPT_INFO.0"
  2447. name="0"
  2448. command="--gen_opt_info=0"/>
  2449. <enumeratedOptionValue
  2450. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_OPT_INFO.1"
  2451. name="1"
  2452. command="--gen_opt_info=1"/>
  2453. <enumeratedOptionValue
  2454. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_OPT_INFO.2"
  2455. name="2"
  2456. command="--gen_opt_info=2"/>
  2457. </option>
  2458. <option
  2459. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_PREPROCESSOR_LISTING"
  2460. name="Output preprocessor listing to .rl file (--gen_preprocessor_listing)"
  2461. tip="Aliases: --gen_preprocessor_listing&lt;BODY&gt;Generates a listing file with information about the preprocessing output. One of the useful features is being able to compare lines before and after preprocessing has occurred. A .rl file will be generated for every source file."
  2462. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2463. defaultValue="false"
  2464. command="--gen_preprocessor_listing"
  2465. valueType="boolean"/>
  2466. <option
  2467. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SECTION_SIZES"
  2468. name="Output section size summary information. (--section_sizes)"
  2469. tip="Aliases: --section_sizes&lt;BODY&gt;Output section size summary information for code, const, and data."
  2470. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2471. command="--section_sizes"
  2472. valueType="enumerated">
  2473. <enumeratedOptionValue
  2474. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SECTION_SIZES._none"
  2475. name=""
  2476. command=""/>
  2477. <enumeratedOptionValue
  2478. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SECTION_SIZES.on"
  2479. name="on"
  2480. command="--section_sizes=on"/>
  2481. <enumeratedOptionValue
  2482. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SECTION_SIZES.off"
  2483. name="off"
  2484. command="--section_sizes=off"/>
  2485. </option>
  2486. <optionCategory
  2487. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.AUX"
  2488. name="Supplemental Information"
  2489. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  2490. <option
  2491. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LEGACY"
  2492. name="C6000 legacy mode for performance degradations (--legacy)"
  2493. tip="Aliases: --legacy&lt;BODY&gt;This option may help when legacy code bases tuned for C6000 CGT v7.4.x or older exhibit performance degradations with later compiler versions."
  2494. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MISC"
  2495. defaultValue="false"
  2496. command="--legacy"
  2497. valueType="boolean"/>
  2498. <optionCategory
  2499. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.MISC"
  2500. name="Miscellaneous"
  2501. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"/>
  2502. <optionCategory
  2503. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.compilerID.ADVANCED"
  2504. name="Advanced Options"
  2505. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID"/>
  2506. <option
  2507. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OTHER_FLAGS"
  2508. name="Other flags"
  2509. applicabilityCalculator="com.ti.common.project.core.internal.options.HiddenOptionApplicability"
  2510. valueType="stringList"/>
  2511. </tool>
  2512. <tool
  2513. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID"
  2514. superClass="com.ti.ccstudio.buildDefinitions.baseLinkerTool"
  2515. isAbstract="true"
  2516. name="C6000 Linker"
  2517. command="&quot;${CG_TOOL_CL}&quot;"
  2518. outputFlag="-o">
  2519. <option
  2520. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.Z"
  2521. name="Linker flag"
  2522. resourceFilter="project"
  2523. applicabilityCalculator="com.ti.common.project.core.internal.options.HiddenOptionApplicability"
  2524. command="-z"
  2525. value="true"
  2526. valueType="boolean"/>
  2527. <option
  2528. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MAP_FILE"
  2529. name="Link information (map) listed into &lt;file&gt; (--map_file, -m)"
  2530. tip="Aliases: --map_file, -m&lt;BODY&gt;Produce a listing of all input and output sections into &lt;file&gt;."
  2531. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKBASIC"
  2532. resourceFilter="project"
  2533. command="-m"
  2534. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  2535. browseType="file"
  2536. browseFilterPath="${PROJECT_BUILD_DIR}"
  2537. browseFilterExtensions="*.map,*.*"
  2538. valueType="string"/>
  2539. <option
  2540. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.OUTPUT_FILE"
  2541. name="Specify output file name (--output_file, -o)"
  2542. tip="Aliases: --output_file, -o&lt;BODY&gt;Full filename of the output file."
  2543. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKBASIC"
  2544. resourceFilter="project"
  2545. valueHandler="com.ti.ccstudio.project.core.internal.options.OutputFileOptionValueHandler"
  2546. applicabilityCalculator="com.ti.common.project.core.internal.options.VirtualOptionApplicability"
  2547. command="-o"
  2548. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  2549. browseType="file"
  2550. browseFilterPath="${PROJECT_ROOT}"
  2551. valueType="string"/>
  2552. <option
  2553. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.HEAP_SIZE"
  2554. name="Heap size for C/C++ dynamic memory allocation (--heap_size, -heap)"
  2555. tip="Aliases: --heap_size, -heap&lt;BODY&gt;Specify the maximum heap size for C/C++ dynamic memory allocation."
  2556. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKBASIC"
  2557. resourceFilter="project"
  2558. command="--heap_size="
  2559. valueType="string"/>
  2560. <option
  2561. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.STACK_SIZE"
  2562. name="Set C system stack size (--stack_size, -stack)"
  2563. tip="Aliases: --stack_size, -stack&lt;BODY&gt;Set C system stack size"
  2564. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKBASIC"
  2565. resourceFilter="project"
  2566. command="--stack_size="
  2567. valueType="string"/>
  2568. <optionCategory
  2569. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKBASIC"
  2570. name="Basic Options"
  2571. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID"/>
  2572. <option
  2573. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.linkerCommandFiles"
  2574. name="[Legacy] Linker Command files"
  2575. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2576. resourceFilter="project"
  2577. applicabilityCalculator="com.ti.common.project.core.internal.options.LegacyOptionApplicability"
  2578. valueType="stringList"/>
  2579. <option
  2580. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.generatedLinkerCommandFiles"
  2581. name="[Legacy] Generated Linker Command files"
  2582. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2583. resourceFilter="project"
  2584. applicabilityCalculator="com.ti.common.project.core.internal.options.LegacyOptionApplicability"
  2585. valueType="stringList"/>
  2586. <option
  2587. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.LIBRARY"
  2588. name="Include library file or command file as input (--library, -l)"
  2589. tip="Aliases: --library, -l&lt;BODY&gt;Include library file or command file as input"
  2590. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2591. resourceFilter="project"
  2592. command="-l"
  2593. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  2594. browseType="file"
  2595. browseFilterPath="${CG_TOOL_ROOT}/lib"
  2596. browseFilterExtensions="*.lib;*.a;*.cmd,*.*"
  2597. valueType="libs">
  2598. </option>
  2599. <option
  2600. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.SEARCH_PATH"
  2601. name="Add &lt;dir&gt; to library search path (--search_path, -i)"
  2602. tip="Aliases: --search_path, -i&lt;BODY&gt;Alter the library-search algorithm to look in dir before looking in the default location. This option must appear before the -l option."
  2603. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2604. resourceFilter="project"
  2605. command="-i"
  2606. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  2607. browseType="directory"
  2608. browseFilterPath="${CG_TOOL_ROOT}/lib"
  2609. valueType="libPaths">
  2610. </option>
  2611. <option
  2612. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.PRIORITY"
  2613. name="Search libraries in priority order (--priority, -priority)"
  2614. tip="Aliases: --priority, -priority&lt;BODY&gt;Search libraries in priority order"
  2615. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2616. resourceFilter="project"
  2617. defaultValue="false"
  2618. command="--priority"
  2619. valueType="boolean"/>
  2620. <option
  2621. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.REREAD_LIBS"
  2622. name="Reread libraries; resolve backward references (--reread_libs, -x)"
  2623. tip="Aliases: --reread_libs, -x&lt;BODY&gt;Reread libraries; resolve backward references"
  2624. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2625. resourceFilter="project"
  2626. defaultValue="true"
  2627. command="--reread_libs"
  2628. valueType="boolean"/>
  2629. <option
  2630. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DISABLE_AUTO_RTS"
  2631. name="Disable automatic RTS selection (--disable_auto_rts)"
  2632. tip="Aliases: --disable_auto_rts&lt;BODY&gt;Do not attempt to automatically select and link a runtime library."
  2633. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2634. resourceFilter="project"
  2635. defaultValue="false"
  2636. command="--disable_auto_rts"
  2637. valueType="boolean"/>
  2638. <optionCategory
  2639. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIR"
  2640. name="File Search Path"
  2641. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID"/>
  2642. <option
  2643. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DEFINE"
  2644. name="Pre-define preprocessor macro _name_ to _value_ (--define)"
  2645. tip="Aliases: --define&lt;BODY&gt;Pre-define preprocessor macro _name_ to _value_"
  2646. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKCPP"
  2647. resourceFilter="project"
  2648. command="--define="
  2649. valueType="definedSymbols">
  2650. </option>
  2651. <option
  2652. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.UNDEFINE"
  2653. name="Undefine preprocessor macro _name_ (--undefine)"
  2654. tip="Aliases: --undefine&lt;BODY&gt;Undefine preprocessor macro _name_"
  2655. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKCPP"
  2656. resourceFilter="project"
  2657. command="--undefine="
  2658. valueType="stringList">
  2659. </option>
  2660. <option
  2661. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DISABLE_PP"
  2662. name="Don't use C preprocessor for command files (--disable_pp)"
  2663. tip="Aliases: --disable_pp&lt;BODY&gt;This disables preprocessing of linker command files."
  2664. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKCPP"
  2665. resourceFilter="project"
  2666. defaultValue="false"
  2667. command="--disable_pp"
  2668. valueType="boolean"/>
  2669. <optionCategory
  2670. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKCPP"
  2671. name="Command File Preprocessing"
  2672. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"/>
  2673. <option
  2674. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.BUFFER_DIAGNOSTICS"
  2675. name="Line buffer diagnostic output (--buffer_diagnostics, -pdb)"
  2676. tip="Aliases: --buffer_diagnostics, -pdb&lt;BODY&gt;Line buffer diagnostic output to reduce message mixing when compiling in parallel."
  2677. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2678. resourceFilter="project"
  2679. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  2680. defaultValue="false"
  2681. command="--buffer_diagnostics"
  2682. valueType="boolean"/>
  2683. <option
  2684. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_ERROR"
  2685. name="Treat diagnostic &lt;id&gt; as error (--diag_error)"
  2686. tip="Aliases: --diag_error&lt;BODY&gt;Treat diagnostic &lt;id&gt; as error"
  2687. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2688. resourceFilter="project"
  2689. command="--diag_error="
  2690. valueType="stringList">
  2691. </option>
  2692. <option
  2693. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_REMARK"
  2694. name="Treat diagnostic &lt;id&gt; as remark (--diag_remark)"
  2695. tip="Aliases: --diag_remark&lt;BODY&gt;Treat diagnostic &lt;id&gt; as remark"
  2696. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2697. resourceFilter="project"
  2698. command="--diag_remark="
  2699. valueType="stringList">
  2700. </option>
  2701. <option
  2702. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_SUPPRESS"
  2703. name="Suppress diagnostic &lt;id&gt; (--diag_suppress)"
  2704. tip="Aliases: --diag_suppress&lt;BODY&gt;Suppress diagnostic &lt;id&gt;"
  2705. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2706. resourceFilter="project"
  2707. command="--diag_suppress="
  2708. valueType="stringList">
  2709. </option>
  2710. <option
  2711. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_WARNING"
  2712. name="Treat diagnostic &lt;id&gt; as warning (--diag_warning)"
  2713. tip="Aliases: --diag_warning&lt;BODY&gt;Treat diagnostic &lt;id&gt; as warning"
  2714. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2715. resourceFilter="project"
  2716. command="--diag_warning="
  2717. valueType="stringList">
  2718. </option>
  2719. <option
  2720. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_WRAP"
  2721. name="Wrap diagnostic messages (--diag_wrap)"
  2722. tip="Aliases: --diag_wrap&lt;BODY&gt;Set diagnostic messages to wrap at 79 columns (on) or not (off)."
  2723. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2724. resourceFilter="project"
  2725. applicabilityCalculator="com.ti.ccstudio.project.core.internal.options.DeprecatedOptionApplicabilityCalculator"
  2726. command="--diag_wrap"
  2727. valueType="enumerated">
  2728. <enumeratedOptionValue
  2729. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_WRAP._none"
  2730. name=""
  2731. command=""/>
  2732. <enumeratedOptionValue
  2733. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_WRAP.on"
  2734. name="on"
  2735. command="--diag_wrap=on"/>
  2736. <enumeratedOptionValue
  2737. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_WRAP.off"
  2738. name="off"
  2739. command="--diag_wrap=off"/>
  2740. </option>
  2741. <option
  2742. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DISPLAY_ERROR_NUMBER"
  2743. name="Emit diagnostic identifier numbers (--display_error_number)"
  2744. tip="Aliases: --display_error_number&lt;BODY&gt;Emit diagnostic identifier numbers"
  2745. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2746. resourceFilter="project"
  2747. defaultValue="false"
  2748. command="--display_error_number"
  2749. valueType="boolean"/>
  2750. <option
  2751. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.EMIT_WARNINGS_AS_ERRORS"
  2752. name="Treat warnings as errors (--emit_warnings_as_errors, -pdew)"
  2753. tip="Aliases: --emit_warnings_as_errors, -pdew&lt;BODY&gt;Treat warnings as errors"
  2754. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2755. resourceFilter="project"
  2756. defaultValue="false"
  2757. command="--emit_warnings_as_errors"
  2758. valueType="boolean"/>
  2759. <option
  2760. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ISSUE_REMARKS"
  2761. name="Issue remarks (--issue_remarks)"
  2762. tip="Aliases: --issue_remarks&lt;BODY&gt;Issue remarks"
  2763. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2764. resourceFilter="project"
  2765. defaultValue="false"
  2766. command="--issue_remarks"
  2767. valueType="boolean"/>
  2768. <option
  2769. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.NO_DEMANGLE"
  2770. name="Don't demangle symbol names in diagnostics (--no_demangle)"
  2771. tip="Aliases: --no_demangle&lt;BODY&gt;Don't demangle symbol names in diagnostics"
  2772. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2773. resourceFilter="project"
  2774. defaultValue="false"
  2775. command="--no_demangle"
  2776. valueType="boolean"/>
  2777. <option
  2778. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.NO_WARNINGS"
  2779. name="Suppress warnings (--no_warnings)"
  2780. tip="Aliases: --no_warnings&lt;BODY&gt;Suppress warnings"
  2781. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2782. resourceFilter="project"
  2783. defaultValue="false"
  2784. command="--no_warnings"
  2785. valueType="boolean"/>
  2786. <option
  2787. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.SET_ERROR_LIMIT"
  2788. name="Set error limit to &lt;count&gt; (--set_error_limit)"
  2789. tip="Aliases: --set_error_limit&lt;BODY&gt;Set error limit to &lt;count&gt;"
  2790. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2791. resourceFilter="project"
  2792. command="--set_error_limit="
  2793. valueType="string"/>
  2794. <option
  2795. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.VERBOSE_DIAGNOSTICS"
  2796. name="Verbose diagnostics (--verbose_diagnostics)"
  2797. tip="Aliases: --verbose_diagnostics&lt;BODY&gt;Verbose diagnostics"
  2798. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2799. resourceFilter="project"
  2800. defaultValue="false"
  2801. command="--verbose_diagnostics"
  2802. valueType="boolean"/>
  2803. <option
  2804. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.WARN_SECTIONS"
  2805. name="Warn if an unspecified output section is created (--warn_sections, -w)"
  2806. tip="Aliases: --warn_sections, -w&lt;BODY&gt;Warn if an unspecified output section is created"
  2807. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2808. resourceFilter="project"
  2809. defaultValue="true"
  2810. command="--warn_sections"
  2811. valueType="boolean"/>
  2812. <optionCategory
  2813. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKDIAG"
  2814. name="Diagnostics"
  2815. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"/>
  2816. <option
  2817. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ABSOLUTE_EXE"
  2818. name="Produce absolute executable object file (default) (--absolute_exe, -a)"
  2819. tip="Aliases: --absolute_exe, -a&lt;BODY&gt;Produce absolute executable object file (default)"
  2820. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2821. resourceFilter="project"
  2822. defaultValue="false"
  2823. command="--absolute_exe"
  2824. valueType="boolean"/>
  2825. <option
  2826. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ECC__DATA_ERROR"
  2827. name="Introduce bit errors (--ecc:data_error)"
  2828. tip="Aliases: --ecc:data_error&lt;BODY&gt;--ecc:data_error=(address|symbol+offset),[page,]bitmask - Introduce bit errors in the outfile. The bits to be flipped in the outfile are located in the unit at the specified offset. The offset is relative to either the origin of the page, or relative to the position of the base symbol, if specified. The default page is zero, and any page may be specified. The bits to be flipped at the specified location are indicated by set bits in the bitmask. In effect, the data in the outfile will be the bitwise-exclusive-or of the bitmask with original code or data. Bit errors can only be applied to initialized data, such as the contents of Flash memory. The effective address of the error must lie inside either the output memory range or the input memory range of an ECC specification."
  2829. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2830. resourceFilter="project"
  2831. command="--ecc:data_error="
  2832. valueType="stringList">
  2833. </option>
  2834. <option
  2835. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ECC__ECC_ERROR"
  2836. name="Introduce bit errors in ECC memory (--ecc:ecc_error)"
  2837. tip="Aliases: --ecc:ecc_error&lt;BODY&gt;--ecc:ecc_error=(address|symbol+offset),[page,]bitmask - Introduce bit errors in corresponding ECC memory. This option behaves like the --ecc:data_error option, except that the bits are not flipped in the code/data memory at the specified location. Instead, the bits are flipped in the ECC memory area that corresponds to the specified location. The bitmask is 8 bits wide. In the presence of mirroring, bits will be flipped in all mirrored copies of the corresponding ECC byte. The effective address of the error must lie inside the input memory range of an ECC specification."
  2838. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2839. resourceFilter="project"
  2840. command="--ecc:ecc_error="
  2841. valueType="stringList">
  2842. </option>
  2843. <option
  2844. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MAPFILE_CONTENTS"
  2845. name="Display attribute settings in map file (--mapfile_contents)"
  2846. tip="Aliases: --mapfile_contents&lt;BODY&gt;Enable the display of &lt;attribute&gt; or disable with no&lt;attribute&gt; in the linker generated map file. Multiple attributes can be specified by separating them with commas (e.g. --mapfile_contents=sections,nosymbols). Type --mapfile_contents=help for a list of attributes."
  2847. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2848. resourceFilter="project"
  2849. command="--mapfile_contents="
  2850. valueType="string"/>
  2851. <option
  2852. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.RELOCATABLE"
  2853. name="Produce a relocatable output module (--relocatable, -r)"
  2854. tip="Aliases: --relocatable, -r&lt;BODY&gt;Produce a relocatable output module"
  2855. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2856. resourceFilter="project"
  2857. defaultValue="false"
  2858. command="--relocatable"
  2859. valueType="boolean"/>
  2860. <option
  2861. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ROM"
  2862. name="Create a ROM object (--rom)"
  2863. tip="Aliases: --rom&lt;BODY&gt;This option allows the creation of ROM object module"
  2864. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2865. resourceFilter="project"
  2866. defaultValue="false"
  2867. command="--rom"
  2868. valueType="boolean"/>
  2869. <option
  2870. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.XML_LINK_INFO"
  2871. name="Detailed link information data-base into &lt;file&gt; (--xml_link_info, -xml_link_info)"
  2872. tip="Aliases: --xml_link_info, -xml_link_info&lt;BODY&gt;Produce a detailed link information data-base into the file named &lt;file&gt;."
  2873. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2874. resourceFilter="project"
  2875. command="--xml_link_info="
  2876. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  2877. browseType="file"
  2878. browseFilterPath="${PROJECT_ROOT}"
  2879. valueType="string"/>
  2880. <optionCategory
  2881. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKOUTF"
  2882. name="Linker Output"
  2883. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"/>
  2884. <option
  2885. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ENTRY_POINT"
  2886. name="Specify program entry point for the output module (--entry_point, -e)"
  2887. tip="Aliases: --entry_point, -e&lt;BODY&gt;Specify program entry point for the output module"
  2888. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2889. resourceFilter="project"
  2890. command="--entry_point="
  2891. valueType="string"/>
  2892. <option
  2893. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.GLOBALIZE"
  2894. name="Do not localize symbols matching pattern (--globalize)"
  2895. tip="Aliases: --globalize&lt;BODY&gt;The option '--localize=l_pattern' makes the symbols matching the l_pattern hidden. The '--globalilze=g_pattern' option excludes symbols matching g_pattern from symbol localization provided g_pattern is more restrictive than l_pattern."
  2896. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2897. resourceFilter="project"
  2898. command="--globalize="
  2899. valueType="stringList">
  2900. </option>
  2901. <option
  2902. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.HIDE"
  2903. name="Hide symbols matching pattern (--hide)"
  2904. tip="Aliases: --hide&lt;BODY&gt;Hide the symbols matching the pattern by changing the name to empty string"
  2905. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2906. resourceFilter="project"
  2907. command="--hide="
  2908. valueType="stringList">
  2909. </option>
  2910. <option
  2911. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.LOCALIZE"
  2912. name="Make the symbols matching pattern local (--localize)"
  2913. tip="Aliases: --localize&lt;BODY&gt;Given a symbol name pattern, make all the symbols matching this pattern local"
  2914. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2915. resourceFilter="project"
  2916. command="--localize="
  2917. valueType="stringList">
  2918. </option>
  2919. <option
  2920. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MAKE_GLOBAL"
  2921. name="Don't make global symbol static if -h is specified (--make_global, -g)"
  2922. tip="Aliases: --make_global, -g&lt;BODY&gt;Don't make global symbol static if -h is specified"
  2923. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2924. resourceFilter="project"
  2925. command="--make_global="
  2926. valueType="stringList">
  2927. </option>
  2928. <option
  2929. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MAKE_STATIC"
  2930. name="Make all global symbols static (--make_static, -h)"
  2931. tip="Aliases: --make_static, -h&lt;BODY&gt;Make all global symbols static"
  2932. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2933. resourceFilter="project"
  2934. defaultValue="false"
  2935. command="--make_static"
  2936. valueType="boolean"/>
  2937. <option
  2938. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.NO_SYM_MERGE"
  2939. name="No type merging in symbolic debugging information (--no_sym_merge, -b)"
  2940. tip="Aliases: --no_sym_merge, -b&lt;BODY&gt;Disable type merging in symbolic debugging information."
  2941. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2942. resourceFilter="project"
  2943. defaultValue="false"
  2944. command="--no_sym_merge"
  2945. valueType="boolean"/>
  2946. <option
  2947. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.NO_SYMTABLE"
  2948. name="Strip symbol table and line number entries (--no_symtable, -s)"
  2949. tip="Aliases: --no_symtable, -s&lt;BODY&gt;Strip symbol table and line number entries"
  2950. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2951. resourceFilter="project"
  2952. defaultValue="false"
  2953. command="--no_symtable"
  2954. valueType="boolean"/>
  2955. <option
  2956. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.RETAIN"
  2957. name="Specify symbols/sections to be retained by linker (--retain)"
  2958. tip="Aliases: --retain&lt;BODY&gt;When --unused_section_elimination is enabled, the ELF linker does not include a section in the final link if it is not needed in the executable to resolve references. This option can be used to tell the linker to retain a list of sections that would otherwise be not retained. This option accepts the wild cards '*' and '?' and when wild cards are used, the argument should be in quotes. The following option parameters are accepted:
  2959. --retain=symbol_spec retains sections that define symbol matching the argument. For ex, --retain='init*' retains sections that define symbols that start with 'init'. User may not specify --retain='*'.
  2960. --retain=file_spec(scn_spec [,scn_spec ...]) retains sections matching scn_spec(s) from files matching file_spec. For ex, the argument '*(.initvec)' causes the linker to retain .initvec sections from all input files.
  2961. NOTE: User can specify --retain='*(*)' to retain all the sections from all the input object files. Note that this does not prevent sections from library members from being optimized out. If you want to totally disable unused section elimination, please use --unused_section_elimination=off.
  2962. --retain=ar_spec&lt;mem_spec, [mem_spec ...]&gt;(scn_spec, [scn_spec ...]) retains sections matching scn_spec(s) from members matching mem_spec(s) from archive files matching ar_spec. For ex, rts32eabi.lib&lt;printf.obj&gt;(.text) causes the linker to retain .text section from printf.obj in rts32eabi.lib. If the library is specified with -l option (-lrts32eabi.lib) the library search path is used to search the library. User may not specify '*&lt;*&gt;(*)'."
  2963. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2964. resourceFilter="project"
  2965. command="--retain="
  2966. valueType="stringList">
  2967. </option>
  2968. <option
  2969. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.SCAN_LIBRARIES"
  2970. name="Scan libraries for duplicate symbol definitions (--scan_libraries, -scanlibs)"
  2971. tip="Aliases: --scan_libraries, -scanlibs&lt;BODY&gt;Check whether symbol definitions that are pulled into the link are duplicated in any of the libraries included in the build. This information is typically ignored as the linker will pull in the first definition it encounters."
  2972. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2973. resourceFilter="project"
  2974. defaultValue="false"
  2975. command="--scan_libraries"
  2976. valueType="boolean"/>
  2977. <option
  2978. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.SYMBOL_MAP"
  2979. name="Specify a symbol map, mapping refname to defname (--symbol_map)"
  2980. tip="Aliases: --symbol_map&lt;BODY&gt;Symbol mapping allows a symbol reference to be resolved by a symbol with different name. Symbol mapping allows functions to be overridden with alternate definitions. This feature can be used to patch in alternate implementations, which provide patches (bug fixes) or alternate functionality. For example, the option --symbol_map='foo=foo_patch' makes the linker resolve any references to foo by the definition foo_patch."
  2981. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2982. resourceFilter="project"
  2983. command="--symbol_map="
  2984. valueType="stringList">
  2985. </option>
  2986. <option
  2987. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.UNDEF_SYM"
  2988. name="Add &lt;sym&gt; to symbol table as an unresolved symbol (--undef_sym, -u)"
  2989. tip="Aliases: --undef_sym, -u&lt;BODY&gt;Add &lt;sym&gt; to symbol table as an unresolved symbol"
  2990. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  2991. resourceFilter="project"
  2992. command="--undef_sym="
  2993. valueType="stringList">
  2994. </option>
  2995. <option
  2996. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.UNHIDE"
  2997. name="Exclude symbols matching pattern from hiding (--unhide)"
  2998. tip="Aliases: --unhide&lt;BODY&gt;The option --hide=hide_pattern makes the symbols matching the hide_pattern hidden. The --unhide=unhide_pattern option excludes symbols matching unhide_pattern from symbol hiding provided unhide_pattern is more restrictive than hide_pattern."
  2999. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  3000. resourceFilter="project"
  3001. command="--unhide="
  3002. valueType="stringList">
  3003. </option>
  3004. <optionCategory
  3005. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKSYM"
  3006. name="Symbol Management"
  3007. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"/>
  3008. <option
  3009. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ARG_SIZE"
  3010. name="Set C argc/argv memory size (--arg_size, --args)"
  3011. tip="Aliases: --arg_size, --args&lt;BODY&gt;Set C argc/argv memory size"
  3012. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3013. resourceFilter="project"
  3014. command="--arg_size="
  3015. valueType="string"/>
  3016. <option
  3017. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.CINIT_COMPRESSION"
  3018. name="Compress ELF C style auto initialization data (--cinit_compression)"
  3019. tip="Aliases: --cinit_compression&lt;BODY&gt;Specify the compression to apply to the c auto initialization data"
  3020. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3021. resourceFilter="project"
  3022. command="--cinit_compression"
  3023. valueType="enumerated">
  3024. <enumeratedOptionValue
  3025. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.CINIT_COMPRESSION._none"
  3026. name=""
  3027. command=""/>
  3028. <enumeratedOptionValue
  3029. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.CINIT_COMPRESSION.rle"
  3030. name="rle"
  3031. command="--cinit_compression=rle"/>
  3032. <enumeratedOptionValue
  3033. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.CINIT_COMPRESSION.lzss"
  3034. name="lzss"
  3035. command="--cinit_compression=lzss"/>
  3036. <enumeratedOptionValue
  3037. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.CINIT_COMPRESSION.off"
  3038. name="off"
  3039. command="--cinit_compression=off"/>
  3040. </option>
  3041. <option
  3042. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COPY_COMPRESSION"
  3043. name="Compress ELF sections copied using copy tables (--copy_compression)"
  3044. tip="Aliases: --copy_compression&lt;BODY&gt;Overlays can be managed by using linker generated copy tables. To save ROM space, the linker can compress the data copied by copy tables. The compressed data is decompressed during copy."
  3045. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3046. resourceFilter="project"
  3047. command="--copy_compression"
  3048. valueType="enumerated">
  3049. <enumeratedOptionValue
  3050. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COPY_COMPRESSION._none"
  3051. name=""
  3052. command=""/>
  3053. <enumeratedOptionValue
  3054. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COPY_COMPRESSION.rle"
  3055. name="rle"
  3056. command="--copy_compression=rle"/>
  3057. <enumeratedOptionValue
  3058. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COPY_COMPRESSION.lzss"
  3059. name="lzss"
  3060. command="--copy_compression=lzss"/>
  3061. <enumeratedOptionValue
  3062. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COPY_COMPRESSION.off"
  3063. name="off"
  3064. command="--copy_compression=off"/>
  3065. </option>
  3066. <option
  3067. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.FILL_VALUE"
  3068. name="Default fill value for holes in output sections (--fill_value, -f)"
  3069. tip="Aliases: --fill_value, -f&lt;BODY&gt;Set the default fill value for filling holes in output sections."
  3070. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3071. resourceFilter="project"
  3072. command="--fill_value="
  3073. valueType="string"/>
  3074. <option
  3075. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MULTITHREAD"
  3076. name="Multi-threading is used; choose thread-safe RTS library (--multithread)"
  3077. tip="Aliases: --multithread&lt;BODY&gt;Multi-threading is used; choose thread-safe RTS library"
  3078. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3079. resourceFilter="project"
  3080. defaultValue="false"
  3081. command="--multithread"
  3082. valueType="boolean"/>
  3083. <option
  3084. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.TRAMPOLINES"
  3085. name="Generate far call trampolines (--trampolines)"
  3086. tip="Aliases: --trampolines&lt;BODY&gt;Generate far call trampolines"
  3087. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3088. resourceFilter="project"
  3089. command="--trampolines"
  3090. valueType="enumerated">
  3091. <enumeratedOptionValue
  3092. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.TRAMPOLINES._none"
  3093. name=""
  3094. command=""/>
  3095. <enumeratedOptionValue
  3096. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.TRAMPOLINES.on"
  3097. name="on"
  3098. command="--trampolines=on"/>
  3099. <enumeratedOptionValue
  3100. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.TRAMPOLINES.off"
  3101. name="off"
  3102. command="--trampolines=off"/>
  3103. </option>
  3104. <option
  3105. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.INITIALIZATION_MODEL"
  3106. name="Initialization model"
  3107. tip="(--rom_model) - Link using ROM autoinitialization model (--ram_model) - Link using RAM autoinitialization model"
  3108. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3109. resourceFilter="project"
  3110. command="@mutex"
  3111. valueType="enumerated">
  3112. <enumeratedOptionValue
  3113. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.INITIALIZATION_MODEL._none"
  3114. name=""
  3115. command=""/>
  3116. <enumeratedOptionValue
  3117. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.INITIALIZATION_MODEL.ROM_MODEL"
  3118. name="Link using ROM autoinitialization model (--rom_model, -c)"
  3119. isDefault="true"
  3120. command="--rom_model"/>
  3121. <enumeratedOptionValue
  3122. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.INITIALIZATION_MODEL.RAM_MODEL"
  3123. name="Link using RAM autoinitialization model (--ram_model, -cr)"
  3124. command="--ram_model"/>
  3125. </option>
  3126. <optionCategory
  3127. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKRTENV"
  3128. name="Runtime Environment"
  3129. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"/>
  3130. <option
  3131. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COMPRESS_DWARF"
  3132. name="Aggressively reduce size of the DWARF information (--compress_dwarf)"
  3133. tip="Aliases: --compress_dwarf&lt;BODY&gt;Aggressively reduce the size of the DWARF information. When this option used, the DWARF information is parsed and examined to look for and eliminate duplicate types, and builds a .debug_abbrev table for the whole program."
  3134. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3135. resourceFilter="project"
  3136. command="--compress_dwarf"
  3137. valueType="enumerated">
  3138. <enumeratedOptionValue
  3139. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COMPRESS_DWARF._none"
  3140. name=""
  3141. command=""/>
  3142. <enumeratedOptionValue
  3143. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COMPRESS_DWARF.on"
  3144. name="on"
  3145. command="--compress_dwarf=on"/>
  3146. <enumeratedOptionValue
  3147. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.COMPRESS_DWARF.off"
  3148. name="off"
  3149. command="--compress_dwarf=off"/>
  3150. </option>
  3151. <option
  3152. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DISABLE_CLINK"
  3153. name="Disable conditional linking and ignore .clink (--disable_clink, -j)"
  3154. tip="Aliases: --disable_clink, -j&lt;BODY&gt;Disable conditional linking; ignore all .clink directives."
  3155. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3156. resourceFilter="project"
  3157. defaultValue="false"
  3158. command="--disable_clink"
  3159. valueType="boolean"/>
  3160. <option
  3161. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MINIMIZE_TRAMPOLINES"
  3162. name="Select trampoline minimization algorithm (--minimize_trampolines)"
  3163. tip="Aliases: --minimize_trampolines&lt;BODY&gt;This option attempts to place sections so as to minimize the number of far call trampolines required, possibly at the expense of optimal memory packing. The argument selects a heuristic to use. The 'postorder' heuristic attempts to place functions before their callers so that the PC-relative offset is known when the caller is placed."
  3164. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3165. resourceFilter="project"
  3166. command="--minimize_trampolines"
  3167. valueType="enumerated">
  3168. <enumeratedOptionValue
  3169. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MINIMIZE_TRAMPOLINES._none"
  3170. name=""
  3171. command=""/>
  3172. <enumeratedOptionValue
  3173. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MINIMIZE_TRAMPOLINES.postorder"
  3174. name="postorder"
  3175. command="--minimize_trampolines=postorder"/>
  3176. <enumeratedOptionValue
  3177. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.MINIMIZE_TRAMPOLINES.off"
  3178. name="off"
  3179. command="--minimize_trampolines=off"/>
  3180. </option>
  3181. <option
  3182. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.PREFERRED_ORDER"
  3183. name="Add &lt;function&gt; to preferred placement order list (--preferred_order)"
  3184. tip="Aliases: --preferred_order&lt;BODY&gt;Insert a function into the preferred function order list for placement. Functions that are close to each other in the preferred function order list will tend to be placed close together (increase program locality between them). Static functions of the same name can be distinguished from each other by prefixing the function name with the path and file in which the function is defined followed by a ':' character to delimit the beginning of the function name."
  3185. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3186. resourceFilter="project"
  3187. command="--preferred_order="
  3188. valueType="stringList">
  3189. </option>
  3190. <option
  3191. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.STRICT_COMPATIBILITY"
  3192. name="Strict compatibility checking (--strict_compatibility)"
  3193. tip="Aliases: --strict_compatibility&lt;BODY&gt;Strict compatibility checking"
  3194. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3195. resourceFilter="project"
  3196. command="--strict_compatibility"
  3197. valueType="enumerated">
  3198. <enumeratedOptionValue
  3199. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.STRICT_COMPATIBILITY._none"
  3200. name=""
  3201. command=""/>
  3202. <enumeratedOptionValue
  3203. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.STRICT_COMPATIBILITY.on"
  3204. name="on"
  3205. command="--strict_compatibility=on"/>
  3206. <enumeratedOptionValue
  3207. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.STRICT_COMPATIBILITY.off"
  3208. name="off"
  3209. command="--strict_compatibility=off"/>
  3210. </option>
  3211. <option
  3212. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.TRAMPOLINE_MIN_SPACING"
  3213. name="Minimum space between non-adjacent trampolines (--trampoline_min_spacing)"
  3214. tip="Aliases: --trampoline_min_spacing&lt;BODY&gt;When trampoline reservations are spaced more closely than this limit, try to make them adjacent. A higher value minimizes fragmentation, but may result in more trampolines. A lower value may reduce trampolines, at the expense of fragmentation and linker running time. Specifying 0 for this option disables coalescing. The default is 16K."
  3215. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3216. resourceFilter="project"
  3217. command="--trampoline_min_spacing="
  3218. valueType="string"/>
  3219. <option
  3220. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.UNUSED_SECTION_ELIMINATION"
  3221. name="Eliminate sections not needed in the executable (--unused_section_elimination)"
  3222. tip="Aliases: --unused_section_elimination&lt;BODY&gt;In order to minimize memory use, the linker does not include a section that is not needed to resolve any references in the final executable. --unused_section_elimination=off can be used to disable this optimization."
  3223. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3224. resourceFilter="project"
  3225. command="--unused_section_elimination"
  3226. valueType="enumerated">
  3227. <enumeratedOptionValue
  3228. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.UNUSED_SECTION_ELIMINATION._none"
  3229. name=""
  3230. command=""/>
  3231. <enumeratedOptionValue
  3232. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.UNUSED_SECTION_ELIMINATION.on"
  3233. name="on"
  3234. command="--unused_section_elimination=on"/>
  3235. <enumeratedOptionValue
  3236. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.UNUSED_SECTION_ELIMINATION.off"
  3237. name="off"
  3238. command="--unused_section_elimination=off"/>
  3239. </option>
  3240. <option
  3241. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ZERO_INIT"
  3242. name="Zero initialize ELF uninitialized sections (--zero_init)"
  3243. tip="Aliases: --zero_init&lt;BODY&gt;This option indicates that the linker should generate compressed cinit table records that zero initializes ELF uninitialized sections during boot. This option is ignored if --rom_model option is not specified."
  3244. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3245. resourceFilter="project"
  3246. command="--zero_init"
  3247. valueType="enumerated">
  3248. <enumeratedOptionValue
  3249. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ZERO_INIT._none"
  3250. name=""
  3251. command=""/>
  3252. <enumeratedOptionValue
  3253. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ZERO_INIT.on"
  3254. name="on"
  3255. command="--zero_init=on"/>
  3256. <enumeratedOptionValue
  3257. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.ZERO_INIT.off"
  3258. name="off"
  3259. command="--zero_init=off"/>
  3260. </option>
  3261. <optionCategory
  3262. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKMISC"
  3263. name="Miscellaneous"
  3264. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"/>
  3265. <option
  3266. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.BIND_NOW"
  3267. name="Disable Linux default lazy binding mechanisms (--bind_now)"
  3268. tip="Aliases: --bind_now&lt;BODY&gt;Disable Linux default lazy binding mechanisms"
  3269. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3270. resourceFilter="project"
  3271. defaultValue="false"
  3272. command="--bind_now"
  3273. valueType="boolean"/>
  3274. <option
  3275. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DSBT_INDEX"
  3276. name="The DSBT index of this component (--dsbt_index)"
  3277. tip="Aliases: --dsbt_index&lt;BODY&gt;The Data Segment Base Table (DSBT) contains the Data Page (DP) pointer for each component (executable or shared object) in a dynamic linking system. A dynamic component uses a unique index to access its DP value. This index can be allocated at run time by the dynamic loader or can be statically assigned via this option. The index value should be less than the DSBT size."
  3278. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3279. resourceFilter="project"
  3280. command="--dsbt_index="
  3281. valueType="string"/>
  3282. <option
  3283. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DSBT_SIZE"
  3284. name="The size of Data Segment Base Table (DSBT) in words (--dsbt_size)"
  3285. tip="Aliases: --dsbt_size&lt;BODY&gt;The Data Segment Base Table (DSBT) contains the Data Page (DP) pointer for each component (executable or shared object) in a dynamic linking system. Each dynamic component in the system has an entry in the DSBT. This option specifies the size of the DSBT, and should be no less than the number of dynamic components in the system."
  3286. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3287. resourceFilter="project"
  3288. command="--dsbt_size="
  3289. valueType="string"/>
  3290. <option
  3291. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DYNAMIC"
  3292. name="Generate dynamic executable or a dynamic library (--dynamic)"
  3293. tip="Aliases: --dynamic&lt;BODY&gt;Generate a dynamic executable or a dynamic library for use in an application that is dynamically linked and relocated at load time"
  3294. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3295. resourceFilter="project"
  3296. command="--dynamic"
  3297. valueType="enumerated">
  3298. <enumeratedOptionValue
  3299. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DYNAMIC._none"
  3300. name=""
  3301. command=""/>
  3302. <enumeratedOptionValue
  3303. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DYNAMIC.exe"
  3304. name="exe"
  3305. command="--dynamic=exe"/>
  3306. <enumeratedOptionValue
  3307. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DYNAMIC.lib"
  3308. name="lib"
  3309. command="--dynamic=lib"/>
  3310. </option>
  3311. <option
  3312. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.EXPORT"
  3313. name="Export specified symbol (--export)"
  3314. tip="Aliases: --export&lt;BODY&gt;This option makes the specified global symbol an exported definition. Global symbols that are given restricted (hidden) visibility by source code annotations will not be exported by this option."
  3315. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3316. resourceFilter="project"
  3317. command="--export="
  3318. valueType="stringList">
  3319. </option>
  3320. <option
  3321. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.FINI"
  3322. name="Specify the symbol name of the finalization code (--fini)"
  3323. tip="Aliases: --fini&lt;BODY&gt;This option sets the entry point symbol for finalization code. The dynamic loader calls the finalization code when it unloads a dynamically loaded object. When this option is used, the linker generates the DT_FINI dynamic tag and sets it to the address of the symbol."
  3324. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3325. resourceFilter="project"
  3326. command="--fini="
  3327. valueType="string"/>
  3328. <option
  3329. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.FORCED_STATIC_BINDING"
  3330. name="Force all import references to bind during static linking (--forced_static_binding)"
  3331. tip="Aliases: --forced_static_binding&lt;BODY&gt;Force all import references to bind during static linking."
  3332. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3333. resourceFilter="project"
  3334. command="--forced_static_binding"
  3335. valueType="enumerated">
  3336. <enumeratedOptionValue
  3337. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.FORCED_STATIC_BINDING._none"
  3338. name=""
  3339. command=""/>
  3340. <enumeratedOptionValue
  3341. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.FORCED_STATIC_BINDING.on"
  3342. name="on"
  3343. command="--forced_static_binding=on"/>
  3344. <enumeratedOptionValue
  3345. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.FORCED_STATIC_BINDING.off"
  3346. name="off"
  3347. command="--forced_static_binding=off"/>
  3348. </option>
  3349. <option
  3350. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.IMPORT"
  3351. name="Import specified symbol (--import)"
  3352. tip="Aliases: --import&lt;BODY&gt;This option makes specified global symbol an imported references. Global symbols that are given restricted (hidden) visibility by source code annotations will not be imported by this option."
  3353. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3354. resourceFilter="project"
  3355. command="--import="
  3356. valueType="stringList">
  3357. </option>
  3358. <option
  3359. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.INIT"
  3360. name="Specify the symbol name of the initialization code (--init)"
  3361. tip="Aliases: --init&lt;BODY&gt;This option sets the entry point symbol for initialization code. The dynamic loader calls the initialization code when it loads a dynamically loaded object. When this option is used, the linker generates the DT_INIT dynamic tag and sets it to the address of the symbol."
  3362. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3363. resourceFilter="project"
  3364. command="--init="
  3365. valueType="string"/>
  3366. <option
  3367. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.RPATH"
  3368. name="Add directory to beginning of dynamic library search path (--rpath)"
  3369. tip="Aliases: --rpath&lt;BODY&gt;The specified directory will be searched BEFORE the directories in LD_LIBRARY_PATH"
  3370. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3371. resourceFilter="project"
  3372. command="--rpath="
  3373. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  3374. browseType="directory"
  3375. browseFilterPath="${PROJECT_ROOT}"
  3376. valueType="stringList">
  3377. </option>
  3378. <option
  3379. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.RUNPATH"
  3380. name="Add directory to end of dynamic library search path (--runpath)"
  3381. tip="Aliases: --runpath&lt;BODY&gt;The specified directory will be searched AFTER the directories in LD_LIBRARY_PATH"
  3382. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3383. resourceFilter="project"
  3384. command="--runpath="
  3385. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  3386. browseType="directory"
  3387. browseFilterPath="${PROJECT_ROOT}"
  3388. valueType="stringList">
  3389. </option>
  3390. <option
  3391. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.SONAME"
  3392. name="Specify ELF shared object file name (--soname)"
  3393. tip="Aliases: --soname&lt;BODY&gt;Specify ELF shared object file name"
  3394. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3395. resourceFilter="project"
  3396. command="--soname="
  3397. valueType="string"/>
  3398. <optionCategory
  3399. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.DYNAMIC"
  3400. name="Dynamic Linking Support Options"
  3401. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"/>
  3402. <optionCategory
  3403. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.linkerID.LNKADV"
  3404. name="Advanced Options"
  3405. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID"/>
  3406. <option
  3407. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.OTHER_FLAGS"
  3408. name="Other flags"
  3409. applicabilityCalculator="com.ti.common.project.core.internal.options.HiddenOptionApplicability"
  3410. valueType="stringList"/>
  3411. </tool>
  3412. <tool
  3413. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex"
  3414. superClass="com.ti.ccstudio.buildDefinitions.baseHexTool"
  3415. name="C6000 Hex Utility"
  3416. natureFilter="both"
  3417. commandLineGenerator="com.ti.ccstudio.project.core.internal.build.HexCommandLineGenerator"
  3418. commandLinePattern="${command} ${flags} ${output_flag} ${output} ${inputs}"
  3419. command="&quot;${CG_TOOL_HEX}&quot;"
  3420. outputFlag="-o">
  3421. <inputType
  3422. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.inputType__EXE"
  3423. name="Executable File"
  3424. sourceContentType="org.eclipse.cdt.managedbuilder.core.executableFile"
  3425. multipleOfType="true"
  3426. buildVariable="EXE_OUTPUTS">
  3427. <!-- >> NOTE [bbelyavsky]: Workaround for https://bugzilla.dal.design.ti.com/show_bug.cgi?id=9678 - CDT stops constructing build-description once it reaches target-tool (linker), so .hex files are not deleted during incremental build, since they're not part of build-description. Specifying the 'redundant' additional-input, 'EXE_OUTPUTS', happens to work around this problem. -->
  3428. <additionalInput
  3429. kind="additionalinput"
  3430. paths="$(EXE_OUTPUTS)"/>
  3431. <!-- << -->
  3432. </inputType>
  3433. <outputType
  3434. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.outputType__BIN"
  3435. name="Binary File"
  3436. outputContentType="com.ti.common.core.binFile"
  3437. nameProvider="com.ti.ccstudio.project.core.internal.build.HexOutputNameProvider"
  3438. primaryOutput="true"
  3439. buildVariable="BIN_OUTPUTS"/>
  3440. <option
  3441. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.TOOL_ENABLE"
  3442. name="Enable tool"
  3443. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex"
  3444. valueType="boolean"/>
  3445. <optionCategory
  3446. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3447. name="General Options"
  3448. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex"/>
  3449. <option
  3450. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.BYTE"
  3451. name="Output as bytes rather than target addressing (--byte, -byte)"
  3452. tip="Aliases: --byte, -byte&lt;BODY&gt;Output as bytes rather than target addressing."
  3453. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3454. resourceFilter="project"
  3455. defaultValue="false"
  3456. command="--byte"
  3457. valueType="boolean"/>
  3458. <option
  3459. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ENTRYPOINT"
  3460. name="Specify entrypoint address or symbol name (--entrypoint, -e=addr)"
  3461. tip="Aliases: --entrypoint, -e=addr&lt;BODY&gt;Specify entrypoint address or symbol name."
  3462. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3463. resourceFilter="project"
  3464. command="--entrypoint="
  3465. valueType="string"/>
  3466. <option
  3467. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.EXCLUDE"
  3468. name="Exclude section from hex conversion (--exclude, -exclude=section)"
  3469. tip="Aliases: --exclude, -exclude=section&lt;BODY&gt;Exclude section from hex conversion."
  3470. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3471. resourceFilter="project"
  3472. command="--exclude="
  3473. valueType="stringList"/>
  3474. <option
  3475. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.FILL"
  3476. name="Specify fill value (--fill, -fill=val)"
  3477. tip="Aliases: --fill, -fill=val&lt;BODY&gt;Specify fill value."
  3478. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3479. resourceFilter="project"
  3480. command="--fill="
  3481. valueType="string"/>
  3482. <option
  3483. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.IMAGE"
  3484. name="Select image mode (--image, -image)"
  3485. tip="Aliases: --image, -image&lt;BODY&gt;Select image mode."
  3486. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3487. resourceFilter="project"
  3488. defaultValue="false"
  3489. command="--image"
  3490. valueType="boolean"/>
  3491. <option
  3492. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.LINKERFILL"
  3493. name="Include linker fill sections in images (--linkerfill, -linkerfill)"
  3494. tip="Aliases: --linkerfill, -linkerfill&lt;BODY&gt;Include linker fill sections in images."
  3495. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3496. resourceFilter="project"
  3497. defaultValue="false"
  3498. command="--linkerfill"
  3499. valueType="boolean"/>
  3500. <option
  3501. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.MAP"
  3502. name="Specify map file name (--map, -map=file)"
  3503. tip="Aliases: --map, -map=file&lt;BODY&gt;Specify map file name."
  3504. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3505. resourceFilter="project"
  3506. command="--map="
  3507. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  3508. browseType="file"
  3509. browseFilterPath="${PROJECT_ROOT}"
  3510. valueType="string"/>
  3511. <option
  3512. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.MEMWIDTH"
  3513. name="Specify memory width (--memwidth, -memwidth=width)"
  3514. tip="Aliases: --memwidth, -memwidth=width&lt;BODY&gt;Specify memory width."
  3515. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3516. resourceFilter="project"
  3517. command="--memwidth="
  3518. valueType="string"/>
  3519. <option
  3520. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ORDER"
  3521. name="Specify data ordering (endianness) (--order, -order)"
  3522. tip="Aliases: --order, -order&lt;BODY&gt;Specify data ordering (endianness)."
  3523. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3524. resourceFilter="project"
  3525. command="--order="
  3526. valueType="enumerated">
  3527. <enumeratedOptionValue
  3528. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ORDER._none"
  3529. name=""
  3530. command=""/>
  3531. <enumeratedOptionValue
  3532. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ORDER.L"
  3533. name="L"
  3534. command="--order=L"/>
  3535. <enumeratedOptionValue
  3536. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ORDER.M"
  3537. name="M"
  3538. command="--order=M"/>
  3539. </option>
  3540. <option
  3541. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FILE"
  3542. name="Specify output file names (--outfile, -o=file)"
  3543. tip="Aliases: --outfile, -o=file&lt;BODY&gt;Specify output file names."
  3544. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3545. resourceFilter="project"
  3546. applicabilityCalculator="com.ti.common.project.core.internal.options.VirtualOptionApplicability"
  3547. command="--outfile="
  3548. commandGenerator="com.ti.common.project.core.internal.options.QuotedOptionCommandGenerator"
  3549. browseType="file"
  3550. browseFilterPath="${PROJECT_ROOT}"
  3551. valueType="string"/>
  3552. <option
  3553. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.QUIET"
  3554. name="Quiet Operation (--quiet, -quiet, -q)"
  3555. tip="Aliases: --quiet, -quiet, -q&lt;BODY&gt;Quiet Operation."
  3556. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3557. resourceFilter="project"
  3558. defaultValue="false"
  3559. command="--quiet"
  3560. valueType="boolean"/>
  3561. <option
  3562. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ROMWIDTH"
  3563. name="Specify rom width (--romwidth, -romwidth=width)"
  3564. tip="Aliases: --romwidth, -romwidth=width&lt;BODY&gt;Specify rom width."
  3565. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3566. resourceFilter="project"
  3567. command="--romwidth="
  3568. valueType="string"/>
  3569. <option
  3570. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ZERO"
  3571. name="Zero based addressing (--zero, -zero, -z)"
  3572. tip="Aliases: --zero, -zero, -z&lt;BODY&gt;Zero based addressing."
  3573. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.GENERAL"
  3574. resourceFilter="project"
  3575. defaultValue="false"
  3576. command="--zero"
  3577. valueType="boolean"/>
  3578. <optionCategory
  3579. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3580. name="Diagnostics Options"
  3581. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex"/>
  3582. <option
  3583. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.BUFFER_DIAGNOSTICS"
  3584. name="Line buffer diagnostic output (--buffer_diagnostics, -pdb)"
  3585. tip="Aliases: --buffer_diagnostics, -pdb&lt;BODY&gt;Line buffer diagnostic output."
  3586. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3587. resourceFilter="project"
  3588. defaultValue="false"
  3589. command="--buffer_diagnostics"
  3590. valueType="boolean"/>
  3591. <option
  3592. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_ERROR"
  3593. name="Treat diagnostic &lt;id&gt; as error (--diag_error=id)"
  3594. tip="Aliases: --diag_error=id&lt;BODY&gt;Treat diagnostic &lt;id&gt; as error."
  3595. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3596. resourceFilter="project"
  3597. command="--diag_error="
  3598. valueType="stringList"/>
  3599. <option
  3600. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_REMARK"
  3601. name="Treat diagnostic &lt;id&gt; as remark (--diag_remark=id)"
  3602. tip="Aliases: --diag_remark=id&lt;BODY&gt;Treat diagnostic &lt;id&gt; as remark."
  3603. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3604. resourceFilter="project"
  3605. command="--diag_remark="
  3606. valueType="stringList"/>
  3607. <option
  3608. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_SUPPRESS"
  3609. name="Suppress diagnostic &lt;id&gt; (--diag_suppress=id)"
  3610. tip="Aliases: --diag_suppress=id&lt;BODY&gt;Suppress diagnostic &lt;id&gt;."
  3611. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3612. resourceFilter="project"
  3613. command="--diag_suppress="
  3614. valueType="stringList"/>
  3615. <option
  3616. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_WARNING"
  3617. name="Treat diagnostic &lt;id&gt; as warning (--diag_warning=id)"
  3618. tip="Aliases: --diag_warning=id&lt;BODY&gt;Treat diagnostic &lt;id&gt; as warning."
  3619. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3620. resourceFilter="project"
  3621. command="--diag_warning="
  3622. valueType="stringList"/>
  3623. <option
  3624. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_WRAP"
  3625. name="Wrap diagnostic messages (--diag_wrap)"
  3626. tip="Aliases: --diag_wrap&lt;BODY&gt;Wrap diagnostic messages ."
  3627. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3628. resourceFilter="project"
  3629. command="--diag_wrap="
  3630. valueType="enumerated">
  3631. <enumeratedOptionValue
  3632. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_WRAP._none"
  3633. name=""
  3634. command=""/>
  3635. <enumeratedOptionValue
  3636. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_WRAP.on"
  3637. name="on"
  3638. command="--diag_wrap=on"/>
  3639. <enumeratedOptionValue
  3640. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DIAG_WRAP.off"
  3641. name="off"
  3642. command="--diag_wrap=off"/>
  3643. </option>
  3644. <option
  3645. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.DISPLAY_ERROR_NUMBER"
  3646. name="Emit diagnostic identifier numbers (--display_error_number)"
  3647. tip="Aliases: --display_error_number&lt;BODY&gt;Emit diagnostic identifier numbers."
  3648. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3649. resourceFilter="project"
  3650. defaultValue="false"
  3651. command="--display_error_number"
  3652. valueType="boolean"/>
  3653. <option
  3654. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.EMIT_WARNINGS_AS_ERRORS"
  3655. name="Treat warnings as errors (--emit_warnings_as_errors, -pdew)"
  3656. tip="Aliases: --emit_warnings_as_errors, -pdew&lt;BODY&gt;Treat warnings as errors."
  3657. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3658. resourceFilter="project"
  3659. defaultValue="false"
  3660. command="--emit_warnings_as_errors"
  3661. valueType="boolean"/>
  3662. <option
  3663. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.ISSUE_REMARKS"
  3664. name="Issue remarks (--issue_remarks)"
  3665. tip="Aliases: --issue_remarks&lt;BODY&gt;Issue remarks."
  3666. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3667. resourceFilter="project"
  3668. defaultValue="false"
  3669. command="--issue_remarks"
  3670. valueType="boolean"/>
  3671. <option
  3672. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.NO_WARNINGS"
  3673. name="Suppress warnings (--no_warnings)"
  3674. tip="Aliases: --no_warnings&lt;BODY&gt;Suppress warnings."
  3675. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3676. resourceFilter="project"
  3677. defaultValue="false"
  3678. command="--no_warnings"
  3679. valueType="boolean"/>
  3680. <option
  3681. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.SET_ERROR_LIMIT"
  3682. name="Set error limit to &lt;count&gt; (--set_error_limit=count)"
  3683. tip="Aliases: --set_error_limit=count&lt;BODY&gt;Set error limit to &lt;count&gt;."
  3684. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.DIAGNOSTICS"
  3685. resourceFilter="project"
  3686. command="--set_error_limit="
  3687. valueType="string"/>
  3688. <optionCategory
  3689. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.BOOT_TABLE"
  3690. name="Boot Table Options"
  3691. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex"/>
  3692. <option
  3693. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.BOOT"
  3694. name="Select boot mode (--boot, -boot)"
  3695. tip="Aliases: --boot, -boot&lt;BODY&gt;Select boot mode."
  3696. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.BOOT_TABLE"
  3697. resourceFilter="project"
  3698. defaultValue="false"
  3699. command="--boot"
  3700. valueType="boolean"/>
  3701. <option
  3702. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.BOOTORG"
  3703. name="Specify origin address or symbol of boot table ROM (--bootorg, -bootorg=addr)"
  3704. tip="Aliases: --bootorg, -bootorg=addr&lt;BODY&gt;Specify origin address or symbol of boot table ROM."
  3705. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.BOOT_TABLE"
  3706. resourceFilter="project"
  3707. command="--bootorg="
  3708. valueType="string"/>
  3709. <option
  3710. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.BOOTSECTION"
  3711. name="Specify boot mode section and placement value (--bootsection, -bootsection=section)"
  3712. tip="Aliases: --bootsection, -bootsection=section&lt;BODY&gt;Specify boot mode section and placement value."
  3713. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.BOOT_TABLE"
  3714. resourceFilter="project"
  3715. command="--bootsection="
  3716. valueType="string"/>
  3717. <optionCategory
  3718. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.OUTPUT_FORMAT"
  3719. name="Output Format Options"
  3720. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex"/>
  3721. <option
  3722. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT"
  3723. name="Output format"
  3724. tip="&lt;BODY&gt;Output format."
  3725. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.OUTPUT_FORMAT"
  3726. resourceFilter="project"
  3727. valueType="enumerated">
  3728. <enumeratedOptionValue
  3729. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT._none"
  3730. name=""
  3731. command=""/>
  3732. <enumeratedOptionValue
  3733. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.ASCII"
  3734. name="Output ASCII hex format (--ascii, -a)"
  3735. command="--ascii"/>
  3736. <enumeratedOptionValue
  3737. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.INTEL"
  3738. name="Output Intel hex format (--intel, -i)"
  3739. command="--intel"/>
  3740. <enumeratedOptionValue
  3741. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.MOTOROLA1"
  3742. name="Output Motorola S hex format (--motorola, -m=1)"
  3743. command="--motorola=1"/>
  3744. <enumeratedOptionValue
  3745. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.MOTOROLA2"
  3746. name="Output Motorola S hex format (--motorola, -m=2)"
  3747. command="--motorola=2"/>
  3748. <enumeratedOptionValue
  3749. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.MOTOROLA3"
  3750. name="Output Motorola S hex format (--motorola, -m=3)"
  3751. command="--motorola=3"/>
  3752. <enumeratedOptionValue
  3753. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.TEKTRONIX"
  3754. name="Output Extended Tektronix hex format (--tektronix, -x)"
  3755. command="--tektronix"/>
  3756. <enumeratedOptionValue
  3757. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.TI_TAGGED"
  3758. name="Output TI-Tagged hex format (--ti_tagged, -t)"
  3759. command="--ti_tagged"/>
  3760. <enumeratedOptionValue
  3761. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OUTPUT_FORMAT.TI_TXT"
  3762. name="Output TI-TXT hex format (--ti_txt)"
  3763. command="--ti_txt"/>
  3764. </option>
  3765. <optionCategory
  3766. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3767. name="Load Image Options"
  3768. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex"/>
  3769. <option
  3770. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OBJECT_FORMAT"
  3771. name="Object format"
  3772. tip="&lt;BODY&gt;Object format."
  3773. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3774. resourceFilter="project"
  3775. valueType="enumerated">
  3776. <enumeratedOptionValue
  3777. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OBJECT_FORMAT._none"
  3778. name=""
  3779. command=""/>
  3780. <enumeratedOptionValue
  3781. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OBJECT_FORMAT.HOST_IMAGE"
  3782. name="Output Host Image Object format (--host_image)"
  3783. command="--host_image"/>
  3784. <enumeratedOptionValue
  3785. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OBJECT_FORMAT.LOAD_IMAGE"
  3786. name="Output Load Image Object format (--load_image)"
  3787. command="--load_image"/>
  3788. </option>
  3789. <option
  3790. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:ENDIANNESS"
  3791. name="Select the endianness of the host image object (--host_image:endianness)"
  3792. tip="Aliases: --host_image:endianness&lt;BODY&gt;Select the endianness of the host image object."
  3793. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3794. resourceFilter="project"
  3795. command="--host_image:endianness="
  3796. valueType="enumerated">
  3797. <enumeratedOptionValue
  3798. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:ENDIANNESS._none"
  3799. name=""
  3800. command=""/>
  3801. <enumeratedOptionValue
  3802. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:ENDIANNESS.big"
  3803. name="big"
  3804. command="--host_image:endianness=big"/>
  3805. <enumeratedOptionValue
  3806. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:ENDIANNESS.little"
  3807. name="little"
  3808. command="--host_image:endianness=little"/>
  3809. </option>
  3810. <option
  3811. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:HIDDEN_SYMBOLS"
  3812. name="Determine the visibility of symbols copied in host images (--host_image:hidden_symbols)"
  3813. tip="Aliases: --host_image:hidden_symbols&lt;BODY&gt;Determine the visibility of symbols copied in host images."
  3814. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3815. resourceFilter="project"
  3816. defaultValue="false"
  3817. command="--host_image:hidden_symbols"
  3818. valueType="boolean"/>
  3819. <option
  3820. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:HIDE"
  3821. name="Explicitly make a host image symbol hidden (--host_image:hide=string)"
  3822. tip="Aliases: --host_image:hide=string&lt;BODY&gt;Explicitly make a host image symbol hidden."
  3823. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3824. resourceFilter="project"
  3825. command="--host_image:hide="
  3826. valueType="stringList"/>
  3827. <option
  3828. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:SHOW"
  3829. name="Explicitly make a host image symbol visible (--host_image:show=string)"
  3830. tip="Aliases: --host_image:show=string&lt;BODY&gt;Explicitly make a host image symbol visible."
  3831. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3832. resourceFilter="project"
  3833. command="--host_image:show="
  3834. valueType="stringList"/>
  3835. <option
  3836. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET"
  3837. name="Machine type of the host image object file (--host_image:target)"
  3838. tip="Aliases: --host_image:target&lt;BODY&gt;Machine type of the host image object file."
  3839. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3840. resourceFilter="project"
  3841. command="--host_image:target="
  3842. valueType="enumerated">
  3843. <enumeratedOptionValue
  3844. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET._none"
  3845. name=""
  3846. command=""/>
  3847. <enumeratedOptionValue
  3848. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET.ARM"
  3849. name="ARM"
  3850. command="--host_image:target=ARM"/>
  3851. <enumeratedOptionValue
  3852. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET.MSP430"
  3853. name="MSP430"
  3854. command="--host_image:target=MSP430"/>
  3855. <enumeratedOptionValue
  3856. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET.C2000"
  3857. name="C2000"
  3858. command="--host_image:target=C2000"/>
  3859. <enumeratedOptionValue
  3860. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET.C6000"
  3861. name="C6000"
  3862. command="--host_image:target=C6000"/>
  3863. <enumeratedOptionValue
  3864. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET.ARP32"
  3865. name="ARP32"
  3866. command="--host_image:target=ARP32"/>
  3867. <enumeratedOptionValue
  3868. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.HOST_IMAGE:TARGET.PRU"
  3869. name="PRU"
  3870. command="--host_image:target=PRU"/>
  3871. </option>
  3872. <option
  3873. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.SECTION_NAME_PREFIX"
  3874. name="Prefix for load/host image object sections (--section_name_prefix=string)"
  3875. tip="Aliases: --section_name_prefix=string&lt;BODY&gt;Prefix for load/host image object sections."
  3876. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.hex.LOAD_IMAGE"
  3877. resourceFilter="project"
  3878. command="--section_name_prefix="
  3879. valueType="string"/>
  3880. <option
  3881. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex.OTHER_FLAGS"
  3882. name="Other flags"
  3883. applicabilityCalculator="com.ti.common.project.core.internal.options.HiddenOptionApplicability"
  3884. valueType="stringList"/>
  3885. </tool>
  3886. <!-- ============================== End auto-generated body ============================== -->
  3887. <tool
  3888. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID"
  3889. superClass="com.ti.ccstudio.buildDefinitions.baseArchiverTool"
  3890. isAbstract="true"
  3891. name="C6000 Archiver"
  3892. command="&quot;${CG_TOOL_AR}&quot;">
  3893. <option
  3894. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID.R"
  3895. name="Archiver flag"
  3896. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.archiverID.BASIC"
  3897. resourceFilter="project"
  3898. applicabilityCalculator="com.ti.common.project.core.internal.options.HiddenOptionApplicability"
  3899. command="r"
  3900. value="true"
  3901. valueType="boolean"/>
  3902. <option
  3903. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID.OUTPUT_FILE"
  3904. name="Output file"
  3905. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.archiverID.BASIC"
  3906. resourceFilter="project"
  3907. valueHandler="com.ti.ccstudio.project.core.internal.options.OutputFileOptionValueHandler"
  3908. applicabilityCalculator="com.ti.common.project.core.internal.options.VirtualOptionApplicability"
  3909. command=""
  3910. browseType="file"
  3911. valueType="string"/>
  3912. <option
  3913. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID.QUIET"
  3914. name="Quiet mode - normal status messages suppressed (q)"
  3915. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.archiverID.BASIC"
  3916. resourceFilter="project"
  3917. command="q"
  3918. valueType="boolean"/>
  3919. <option
  3920. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID.PRINT_GLOBAL_SYMBOLS"
  3921. name="Print symbol table contents (s)"
  3922. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.archiverID.BASIC"
  3923. resourceFilter="project"
  3924. command="s"
  3925. valueType="boolean"/>
  3926. <option
  3927. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID.VERBOSE"
  3928. name="Verbose (v)"
  3929. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.archiverID.BASIC"
  3930. resourceFilter="project"
  3931. command="v"
  3932. valueType="boolean"/>
  3933. <option
  3934. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID.CMD_FILE"
  3935. name="Read options from specified file (@)"
  3936. category="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.archiverID.BASIC"
  3937. resourceFilter="project"
  3938. applicabilityCalculator="com.ti.common.project.core.internal.options.VirtualOptionApplicability"
  3939. command="@"
  3940. browseType="file"
  3941. valueType="string"/>
  3942. <optionCategory
  3943. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.cat.archiverID.BASIC"
  3944. name="Basic Options"
  3945. owner="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID"/>
  3946. <option
  3947. id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID.OTHER_FLAGS"
  3948. name="Other flags"
  3949. applicabilityCalculator="com.ti.common.project.core.internal.options.HiddenOptionApplicability"
  3950. valueType="stringList"/>
  3951. </tool>
  3952. </extension>
  3953. <extension point="com.ti.common.project.core.toolOptionCommandIndex"
  3954. id="C6000_8.2"
  3955. name="C6000 v8.2 Build-option Command Index">
  3956. <tool id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID">
  3957. <option command="-mv" tag="SILICON_VERSION"/>
  3958. <option command="--silicon_version" tag="SILICON_VERSION"/>
  3959. <option command="-me" tag="BIG_ENDIAN"/>
  3960. <option command="--big_endian" tag="BIG_ENDIAN"/>
  3961. <option command="--abi=coffabi" tag="ABI.coffabi"/>
  3962. <option command="--abi=eabi" tag="ABI.eabi"/>
  3963. <option command="--abi=elfabi" tag="ABI.elfabi"/>
  3964. <option command="-O" tag="OPT_LEVEL.2"/>
  3965. <option command="--opt_level" tag="OPT_LEVEL.2"/>
  3966. <option command="-Ooff" tag="OPT_LEVEL.off"/>
  3967. <option command="--opt_level=off" tag="OPT_LEVEL.off"/>
  3968. <option command="-O0" tag="OPT_LEVEL.0"/>
  3969. <option command="--opt_level=0" tag="OPT_LEVEL.0"/>
  3970. <option command="-O1" tag="OPT_LEVEL.1"/>
  3971. <option command="--opt_level=1" tag="OPT_LEVEL.1"/>
  3972. <option command="-O2" tag="OPT_LEVEL.2"/>
  3973. <option command="--opt_level=2" tag="OPT_LEVEL.2"/>
  3974. <option command="-O3" tag="OPT_LEVEL.3"/>
  3975. <option command="--opt_level=3" tag="OPT_LEVEL.3"/>
  3976. <option command="-mf" tag="OPT_FOR_SPEED.4"/>
  3977. <option command="--opt_for_speed" tag="OPT_FOR_SPEED.4"/>
  3978. <option command="-mf0" tag="OPT_FOR_SPEED.0"/>
  3979. <option command="--size_speed_goal=high_risk_size" tag="OPT_FOR_SPEED.0"/>
  3980. <option command="--opt_for_speed=0" tag="OPT_FOR_SPEED.0"/>
  3981. <option command="-mf1" tag="OPT_FOR_SPEED.1"/>
  3982. <option command="--size_speed_goal=medium_risk_size" tag="OPT_FOR_SPEED.1"/>
  3983. <option command="--opt_for_speed=1" tag="OPT_FOR_SPEED.1"/>
  3984. <option command="-mf2" tag="OPT_FOR_SPEED.2"/>
  3985. <option command="--size_speed_goal=low_risk_size" tag="OPT_FOR_SPEED.2"/>
  3986. <option command="--opt_for_speed=2" tag="OPT_FOR_SPEED.2"/>
  3987. <option command="-mf3" tag="OPT_FOR_SPEED.3"/>
  3988. <option command="--size_speed_goal=low_risk_performance" tag="OPT_FOR_SPEED.3"/>
  3989. <option command="--opt_for_speed=3" tag="OPT_FOR_SPEED.3"/>
  3990. <option command="-mf4" tag="OPT_FOR_SPEED.4"/>
  3991. <option command="--size_speed_goal=medium_risk_performance" tag="OPT_FOR_SPEED.4"/>
  3992. <option command="--opt_for_speed=4" tag="OPT_FOR_SPEED.4"/>
  3993. <option command="-mf5" tag="OPT_FOR_SPEED.5"/>
  3994. <option command="--size_speed_goal=high_risk_performance" tag="OPT_FOR_SPEED.5"/>
  3995. <option command="--opt_for_speed=5" tag="OPT_FOR_SPEED.5"/>
  3996. <option command="-ms" tag="OPT_FOR_SPACE.0"/>
  3997. <option command="--opt_for_space" tag="OPT_FOR_SPACE.0"/>
  3998. <option command="-ms0" tag="OPT_FOR_SPACE.0"/>
  3999. <option command="--opt_for_space=0" tag="OPT_FOR_SPACE.0"/>
  4000. <option command="-ms1" tag="OPT_FOR_SPACE.1"/>
  4001. <option command="--opt_for_space=1" tag="OPT_FOR_SPACE.1"/>
  4002. <option command="-ms2" tag="OPT_FOR_SPACE.2"/>
  4003. <option command="--opt_for_space=2" tag="OPT_FOR_SPACE.2"/>
  4004. <option command="-ms3" tag="OPT_FOR_SPACE.3"/>
  4005. <option command="--opt_for_space=3" tag="OPT_FOR_SPACE.3"/>
  4006. <option command="-I" tag="INCLUDE_PATH"/>
  4007. <option command="--include_path" tag="INCLUDE_PATH"/>
  4008. <option command="--preinclude" tag="PREINCLUDE"/>
  4009. <option command="--advice:performance" tag="ADVICE__PERFORMANCE"/>
  4010. <option command="--advice:performance_dir" tag="ADVICE__PERFORMANCE_DIR"/>
  4011. <option command="--advice:performance_file" tag="ADVICE__PERFORMANCE_FILE"/>
  4012. <option command="-D" tag="DEFINE"/>
  4013. <option command="--define" tag="DEFINE"/>
  4014. <option command="--llopt=0" tag="LLOPT.0"/>
  4015. <option command="--llopt=1" tag="LLOPT.1"/>
  4016. <option command="--llopt=2" tag="LLOPT.2"/>
  4017. <option command="--llopt=3" tag="LLOPT.3"/>
  4018. <option command="-U" tag="UNDEFINE"/>
  4019. <option command="--undefine" tag="UNDEFINE"/>
  4020. <option command="-W" tag="W"/>
  4021. <option command="--symdebug:dwarf" tag="DEBUGGING_MODEL.SYMDEBUG__DWARF"/>
  4022. <option command="-g" tag="DEBUGGING_MODEL.SYMDEBUG__DWARF"/>
  4023. <option command="--symdebug:skeletal" tag="DEBUGGING_MODEL.SYMDEBUG__SKELETAL"/>
  4024. <option command="--symdebug:none" tag="DEBUGGING_MODEL.SYMDEBUG__NONE"/>
  4025. <option command="--symdebug:coff" tag="DEBUGGING_MODEL.SYMDEBUG__COFF"/>
  4026. <option command="--symdebug:profile_coff" tag="DEBUGGING_MODEL.SYMDEBUG__PROFILE_COFF"/>
  4027. <option command="-mn" tag="OPTIMIZE_WITH_DEBUG.on"/>
  4028. <option command="--optimize_with_debug" tag="OPTIMIZE_WITH_DEBUG.on"/>
  4029. <option command="-mnon" tag="OPTIMIZE_WITH_DEBUG.on"/>
  4030. <option command="--optimize_with_debug=on" tag="OPTIMIZE_WITH_DEBUG.on"/>
  4031. <option command="-mnoff" tag="OPTIMIZE_WITH_DEBUG.off"/>
  4032. <option command="--optimize_with_debug=off" tag="OPTIMIZE_WITH_DEBUG.off"/>
  4033. <option command="--machine_regs" tag="MACHINE_REGS"/>
  4034. <option command="--symdebug:keep_all_types" tag="SYMDEBUG__KEEP_ALL_TYPES"/>
  4035. <option command="--symdebug:dwarf_version=2" tag="SYMDEBUG__DWARF_VERSION.2"/>
  4036. <option command="--symdebug:dwarf_version=3" tag="SYMDEBUG__DWARF_VERSION.3"/>
  4037. <option command="--symdebug:dwarf_version=4" tag="SYMDEBUG__DWARF_VERSION.4"/>
  4038. <option command="--c89" tag="C_DIALECT.C89"/>
  4039. <option command="--c99" tag="C_DIALECT.C99"/>
  4040. <option command="--kr_compatible" tag="C_DIALECT.KR_COMPATIBLE"/>
  4041. <option command="-pk" tag="C_DIALECT.KR_COMPATIBLE"/>
  4042. <option command="--c++03" tag="C___DIALECT.CPLUSPLUS03"/>
  4043. <option command="--embedded_cpp" tag="C___DIALECT.EMBEDDED_CPP"/>
  4044. <option command="-pe" tag="C___DIALECT.EMBEDDED_CPP"/>
  4045. <option command="--relaxed_ansi" tag="LANGUAGE_MODE.RELAXED_ANSI"/>
  4046. <option command="-pr" tag="LANGUAGE_MODE.RELAXED_ANSI"/>
  4047. <option command="--strict_ansi" tag="LANGUAGE_MODE.STRICT_ANSI"/>
  4048. <option command="-ps" tag="LANGUAGE_MODE.STRICT_ANSI"/>
  4049. <option command="--exceptions" tag="EXCEPTIONS"/>
  4050. <option command="-rtti" tag="RTTI"/>
  4051. <option command="--rtti" tag="RTTI"/>
  4052. <option command="-fg" tag="CPP_DEFAULT"/>
  4053. <option command="--cpp_default" tag="CPP_DEFAULT"/>
  4054. <option command="--extern_c_can_throw" tag="EXTERN_C_CAN_THROW"/>
  4055. <option command="--float_operations_allowed=all" tag="FLOAT_OPERATIONS_ALLOWED.all"/>
  4056. <option command="--float_operations_allowed=32" tag="FLOAT_OPERATIONS_ALLOWED.32"/>
  4057. <option command="--float_operations_allowed=64" tag="FLOAT_OPERATIONS_ALLOWED.64"/>
  4058. <option command="--float_operations_allowed=none" tag="FLOAT_OPERATIONS_ALLOWED.none"/>
  4059. <option command="--create_pch" tag="CREATE_PCH"/>
  4060. <option command="--gcc" tag="GCC"/>
  4061. <option command="--keep_unneeded_statics" tag="KEEP_UNNEEDED_STATICS"/>
  4062. <option command="-pc" tag="MULTIBYTE_CHARS"/>
  4063. <option command="--multibyte_chars" tag="MULTIBYTE_CHARS"/>
  4064. <option command="-pi" tag="NO_INLINING"/>
  4065. <option command="--no_inlining" tag="NO_INLINING"/>
  4066. <option command="-pn" tag="NO_INTRINSICS"/>
  4067. <option command="--no_intrinsics" tag="NO_INTRINSICS"/>
  4068. <option command="--pch" tag="PCH"/>
  4069. <option command="--pch_dir" tag="PCH_DIR"/>
  4070. <option command="--pch_verbose" tag="PCH_VERBOSE"/>
  4071. <option command="--pending_instantiations" tag="PENDING_INSTANTIATIONS"/>
  4072. <option command="--printf_support=nofloat" tag="PRINTF_SUPPORT.nofloat"/>
  4073. <option command="--printf_support=minimal" tag="PRINTF_SUPPORT.minimal"/>
  4074. <option command="--printf_support=full" tag="PRINTF_SUPPORT.full"/>
  4075. <option command="--static_template_instantiation" tag="STATIC_TEMPLATE_INSTANTIATION"/>
  4076. <option command="--use_pch" tag="USE_PCH"/>
  4077. <option command="--vtypes" tag="VECTYPES.on"/>
  4078. <option command="--vectypes" tag="VECTYPES.on"/>
  4079. <option command="--vtypeson" tag="VECTYPES.on"/>
  4080. <option command="--vectypes=on" tag="VECTYPES.on"/>
  4081. <option command="--vtypesoff" tag="VECTYPES.off"/>
  4082. <option command="--vectypes=off" tag="VECTYPES.off"/>
  4083. <option command="-ppo" tag="PREPROC_ONLY"/>
  4084. <option command="--preproc_only" tag="PREPROC_ONLY"/>
  4085. <option command="-ppc" tag="PREPROC_WITH_COMMENT"/>
  4086. <option command="--preproc_with_comment" tag="PREPROC_WITH_COMMENT"/>
  4087. <option command="-ppa" tag="PREPROC_WITH_COMPILE"/>
  4088. <option command="--preproc_with_compile" tag="PREPROC_WITH_COMPILE"/>
  4089. <option command="-ppl" tag="PREPROC_WITH_LINE"/>
  4090. <option command="--preproc_with_line" tag="PREPROC_WITH_LINE"/>
  4091. <option command="-ppd" tag="PREPROC_DEPENDENCY"/>
  4092. <option command="--preproc_dependency" tag="PREPROC_DEPENDENCY"/>
  4093. <option command="-ppi" tag="PREPROC_INCLUDES"/>
  4094. <option command="--preproc_includes" tag="PREPROC_INCLUDES"/>
  4095. <option command="-ppm" tag="PREPROC_MACROS"/>
  4096. <option command="--preproc_macros" tag="PREPROC_MACROS"/>
  4097. <option command="-pdb" tag="BUFFER_DIAGNOSTICS"/>
  4098. <option command="--buffer_diagnostics" tag="BUFFER_DIAGNOSTICS"/>
  4099. <option command="-pdse" tag="DIAG_ERROR"/>
  4100. <option command="--diag_error" tag="DIAG_ERROR"/>
  4101. <option command="-pdsr" tag="DIAG_REMARK"/>
  4102. <option command="--diag_remark" tag="DIAG_REMARK"/>
  4103. <option command="-pds" tag="DIAG_SUPPRESS"/>
  4104. <option command="--diag_suppress" tag="DIAG_SUPPRESS"/>
  4105. <option command="-pdsw" tag="DIAG_WARNING"/>
  4106. <option command="--diag_warning" tag="DIAG_WARNING"/>
  4107. <option command="--diag_wrap" tag="DIAG_WRAP.on"/>
  4108. <option command="--diag_wrap=on" tag="DIAG_WRAP.on"/>
  4109. <option command="--diag_wrap=off" tag="DIAG_WRAP.off"/>
  4110. <option command="-pden" tag="DISPLAY_ERROR_NUMBER"/>
  4111. <option command="--display_error_number" tag="DISPLAY_ERROR_NUMBER"/>
  4112. <option command="-pdew" tag="EMIT_WARNINGS_AS_ERRORS"/>
  4113. <option command="--emit_warnings_as_errors" tag="EMIT_WARNINGS_AS_ERRORS"/>
  4114. <option command="-pdr" tag="ISSUE_REMARKS"/>
  4115. <option command="--issue_remarks" tag="ISSUE_REMARKS"/>
  4116. <option command="-pdw" tag="NO_WARNINGS"/>
  4117. <option command="--no_warnings" tag="NO_WARNINGS"/>
  4118. <option command="-pdel" tag="SET_ERROR_LIMIT"/>
  4119. <option command="--set_error_limit" tag="SET_ERROR_LIMIT"/>
  4120. <option command="-version" tag="TOOL_VERSION"/>
  4121. <option command="--tool_version" tag="TOOL_VERSION"/>
  4122. <option command="-pdv" tag="VERBOSE_DIAGNOSTICS"/>
  4123. <option command="--verbose_diagnostics" tag="VERBOSE_DIAGNOSTICS"/>
  4124. <option command="-pdf" tag="WRITE_DIAGNOSTICS_FILE"/>
  4125. <option command="--write_diagnostics_file" tag="WRITE_DIAGNOSTICS_FILE"/>
  4126. <option command="--verbose" tag="QUIET_LEVEL.VERBOSE"/>
  4127. <option command="--quiet" tag="QUIET_LEVEL.QUIET"/>
  4128. <option command="-q" tag="QUIET_LEVEL.QUIET"/>
  4129. <option command="--super_quiet" tag="QUIET_LEVEL.SUPER_QUIET"/>
  4130. <option command="-qq" tag="QUIET_LEVEL.SUPER_QUIET"/>
  4131. <option command="-mo" tag="GEN_FUNC_SUBSECTIONS.on"/>
  4132. <option command="--gen_func_subsections" tag="GEN_FUNC_SUBSECTIONS.on"/>
  4133. <option command="-moon" tag="GEN_FUNC_SUBSECTIONS.on"/>
  4134. <option command="--gen_func_subsections=on" tag="GEN_FUNC_SUBSECTIONS.on"/>
  4135. <option command="-mooff" tag="GEN_FUNC_SUBSECTIONS.off"/>
  4136. <option command="--gen_func_subsections=off" tag="GEN_FUNC_SUBSECTIONS.off"/>
  4137. <option command="--gen_data_subsections=on" tag="GEN_DATA_SUBSECTIONS.on"/>
  4138. <option command="--gen_data_subsections=off" tag="GEN_DATA_SUBSECTIONS.off"/>
  4139. <option command="--wchar_t=16" tag="WCHAR_T.16"/>
  4140. <option command="--wchar_t=32" tag="WCHAR_T.32"/>
  4141. <option command="-mw" tag="DEBUG_SOFTWARE_PIPELINE"/>
  4142. <option command="--debug_software_pipeline" tag="DEBUG_SOFTWARE_PIPELINE"/>
  4143. <option command="-mu" tag="DISABLE_SOFTWARE_PIPELINE"/>
  4144. <option command="--disable_software_pipeline" tag="DISABLE_SOFTWARE_PIPELINE"/>
  4145. <option command="--dprel" tag="DPREL"/>
  4146. <option command="-mc" tag="FP_NOT_ASSOCIATIVE"/>
  4147. <option command="--fp_not_associative" tag="FP_NOT_ASSOCIATIVE"/>
  4148. <option command="-mi" tag="INTERRUPT_THRESHOLD"/>
  4149. <option command="--interrupt_threshold" tag="INTERRUPT_THRESHOLD"/>
  4150. <option command="--mem_model:const=data" tag="MEM_MODEL__CONST.data"/>
  4151. <option command="--mem_model:const=far" tag="MEM_MODEL__CONST.far"/>
  4152. <option command="--mem_model:const=far_aggregates" tag="MEM_MODEL__CONST.far_aggregates"/>
  4153. <option command="--mem_model:data=near" tag="MEM_MODEL__DATA.near"/>
  4154. <option command="--mem_model:data=far" tag="MEM_MODEL__DATA.far"/>
  4155. <option command="--mem_model:data=far_aggregates" tag="MEM_MODEL__DATA.far_aggregates"/>
  4156. <option command="-mt" tag="NO_BAD_ALIASES"/>
  4157. <option command="--no_bad_aliases" tag="NO_BAD_ALIASES"/>
  4158. <option command="--no_compress" tag="NO_COMPRESS"/>
  4159. <option command="--no_reload_errors" tag="NO_RELOAD_ERRORS"/>
  4160. <option command="--profile:breakpt" tag="PROFILE__BREAKPT"/>
  4161. <option command="--profile:power" tag="PROFILE__POWER"/>
  4162. <option command="--ramfunc" tag="RAMFUNC.on"/>
  4163. <option command="--ramfunc=on" tag="RAMFUNC.on"/>
  4164. <option command="--ramfunc=off" tag="RAMFUNC.off"/>
  4165. <option command="--small-enum" tag="SMALL_ENUM"/>
  4166. <option command="--small_enum" tag="SMALL_ENUM"/>
  4167. <option command="-mh" tag="SPECULATE_LOADS"/>
  4168. <option command="--speculate_loads" tag="SPECULATE_LOADS"/>
  4169. <option command="--speculate_unknown_loads" tag="SPECULATE_UNKNOWN_LOADS"/>
  4170. <option command="-mb" tag="TARGET_COMPATIBILITY_6200"/>
  4171. <option command="--target_compatibility_6200" tag="TARGET_COMPATIBILITY_6200"/>
  4172. <option command="-ox" tag="USE_CONST_FOR_ALIAS_ANALYSIS"/>
  4173. <option command="--use_const_for_alias_analysis" tag="USE_CONST_FOR_ALIAS_ANALYSIS"/>
  4174. <option command="--fp_reassoc=on" tag="FP_REASSOC.on"/>
  4175. <option command="--fp_reassoc=off" tag="FP_REASSOC.off"/>
  4176. <option command="--sat_reassoc=on" tag="SAT_REASSOC.on"/>
  4177. <option command="--sat_reassoc=off" tag="SAT_REASSOC.off"/>
  4178. <option command="-pm" tag="PROGRAM_LEVEL_COMPILE"/>
  4179. <option command="--program_level_compile" tag="PROGRAM_LEVEL_COMPILE"/>
  4180. <option command="-op0" tag="CALL_ASSUMPTIONS.0"/>
  4181. <option command="--call_assumptions=0" tag="CALL_ASSUMPTIONS.0"/>
  4182. <option command="-op1" tag="CALL_ASSUMPTIONS.1"/>
  4183. <option command="--call_assumptions=1" tag="CALL_ASSUMPTIONS.1"/>
  4184. <option command="-op2" tag="CALL_ASSUMPTIONS.2"/>
  4185. <option command="--call_assumptions=2" tag="CALL_ASSUMPTIONS.2"/>
  4186. <option command="-op3" tag="CALL_ASSUMPTIONS.3"/>
  4187. <option command="--call_assumptions=3" tag="CALL_ASSUMPTIONS.3"/>
  4188. <option command="-oi" tag="AUTO_INLINE"/>
  4189. <option command="--auto_inline" tag="AUTO_INLINE"/>
  4190. <option command="--disable_inlining" tag="DISABLE_INLINING"/>
  4191. <option command="--disable_push_pop" tag="DISABLE_PUSH_POP"/>
  4192. <option command="--fp_mode=relaxed" tag="FP_MODE.relaxed"/>
  4193. <option command="--fp_mode=strict" tag="FP_MODE.strict"/>
  4194. <option command="--multithread" tag="MULTITHREAD"/>
  4195. <option command="--omp" tag="OPENMP"/>
  4196. <option command="--openmp" tag="OPENMP"/>
  4197. <option command="--single_inline" tag="SINGLE_INLINE"/>
  4198. <option command="-ma" tag="ALIASED_VARIABLES"/>
  4199. <option command="--aliased_variables" tag="ALIASED_VARIABLES"/>
  4200. <option command="--entry_hook" tag="ENTRY_HOOK"/>
  4201. <option command="--exit_hook" tag="EXIT_HOOK"/>
  4202. <option command="--entry_parm=name" tag="ENTRY_PARM.name"/>
  4203. <option command="--entry_parm=address" tag="ENTRY_PARM.address"/>
  4204. <option command="--entry_parm=none" tag="ENTRY_PARM.none"/>
  4205. <option command="--exit_parm=name" tag="EXIT_PARM.name"/>
  4206. <option command="--exit_parm=address" tag="EXIT_PARM.address"/>
  4207. <option command="--exit_parm=none" tag="EXIT_PARM.none"/>
  4208. <option command="--remove_hooks_when_inlining" tag="REMOVE_HOOKS_WHEN_INLINING"/>
  4209. <option command="--gen_profile_info" tag="GEN_PROFILE_INFO"/>
  4210. <option command="--analyze=codecov" tag="ANALYZE.codecov"/>
  4211. <option command="--analyze=callgraph" tag="ANALYZE.callgraph"/>
  4212. <option command="--analyze_only" tag="ANALYZE_ONLY"/>
  4213. <option command="--use_profile_info" tag="USE_PROFILE_INFO"/>
  4214. <option command="-ol1" tag="STD_LIB_FUNC_DEFINED"/>
  4215. <option command="--std_lib_func_defined" tag="STD_LIB_FUNC_DEFINED"/>
  4216. <option command="-ol2" tag="STD_LIB_FUNC_NOT_DEFINED"/>
  4217. <option command="--std_lib_func_not_defined" tag="STD_LIB_FUNC_NOT_DEFINED"/>
  4218. <option command="-ol0" tag="STD_LIB_FUNC_REDEFINED"/>
  4219. <option command="--std_lib_func_redefined" tag="STD_LIB_FUNC_REDEFINED"/>
  4220. <option command="-k" tag="KEEP_ASM"/>
  4221. <option command="--keep_asm" tag="KEEP_ASM"/>
  4222. <option command="-al" tag="ASM_LISTING"/>
  4223. <option command="--asm_listing" tag="ASM_LISTING"/>
  4224. <option command="--src_interlist" tag="SOURCE_INTERLIST.SRC_INTERLIST"/>
  4225. <option command="-s" tag="SOURCE_INTERLIST.SRC_INTERLIST"/>
  4226. <option command="--c_src_interlist" tag="SOURCE_INTERLIST.C_SRC_INTERLIST"/>
  4227. <option command="-ss" tag="SOURCE_INTERLIST.C_SRC_INTERLIST"/>
  4228. <option command="-ad" tag="ASM_DEFINE"/>
  4229. <option command="--asm_define" tag="ASM_DEFINE"/>
  4230. <option command="-au" tag="ASM_UNDEFINE"/>
  4231. <option command="--asm_undefine" tag="ASM_UNDEFINE"/>
  4232. <option command="--asm_cross_reference_listing" tag="ASM_CROSS_REFERENCE_LISTING"/>
  4233. <option command="-apd" tag="ASM_DEPENDENCY"/>
  4234. <option command="--asm_dependency" tag="ASM_DEPENDENCY"/>
  4235. <option command="-api" tag="ASM_INCLUDES"/>
  4236. <option command="--asm_includes" tag="ASM_INCLUDES"/>
  4237. <option command="-ahc" tag="COPY_FILE"/>
  4238. <option command="--copy_file" tag="COPY_FILE"/>
  4239. <option command="-ax" tag="CROSS_REFERENCE"/>
  4240. <option command="--cross_reference" tag="CROSS_REFERENCE"/>
  4241. <option command="-ahi" tag="INCLUDE_FILE"/>
  4242. <option command="--include_file" tag="INCLUDE_FILE"/>
  4243. <option command="--no_const_clink" tag="NO_CONST_CLINK"/>
  4244. <option command="-as" tag="OUTPUT_ALL_SYMS"/>
  4245. <option command="--output_all_syms" tag="OUTPUT_ALL_SYMS"/>
  4246. <option command="--strip_coff_underscore" tag="STRIP_COFF_UNDERSCORE"/>
  4247. <option command="-ac" tag="SYMS_IGNORE_CASE"/>
  4248. <option command="--syms_ignore_case" tag="SYMS_IGNORE_CASE"/>
  4249. <option command="-fl" tag="AP_FILE"/>
  4250. <option command="--ap_file" tag="AP_FILE"/>
  4251. <option command="-fa" tag="ASM_FILE"/>
  4252. <option command="--asm_file" tag="ASM_FILE"/>
  4253. <option command="-fc" tag="C_FILE"/>
  4254. <option command="--c_file" tag="C_FILE"/>
  4255. <option command="-fp" tag="CPP_FILE"/>
  4256. <option command="--cpp_file" tag="CPP_FILE"/>
  4257. <option command="-fo" tag="OBJ_FILE"/>
  4258. <option command="--obj_file" tag="OBJ_FILE"/>
  4259. <option command="-fs" tag="ASM_DIRECTORY"/>
  4260. <option command="--asm_directory" tag="ASM_DIRECTORY"/>
  4261. <option command="-ff" tag="LIST_DIRECTORY"/>
  4262. <option command="--list_directory" tag="LIST_DIRECTORY"/>
  4263. <option command="-fr" tag="OBJ_DIRECTORY"/>
  4264. <option command="--obj_directory" tag="OBJ_DIRECTORY"/>
  4265. <option command="-fe" tag="OUTPUT_FILE"/>
  4266. <option command="--output_file" tag="OUTPUT_FILE"/>
  4267. <option command="--pp_directory" tag="PP_DIRECTORY"/>
  4268. <option command="-ft" tag="TEMP_DIRECTORY"/>
  4269. <option command="--temp_directory" tag="TEMP_DIRECTORY"/>
  4270. <option command="-el" tag="AP_EXTENSION"/>
  4271. <option command="--ap_extension" tag="AP_EXTENSION"/>
  4272. <option command="-ea" tag="ASM_EXTENSION"/>
  4273. <option command="--asm_extension" tag="ASM_EXTENSION"/>
  4274. <option command="-ec" tag="C_EXTENSION"/>
  4275. <option command="--c_extension" tag="C_EXTENSION"/>
  4276. <option command="-ep" tag="CPP_EXTENSION"/>
  4277. <option command="--cpp_extension" tag="CPP_EXTENSION"/>
  4278. <option command="-es" tag="LISTING_EXTENSION"/>
  4279. <option command="--listing_extension" tag="LISTING_EXTENSION"/>
  4280. <option command="-eo" tag="OBJ_EXTENSION"/>
  4281. <option command="--obj_extension" tag="OBJ_EXTENSION"/>
  4282. <option command="--dsbt" tag="DSBT"/>
  4283. <option command="--export_all_cpp_vtbl" tag="EXPORT_ALL_CPP_VTBL"/>
  4284. <option command="--import_helper_functions" tag="IMPORT_HELPER_FUNCTIONS"/>
  4285. <option command="--import_undef" tag="IMPORT_UNDEF.on"/>
  4286. <option command="--import_undef=on" tag="IMPORT_UNDEF.on"/>
  4287. <option command="--import_undef=off" tag="IMPORT_UNDEF.off"/>
  4288. <option command="--inline_plt" tag="INLINE_PLT.on"/>
  4289. <option command="--inline_plt=on" tag="INLINE_PLT.on"/>
  4290. <option command="--inline_plt=off" tag="INLINE_PLT.off"/>
  4291. <option command="--linux" tag="LINUX"/>
  4292. <option command="--pic" tag="PIC.near"/>
  4293. <option command="--pic=near" tag="PIC.near"/>
  4294. <option command="--pic=far" tag="PIC.far"/>
  4295. <option command="--visibility=default" tag="VISIBILITY.default"/>
  4296. <option command="--visibility=protected" tag="VISIBILITY.protected"/>
  4297. <option command="--visibility=hidden" tag="VISIBILITY.hidden"/>
  4298. <option command="-@" tag="CMD_FILE"/>
  4299. <option command="--cmd_file" tag="CMD_FILE"/>
  4300. <option command="--check_misra" tag="CHECK_MISRA"/>
  4301. <option command="--misra_advisory=error" tag="MISRA_ADVISORY.error"/>
  4302. <option command="--misra_advisory=warning" tag="MISRA_ADVISORY.warning"/>
  4303. <option command="--misra_advisory=remark" tag="MISRA_ADVISORY.remark"/>
  4304. <option command="--misra_advisory=suppress" tag="MISRA_ADVISORY.suppress"/>
  4305. <option command="--misra_required=error" tag="MISRA_REQUIRED.error"/>
  4306. <option command="--misra_required=warning" tag="MISRA_REQUIRED.warning"/>
  4307. <option command="--misra_required=remark" tag="MISRA_REQUIRED.remark"/>
  4308. <option command="--misra_required=suppress" tag="MISRA_REQUIRED.suppress"/>
  4309. <option command="-pl" tag="GEN_ACP_RAW"/>
  4310. <option command="--gen_acp_raw" tag="GEN_ACP_RAW"/>
  4311. <option command="-px" tag="GEN_ACP_XREF"/>
  4312. <option command="--gen_acp_xref" tag="GEN_ACP_XREF"/>
  4313. <option command="--gen_cross_reference_listing" tag="GEN_CROSS_REFERENCE_LISTING"/>
  4314. <option command="--gen_func_info_listing" tag="GEN_FUNC_INFO_LISTING"/>
  4315. <option command="-on0" tag="GEN_OPT_INFO.0"/>
  4316. <option command="--gen_opt_info=0" tag="GEN_OPT_INFO.0"/>
  4317. <option command="-on1" tag="GEN_OPT_INFO.1"/>
  4318. <option command="--gen_opt_info=1" tag="GEN_OPT_INFO.1"/>
  4319. <option command="-on2" tag="GEN_OPT_INFO.2"/>
  4320. <option command="--gen_opt_info=2" tag="GEN_OPT_INFO.2"/>
  4321. <option command="--gen_preprocessor_listing" tag="GEN_PREPROCESSOR_LISTING"/>
  4322. <option command="--section_sizes" tag="SECTION_SIZES.on"/>
  4323. <option command="--section_sizes=on" tag="SECTION_SIZES.on"/>
  4324. <option command="--section_sizes=off" tag="SECTION_SIZES.off"/>
  4325. <option command="--legacy" tag="LEGACY"/>
  4326. </tool>
  4327. <tool id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID">
  4328. <option command="-m" tag="MAP_FILE"/>
  4329. <option command="--map_file" tag="MAP_FILE"/>
  4330. <option command="-o" tag="OUTPUT_FILE"/>
  4331. <option command="--output_file" tag="OUTPUT_FILE"/>
  4332. <option command="-heap" tag="HEAP_SIZE"/>
  4333. <option command="--heap_size" tag="HEAP_SIZE"/>
  4334. <option command="-stack" tag="STACK_SIZE"/>
  4335. <option command="--stack_size" tag="STACK_SIZE"/>
  4336. <option command="-l" tag="LIBRARY"/>
  4337. <option command="--library" tag="LIBRARY"/>
  4338. <option command="-i" tag="SEARCH_PATH"/>
  4339. <option command="--search_path" tag="SEARCH_PATH"/>
  4340. <option command="-priority" tag="PRIORITY"/>
  4341. <option command="--priority" tag="PRIORITY"/>
  4342. <option command="-x" tag="REREAD_LIBS"/>
  4343. <option command="--reread_libs" tag="REREAD_LIBS"/>
  4344. <option command="--disable_auto_rts" tag="DISABLE_AUTO_RTS"/>
  4345. <option command="--define" tag="DEFINE"/>
  4346. <option command="--undefine" tag="UNDEFINE"/>
  4347. <option command="--disable_pp" tag="DISABLE_PP"/>
  4348. <option command="-pdb" tag="BUFFER_DIAGNOSTICS"/>
  4349. <option command="--buffer_diagnostics" tag="BUFFER_DIAGNOSTICS"/>
  4350. <option command="--diag_error" tag="DIAG_ERROR"/>
  4351. <option command="--diag_remark" tag="DIAG_REMARK"/>
  4352. <option command="--diag_suppress" tag="DIAG_SUPPRESS"/>
  4353. <option command="--diag_warning" tag="DIAG_WARNING"/>
  4354. <option command="--diag_wrap" tag="DIAG_WRAP.on"/>
  4355. <option command="--diag_wrap=on" tag="DIAG_WRAP.on"/>
  4356. <option command="--diag_wrap=off" tag="DIAG_WRAP.off"/>
  4357. <option command="--display_error_number" tag="DISPLAY_ERROR_NUMBER"/>
  4358. <option command="-pdew" tag="EMIT_WARNINGS_AS_ERRORS"/>
  4359. <option command="--emit_warnings_as_errors" tag="EMIT_WARNINGS_AS_ERRORS"/>
  4360. <option command="--issue_remarks" tag="ISSUE_REMARKS"/>
  4361. <option command="--no_demangle" tag="NO_DEMANGLE"/>
  4362. <option command="--no_warnings" tag="NO_WARNINGS"/>
  4363. <option command="--set_error_limit" tag="SET_ERROR_LIMIT"/>
  4364. <option command="--verbose_diagnostics" tag="VERBOSE_DIAGNOSTICS"/>
  4365. <option command="-w" tag="WARN_SECTIONS"/>
  4366. <option command="--warn_sections" tag="WARN_SECTIONS"/>
  4367. <option command="-a" tag="ABSOLUTE_EXE"/>
  4368. <option command="--absolute_exe" tag="ABSOLUTE_EXE"/>
  4369. <option command="--ecc:data_error" tag="ECC__DATA_ERROR"/>
  4370. <option command="--ecc:ecc_error" tag="ECC__ECC_ERROR"/>
  4371. <option command="--mapfile_contents" tag="MAPFILE_CONTENTS"/>
  4372. <option command="-r" tag="RELOCATABLE"/>
  4373. <option command="--relocatable" tag="RELOCATABLE"/>
  4374. <option command="--rom" tag="ROM"/>
  4375. <option command="-xml_link_info" tag="XML_LINK_INFO"/>
  4376. <option command="--xml_link_info" tag="XML_LINK_INFO"/>
  4377. <option command="-e" tag="ENTRY_POINT"/>
  4378. <option command="--entry_point" tag="ENTRY_POINT"/>
  4379. <option command="--globalize" tag="GLOBALIZE"/>
  4380. <option command="--hide" tag="HIDE"/>
  4381. <option command="--localize" tag="LOCALIZE"/>
  4382. <option command="-g" tag="MAKE_GLOBAL"/>
  4383. <option command="--make_global" tag="MAKE_GLOBAL"/>
  4384. <option command="-h" tag="MAKE_STATIC"/>
  4385. <option command="--make_static" tag="MAKE_STATIC"/>
  4386. <option command="-b" tag="NO_SYM_MERGE"/>
  4387. <option command="--no_sym_merge" tag="NO_SYM_MERGE"/>
  4388. <option command="-s" tag="NO_SYMTABLE"/>
  4389. <option command="--no_symtable" tag="NO_SYMTABLE"/>
  4390. <option command="--retain" tag="RETAIN"/>
  4391. <option command="-scanlibs" tag="SCAN_LIBRARIES"/>
  4392. <option command="--scan_libraries" tag="SCAN_LIBRARIES"/>
  4393. <option command="--symbol_map" tag="SYMBOL_MAP"/>
  4394. <option command="-u" tag="UNDEF_SYM"/>
  4395. <option command="--undef_sym" tag="UNDEF_SYM"/>
  4396. <option command="--unhide" tag="UNHIDE"/>
  4397. <option command="--args" tag="ARG_SIZE"/>
  4398. <option command="--arg_size" tag="ARG_SIZE"/>
  4399. <option command="--cinit_compression" tag="CINIT_COMPRESSION.rle"/>
  4400. <option command="--cinit_compression=rle" tag="CINIT_COMPRESSION.rle"/>
  4401. <option command="--cinit_compression=lzss" tag="CINIT_COMPRESSION.lzss"/>
  4402. <option command="--cinit_compression=off" tag="CINIT_COMPRESSION.off"/>
  4403. <option command="--copy_compression" tag="COPY_COMPRESSION.rle"/>
  4404. <option command="--copy_compression=rle" tag="COPY_COMPRESSION.rle"/>
  4405. <option command="--copy_compression=lzss" tag="COPY_COMPRESSION.lzss"/>
  4406. <option command="--copy_compression=off" tag="COPY_COMPRESSION.off"/>
  4407. <option command="-f" tag="FILL_VALUE"/>
  4408. <option command="--fill_value" tag="FILL_VALUE"/>
  4409. <option command="--multithread" tag="MULTITHREAD"/>
  4410. <option command="--trampolines" tag="TRAMPOLINES.on"/>
  4411. <option command="--trampolines=on" tag="TRAMPOLINES.on"/>
  4412. <option command="--trampolines=off" tag="TRAMPOLINES.off"/>
  4413. <option command="--rom_model" tag="INITIALIZATION_MODEL.ROM_MODEL"/>
  4414. <option command="-c" tag="INITIALIZATION_MODEL.ROM_MODEL"/>
  4415. <option command="--ram_model" tag="INITIALIZATION_MODEL.RAM_MODEL"/>
  4416. <option command="-cr" tag="INITIALIZATION_MODEL.RAM_MODEL"/>
  4417. <option command="--compress_dwarf" tag="COMPRESS_DWARF.on"/>
  4418. <option command="--compress_dwarf=on" tag="COMPRESS_DWARF.on"/>
  4419. <option command="--compress_dwarf=off" tag="COMPRESS_DWARF.off"/>
  4420. <option command="-j" tag="DISABLE_CLINK"/>
  4421. <option command="--disable_clink" tag="DISABLE_CLINK"/>
  4422. <option command="--minimize_trampolines" tag="MINIMIZE_TRAMPOLINES.postorder"/>
  4423. <option command="--minimize_trampolines=postorder" tag="MINIMIZE_TRAMPOLINES.postorder"/>
  4424. <option command="--minimize_trampolines=off" tag="MINIMIZE_TRAMPOLINES.off"/>
  4425. <option command="--preferred_order" tag="PREFERRED_ORDER"/>
  4426. <option command="--strict_compatibility" tag="STRICT_COMPATIBILITY.on"/>
  4427. <option command="--strict_compatibility=on" tag="STRICT_COMPATIBILITY.on"/>
  4428. <option command="--strict_compatibility=off" tag="STRICT_COMPATIBILITY.off"/>
  4429. <option command="--trampoline_min_spacing" tag="TRAMPOLINE_MIN_SPACING"/>
  4430. <option command="--unused_section_elimination" tag="UNUSED_SECTION_ELIMINATION.on"/>
  4431. <option command="--unused_section_elimination=on" tag="UNUSED_SECTION_ELIMINATION.on"/>
  4432. <option command="--unused_section_elimination=off" tag="UNUSED_SECTION_ELIMINATION.off"/>
  4433. <option command="--zero_init" tag="ZERO_INIT.on"/>
  4434. <option command="--zero_init=on" tag="ZERO_INIT.on"/>
  4435. <option command="--zero_init=off" tag="ZERO_INIT.off"/>
  4436. <option command="--bind_now" tag="BIND_NOW"/>
  4437. <option command="--dsbt_index" tag="DSBT_INDEX"/>
  4438. <option command="--dsbt_size" tag="DSBT_SIZE"/>
  4439. <option command="--dynamic" tag="DYNAMIC.exe"/>
  4440. <option command="--dynamic=exe" tag="DYNAMIC.exe"/>
  4441. <option command="--dynamic=lib" tag="DYNAMIC.lib"/>
  4442. <option command="--export" tag="EXPORT"/>
  4443. <option command="--fini" tag="FINI"/>
  4444. <option command="--forced_static_binding" tag="FORCED_STATIC_BINDING.on"/>
  4445. <option command="--forced_static_binding=on" tag="FORCED_STATIC_BINDING.on"/>
  4446. <option command="--forced_static_binding=off" tag="FORCED_STATIC_BINDING.off"/>
  4447. <option command="--import" tag="IMPORT"/>
  4448. <option command="--init" tag="INIT"/>
  4449. <option command="--rpath" tag="RPATH"/>
  4450. <option command="--runpath" tag="RUNPATH"/>
  4451. <option command="--soname" tag="SONAME"/>
  4452. </tool>
  4453. <tool id="com.ti.ccstudio.buildDefinitions.C6000_8.2.hex">
  4454. <option command="--byte" tag="BYTE"/>
  4455. <option command="-byte" tag="BYTE"/>
  4456. <option command="--entrypoint" tag="ENTRYPOINT"/>
  4457. <option command="-e" tag="ENTRYPOINT"/>
  4458. <option command="--exclude" tag="EXCLUDE"/>
  4459. <option command="-exclude" tag="EXCLUDE"/>
  4460. <option command="--fill" tag="FILL"/>
  4461. <option command="-fill" tag="FILL"/>
  4462. <option command="--image" tag="IMAGE"/>
  4463. <option command="-image" tag="IMAGE"/>
  4464. <option command="--linkerfill" tag="LINKERFILL"/>
  4465. <option command="-linkerfill" tag="LINKERFILL"/>
  4466. <option command="--map" tag="MAP"/>
  4467. <option command="-map" tag="MAP"/>
  4468. <option command="--memwidth" tag="MEMWIDTH"/>
  4469. <option command="-memwidth" tag="MEMWIDTH"/>
  4470. <option command="--order=L" tag="ORDER.L"/>
  4471. <option command="-order=L" tag="ORDER.L"/>
  4472. <option command="--order=M" tag="ORDER.M"/>
  4473. <option command="-order=M" tag="ORDER.M"/>
  4474. <option command="--outfile" tag="OUTPUT_FILE"/>
  4475. <option command="-o" tag="OUTPUT_FILE"/>
  4476. <option command="--quiet" tag="QUIET"/>
  4477. <option command="-quiet" tag="QUIET"/>
  4478. <option command="-q" tag="QUIET"/>
  4479. <option command="--romwidth" tag="ROMWIDTH"/>
  4480. <option command="-romwidth" tag="ROMWIDTH"/>
  4481. <option command="--zero" tag="ZERO"/>
  4482. <option command="-zero" tag="ZERO"/>
  4483. <option command="-z" tag="ZERO"/>
  4484. <option command="--buffer_diagnostics" tag="BUFFER_DIAGNOSTICS"/>
  4485. <option command="-pdb" tag="BUFFER_DIAGNOSTICS"/>
  4486. <option command="--diag_error" tag="DIAG_ERROR"/>
  4487. <option command="--diag_remark" tag="DIAG_REMARK"/>
  4488. <option command="--diag_suppress" tag="DIAG_SUPPRESS"/>
  4489. <option command="--diag_warning" tag="DIAG_WARNING"/>
  4490. <option command="--diag_wrap=on" tag="DIAG_WRAP.on"/>
  4491. <option command="--diag_wrap=off" tag="DIAG_WRAP.off"/>
  4492. <option command="--display_error_number" tag="DISPLAY_ERROR_NUMBER"/>
  4493. <option command="--emit_warnings_as_errors" tag="EMIT_WARNINGS_AS_ERRORS"/>
  4494. <option command="-pdew" tag="EMIT_WARNINGS_AS_ERRORS"/>
  4495. <option command="--issue_remarks" tag="ISSUE_REMARKS"/>
  4496. <option command="--no_warnings" tag="NO_WARNINGS"/>
  4497. <option command="--set_error_limit" tag="SET_ERROR_LIMIT"/>
  4498. <option command="--boot" tag="BOOT"/>
  4499. <option command="-boot" tag="BOOT"/>
  4500. <option command="--bootorg" tag="BOOTORG"/>
  4501. <option command="-bootorg" tag="BOOTORG"/>
  4502. <option command="--bootsection" tag="BOOTSECTION"/>
  4503. <option command="-bootsection" tag="BOOTSECTION"/>
  4504. <option command="--ascii" tag="OUTPUT_FORMAT.ASCII"/>
  4505. <option command="-a" tag="OUTPUT_FORMAT.ASCII"/>
  4506. <option command="--intel" tag="OUTPUT_FORMAT.INTEL"/>
  4507. <option command="-i" tag="OUTPUT_FORMAT.INTEL"/>
  4508. <option command="--motorola=1" tag="OUTPUT_FORMAT.MOTOROLA1"/>
  4509. <option command="-m=1" tag="OUTPUT_FORMAT.MOTOROLA1"/>
  4510. <option command="--motorola=2" tag="OUTPUT_FORMAT.MOTOROLA2"/>
  4511. <option command="-m=2" tag="OUTPUT_FORMAT.MOTOROLA2"/>
  4512. <option command="--motorola=3" tag="OUTPUT_FORMAT.MOTOROLA3"/>
  4513. <option command="-m=3" tag="OUTPUT_FORMAT.MOTOROLA3"/>
  4514. <option command="--tektronix" tag="OUTPUT_FORMAT.TEKTRONIX"/>
  4515. <option command="-x" tag="OUTPUT_FORMAT.TEKTRONIX"/>
  4516. <option command="--ti_tagged" tag="OUTPUT_FORMAT.TI_TAGGED"/>
  4517. <option command="-t" tag="OUTPUT_FORMAT.TI_TAGGED"/>
  4518. <option command="--ti_txt" tag="OUTPUT_FORMAT.TI_TXT"/>
  4519. <option command="--host_image" tag="OBJECT_FORMAT.HOST_IMAGE"/>
  4520. <option command="--load_image" tag="OBJECT_FORMAT.LOAD_IMAGE"/>
  4521. <option command="--host_image:endianness=big" tag="HOST_IMAGE:ENDIANNESS.big"/>
  4522. <option command="--host_image:endianness=little" tag="HOST_IMAGE:ENDIANNESS.little"/>
  4523. <option command="--host_image:hidden_symbols" tag="HOST_IMAGE:HIDDEN_SYMBOLS"/>
  4524. <option command="--host_image:hide" tag="HOST_IMAGE:HIDE"/>
  4525. <option command="--host_image:show" tag="HOST_IMAGE:SHOW"/>
  4526. <option command="--host_image:target=ARM" tag="HOST_IMAGE:TARGET.ARM"/>
  4527. <option command="--host_image:target=MSP430" tag="HOST_IMAGE:TARGET.MSP430"/>
  4528. <option command="--host_image:target=C2000" tag="HOST_IMAGE:TARGET.C2000"/>
  4529. <option command="--host_image:target=C6000" tag="HOST_IMAGE:TARGET.C6000"/>
  4530. <option command="--host_image:target=ARP32" tag="HOST_IMAGE:TARGET.ARP32"/>
  4531. <option command="--host_image:target=PRU" tag="HOST_IMAGE:TARGET.PRU"/>
  4532. <option command="--section_name_prefix" tag="SECTION_NAME_PREFIX"/>
  4533. </tool>
  4534. <tool id="com.ti.ccstudio.buildDefinitions.C6000_8.2.archiverID">
  4535. <option command="-o" tag="OUTPUT_FILE"/>
  4536. <option command="q" tag="QUIET"/>
  4537. <option command="s" tag="PRINT_GLOBAL_SYMBOLS"/>
  4538. <option command="v" tag="VERBOSE"/>
  4539. <option command="@" tag="CMD_FILE"/>
  4540. </tool>
  4541. </extension>
  4542. <extension point="com.ti.ccstudio.project.core.toolOptionMetadataIndex"
  4543. id="C6000_8.2"
  4544. name="C6000 v8.2 Build-option Metadata Index">
  4545. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.BIG_ENDIAN" chain="--endian=big "></option>
  4546. <enumeratedOptionValue id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI.coffabi"><deprecate severity="6" diagnostic="As of version 8.0.0 of the C6000 Code Generation Tools COFF ABI support is discontinued. If COFF ABI support is needed for your application, please use the latest version 7.4.x of the C6000 Code Generation Tools."/></enumeratedOptionValue>
  4547. <enumeratedOptionValue id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI.elfabi"><deprecate severity="3" mapsTo="--abi=eabi "/></enumeratedOptionValue>
  4548. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.ABI" hide="true"><deprecate severity="3" diagnostic="As of version 8.0.0 of the C6000 Code Generation Tools the only ABI supported is the ELF EABI. The specification of an --abi option is unnecessary."/></option>
  4549. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPTIMIZE_WITH_DEBUG" hide="true"><deprecate severity="3" diagnostic="--optimize_with_debug is deprecated and will be removed in a subsequent release. The behavior is enabled by default."/></option>
  4550. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMDEBUG__KEEP_ALL_TYPES" chain="--keep_unneeded_types=true " hide="true"><deprecate severity="3" diagnostic="--symdebug:keep_all_types is deprecated and will be removed in a subsequent release."/></option>
  4551. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.EXCEPTIONS" chain="--rtti "></option>
  4552. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CREATE_PCH" hide="true"><deprecate severity="5" diagnostic="Precompiled header files are no longer supported."/></option>
  4553. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GCC" hide="true"><deprecate severity="3" diagnostic="--gcc is deprecated and will be removed in a subsequent release. GCC compatibility is implemented through the --relaxed_ansi option and is the default behavior of the compiler."/></option>
  4554. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.KEEP_UNNEEDED_STATICS" hide="true"><deprecate severity="3" diagnostic="--keep_unneeded_statics is deprecated and will be removed in a subsequent release. This capability can be achieved by using the RETAIN pragma."/></option>
  4555. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MULTIBYTE_CHARS" hide="true"><deprecate severity="3" diagnostic="--multibyte_chars is deprecated and will be removed in a subsequent release. The support for multibyte characters is now enabled by default."/></option>
  4556. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_INLINING" hide="true"><deprecate severity="5" diagnostic="The --no_inlining option is no longer supported. Please use the --disable_inlining option which disables both automatic inlining and inlining based on the inline keyword."/></option>
  4557. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_INTRINSICS" hide="true"><deprecate severity="3" diagnostic="--no_intrinsics is deprecated and will be removed in a subsequent release."/></option>
  4558. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PCH" hide="true"><deprecate severity="5" diagnostic="Precompiled header files are no longer supported."/></option>
  4559. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PCH_DIR" hide="true"><deprecate severity="5" diagnostic="Precompiled header files are no longer supported."/></option>
  4560. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PCH_VERBOSE" hide="true"><deprecate severity="5" diagnostic="Precompiled header files are no longer supported."/></option>
  4561. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STATIC_TEMPLATE_INSTANTIATION" hide="true"><deprecate severity="5" diagnostic="--static_template_instantiation is no longer supported."/></option>
  4562. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.USE_PCH" hide="true"><deprecate severity="5" diagnostic="Precompiled header files are no longer supported."/></option>
  4563. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.VECTYPES" chain="--use_g3 "></option>
  4564. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.BUFFER_DIAGNOSTICS" hide="true"><deprecate severity="3" diagnostic="--buffer_diagnostics is deprecated and will be removed in a subsequent release. The default behavior is to line buffer diagnostics."/></option>
  4565. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DIAG_WRAP" hide="true"><deprecate severity="3"/></option>
  4566. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DISPLAY_ERROR_NUMBER" hide="true"><deprecate severity="3"/></option>
  4567. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.TOOL_VERSION" hide="true"><deprecate severity="3"/></option>
  4568. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.WRITE_DIAGNOSTICS_FILE" hide="true"><deprecate severity="3"/></option>
  4569. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.DEBUG_SOFTWARE_PIPELINE" chain="--keep_asm "></option>
  4570. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.FP_NOT_ASSOCIATIVE" chain="--fp_reassoc=off "></option>
  4571. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PROFILE__BREAKPT" hide="true"><deprecate severity="5" diagnostic="The --profile:breakpt option is no longer supported"/></option>
  4572. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PROFILE__POWER" hide="true"><deprecate severity="5" diagnostic="The --profile:power option is no longer supported."/></option>
  4573. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SMALL_ENUM" hide="true"><deprecate severity="3" diagnostic="--small_enum is deprecated and will be removed in a subsequent release. Use --enum_type=packed instead."/></option>
  4574. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.TARGET_COMPATIBILITY_6200" chain="--disable_push_pop --disable_strasgi_64plus --disable_custom_call_conv "></option>
  4575. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.MULTITHREAD" chain="--use_libc_tls "></option>
  4576. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OPENMP" chain="--multithread "></option>
  4577. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SINGLE_INLINE" hide="true"><deprecate severity="3" diagnostic="--single_inline is deprecated and will be removed in a subsequent release."/></option>
  4578. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STD_LIB_FUNC_DEFINED" hide="true"><deprecate severity="3" diagnostic="--std_lib_func_defined is deprecated and will be removed in a subsequent release."/></option>
  4579. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STD_LIB_FUNC_NOT_DEFINED" hide="true"><deprecate severity="3" diagnostic="--std_lib_func_not_defined is deprecated and will be removed in a subsequent release."/></option>
  4580. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.STD_LIB_FUNC_REDEFINED" hide="true"><deprecate severity="3" diagnostic="--std_lib_func_redefined is deprecated and will be removed in a subsequent release."/></option>
  4581. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.COPY_FILE" hide="true"><deprecate severity="3" diagnostic="--copy_file is deprecated and will be removed in a subsequent release."/></option>
  4582. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.CROSS_REFERENCE" hide="true"><deprecate severity="3" diagnostic="--cross_reference is deprecated and will be removed in a subsequent release. Use --asm_cross_reference_listing instead."/></option>
  4583. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.INCLUDE_FILE" hide="true"><deprecate severity="3" diagnostic="--include_file is deprecated and will be removed in a subsequent release."/></option>
  4584. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.NO_CONST_CLINK" hide="true"><deprecate severity="3" diagnostic="--no_const_clink is deprecated and will be removed in a subsequent release. Use --gen_data_subsections=off."/></option>
  4585. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.OUTPUT_ALL_SYMS" hide="true"><deprecate severity="3" diagnostic="--output_all_syms is deprecated and will be removed in a subsequent release. This is now the default behavior of the compiler."/></option>
  4586. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.SYMS_IGNORE_CASE" hide="true"><deprecate severity="3" diagnostic="--syms_ignore_case is deprecated and will be removed in a subsequent release."/></option>
  4587. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LIST_DIRECTORY" chain="--asm_listing "></option>
  4588. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LINUX" chain="--abi=eabi --dsbt --gen_pic --static_tls=off "></option>
  4589. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.PIC" chain="--dsbt "></option>
  4590. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_ACP_RAW" hide="true"><deprecate severity="3" diagnostic="--gen_acp_raw is deprecated and will be removed in a subsequent release. The option has been renamed to --gen_preprocessor_listing."/></option>
  4591. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.GEN_ACP_XREF" hide="true"><deprecate severity="3" diagnostic="--gen_acp_xref is deprecated and will be removed in a subsequent release. The option has been renamed to --gen_cross_reference_listing"/></option>
  4592. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.compilerID.LEGACY" chain="--use_g2 "></option>
  4593. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.BUFFER_DIAGNOSTICS" hide="true"><deprecate severity="3"/></option>
  4594. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.DIAG_WRAP" hide="true"><deprecate severity="3"/></option>
  4595. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.FINI" chain="--retain=$param "></option>
  4596. <option id="com.ti.ccstudio.buildDefinitions.C6000_8.2.linkerID.INIT" chain="--retain=$param "></option>
  4597. </extension>
  4598. </plugin>