rtthread-beaglebone.map 485 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704
  1. Archive member included to satisfy reference by file (symbol)
  2. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  3. build\kernel\components\finsh\finsh_token.o (atoi)
  4. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  5. build\kernel\components\libc\compilers\newlib\stdio.o (fclose)
  6. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  7. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o) (__sflush_r)
  8. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  9. build\kernel\components\libc\compilers\newlib\stdio.o (fileno)
  10. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  11. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o) (__sfp_lock_acquire)
  12. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  13. build\kernel\components\libc\compilers\newlib\stdio.o (fopen)
  14. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  15. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o) (_fseek_r)
  16. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  17. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o) (_fseeko_r)
  18. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  19. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o) (_fwalk)
  20. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  21. build\kernel\components\libc\compilers\newlib\stdio.o (_global_impure_ptr)
  22. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  23. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o) (__retarget_lock_init_recursive)
  24. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  25. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o) (__smakebuf_r)
  26. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  27. build\kernel\components\finsh\shell.o (memcmp)
  28. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  29. build\kernel\components\drivers\src\ringbuffer.o (memcpy)
  30. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  31. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o (memset)
  32. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  33. build\kernel\components\libc\compilers\newlib\libc.o (putenv)
  34. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  35. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o) (_putenv_r)
  36. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  37. build\applications\main.o (puts)
  38. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  39. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o) (__srefill_r)
  40. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  41. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o) (_setenv_r)
  42. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  43. build\kernel\components\libc\compilers\newlib\stdio.o (setvbuf)
  44. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  45. build\kernel\components\libc\compilers\newlib\stdio.o (snprintf)
  46. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  47. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o) (__sread)
  48. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  49. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o) (strchr)
  50. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcmp.o)
  51. build\kernel\components\dfs\src\dfs.o (strcmp)
  52. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  53. build\kernel\components\finsh\shell.o (strcpy)
  54. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  55. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o) (_strdup_r)
  56. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strlen.o)
  57. build\kernel\components\dfs\src\dfs.o (strlen)
  58. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  59. build\kernel\components\dfs\src\dfs_fs.o (strncmp)
  60. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  61. build\kernel\components\dfs\src\dfs_posix.o (strncpy)
  62. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  63. build\kernel\components\dfs\src\dfs_file.o (strrchr)
  64. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  65. build\kernel\components\finsh\msh_file.o (strstr)
  66. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  67. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o) (_strtol_r)
  68. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  69. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o) (_svfprintf_r)
  70. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  71. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o) (_dtoa_r)
  72. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  73. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o) (environ)
  74. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  75. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o) (__env_lock)
  76. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  77. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o) (__sflags)
  78. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  79. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o) (__sfvwrite_r)
  80. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  81. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o) (_findenv_r)
  82. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  83. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o) (__locale_ctype_ptr_l)
  84. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  85. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o) (_localeconv_r)
  86. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  87. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o) (malloc)
  88. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  89. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o) (__ascii_mbtowc)
  90. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  91. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o) (memchr)
  92. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  93. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o) (memmove)
  94. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  95. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o) (_Balloc)
  96. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  97. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o) (frexp)
  98. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  99. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o) (__ssprint_r)
  100. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  101. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o) (__ascii_wctomb)
  102. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  103. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o) (__swsetup_r)
  104. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-ctype_.o)
  105. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o) (_ctype_)
  106. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  107. build\kernel\src\ipc.o (__aeabi_uidiv)
  108. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  109. build\kernel\components\finsh\finsh_ops.o (__aeabi_idiv)
  110. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_dvmd_tls.o)
  111. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o) (__aeabi_idiv0)
  112. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  113. build\kernel\components\libc\compilers\common\time.o (__aeabi_ldivmod)
  114. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  115. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o) (__aeabi_uldivmod)
  116. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  117. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o) (__udivmoddi4)
  118. Allocating common symbols
  119. Common symbol size file
  120. __lock___atexit_recursive_mutex
  121. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  122. rt_interrupt_to_thread
  123. 0x4 build\kernel\libcpu\arm\am335x\interrupt.o
  124. rt_interrupt_from_thread
  125. 0x4 build\kernel\libcpu\arm\am335x\interrupt.o
  126. __lock___arc4random_mutex
  127. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  128. global_sysvar_list 0x4 build\kernel\components\finsh\finsh_var.o
  129. finsh_heap 0x80 build\kernel\components\finsh\finsh_heap.o
  130. shell 0x4 build\kernel\components\finsh\shell.o
  131. rt_thread_switch_interrupt_flag
  132. 0x4 build\kernel\libcpu\arm\am335x\interrupt.o
  133. text_segment 0x80 build\kernel\components\finsh\finsh_vm.o
  134. __lock___env_recursive_mutex
  135. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  136. __lock___sinit_recursive_mutex
  137. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  138. finsh_compile_pc 0x4 build\kernel\components\finsh\finsh_compiler.o
  139. finsh_vm_stack 0x100 build\kernel\components\finsh\finsh_vm.o
  140. global_errno 0x1 build\kernel\components\finsh\finsh_error.o
  141. __lock___malloc_recursive_mutex
  142. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  143. rt_thread_priority_table
  144. 0x100 build\kernel\src\scheduler.o
  145. serial1 0x54 build\drivers\uart.o
  146. rt_object_put_hook 0x4 build\kernel\src\object.o
  147. rt_current_priority
  148. 0x1 build\kernel\src\scheduler.o
  149. filesystem_table 0x20 build\kernel\components\dfs\src\dfs.o
  150. rt_assert_hook 0x4 build\kernel\src\kservice.o
  151. isr_table 0x400 build\kernel\libcpu\arm\am335x\interrupt.o
  152. rt_object_take_hook
  153. 0x4 build\kernel\src\object.o
  154. rt_thread_ready_priority_group
  155. 0x4 build\kernel\src\scheduler.o
  156. rt_thread_defunct 0x8 build\kernel\src\scheduler.o
  157. global_node_table 0x140 build\kernel\components\finsh\finsh_node.o
  158. finsh_compile_sp 0x4 build\kernel\components\finsh\finsh_compiler.o
  159. __lock___at_quick_exit_mutex
  160. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  161. finsh_pc 0x4 build\kernel\components\finsh\finsh_vm.o
  162. filesystem_operation_table
  163. 0x8 build\kernel\components\dfs\src\dfs.o
  164. rt_object_trytake_hook
  165. 0x4 build\kernel\src\object.o
  166. __lock___dd_hash_mutex
  167. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  168. __lock___tz_mutex 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  169. finsh_sp 0x4 build\kernel\components\finsh\finsh_vm.o
  170. global_variable 0xc0 build\kernel\components\finsh\finsh_var.o
  171. __lock___sfp_recursive_mutex
  172. 0x1 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  173. Discarded input sections
  174. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  175. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  176. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  177. .text.startup 0x0000000000000000 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  178. .init_array 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  179. .debug_frame 0x0000000000000000 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  180. .ARM.attributes
  181. 0x0000000000000000 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  182. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  183. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  184. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  185. .text 0x0000000000000000 0x50 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  186. .data 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  187. .bss 0x0000000000000000 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  188. .init_array 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  189. .fini_array 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  190. .eh_frame 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  191. .ARM.attributes
  192. 0x0000000000000000 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  193. .text 0x0000000000000000 0x74 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  194. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  195. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  196. .ARM.extab 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  197. .ARM.exidx 0x0000000000000000 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  198. .ARM.attributes
  199. 0x0000000000000000 0x19 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  200. .data 0x0000000000000000 0x0 build\applications\board.o
  201. .bss 0x0000000000000000 0x0 build\applications\board.o
  202. .data 0x0000000000000000 0x0 build\applications\main.o
  203. .bss 0x0000000000000000 0x0 build\applications\main.o
  204. .bss 0x0000000000000000 0x0 build\drivers\gpio.o
  205. .bss 0x0000000000000000 0x0 build\drivers\uart.o
  206. .data 0x0000000000000000 0x0 build\kernel\src\clock.o
  207. .data 0x0000000000000000 0x0 build\kernel\src\components.o
  208. .bss 0x0000000000000000 0x0 build\kernel\src\components.o
  209. .data 0x0000000000000000 0x0 build\kernel\src\device.o
  210. .bss 0x0000000000000000 0x0 build\kernel\src\device.o
  211. .data 0x0000000000000000 0x0 build\kernel\src\idle.o
  212. .data 0x0000000000000000 0x0 build\kernel\src\ipc.o
  213. .bss 0x0000000000000000 0x0 build\kernel\src\ipc.o
  214. .data 0x0000000000000000 0x0 build\kernel\src\irq.o
  215. .data 0x0000000000000000 0x0 build\kernel\src\kservice.o
  216. .data 0x0000000000000000 0x0 build\kernel\src\mem.o
  217. .text 0x0000000000000000 0xb00 build\kernel\src\mempool.o
  218. .data 0x0000000000000000 0x0 build\kernel\src\mempool.o
  219. .bss 0x0000000000000000 0x8 build\kernel\src\mempool.o
  220. .rodata 0x0000000000000000 0x198 build\kernel\src\mempool.o
  221. .debug_info 0x0000000000000000 0x12a4 build\kernel\src\mempool.o
  222. .debug_abbrev 0x0000000000000000 0x2ec build\kernel\src\mempool.o
  223. .debug_loc 0x0000000000000000 0x2a4 build\kernel\src\mempool.o
  224. .debug_aranges
  225. 0x0000000000000000 0x20 build\kernel\src\mempool.o
  226. .debug_line 0x0000000000000000 0x3ed build\kernel\src\mempool.o
  227. .debug_str 0x0000000000000000 0xa5c build\kernel\src\mempool.o
  228. .comment 0x0000000000000000 0x7c build\kernel\src\mempool.o
  229. .debug_frame 0x0000000000000000 0x188 build\kernel\src\mempool.o
  230. .ARM.attributes
  231. 0x0000000000000000 0x2d build\kernel\src\mempool.o
  232. .data 0x0000000000000000 0x0 build\kernel\src\scheduler.o
  233. .data 0x0000000000000000 0x0 build\kernel\src\thread.o
  234. .data 0x0000000000000000 0x0 build\kernel\src\timer.o
  235. .text 0x0000000000000000 0xd8 build\kernel\libcpu\arm\common\backtrace.o
  236. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\backtrace.o
  237. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\backtrace.o
  238. .rodata 0x0000000000000000 0x19 build\kernel\libcpu\arm\common\backtrace.o
  239. .debug_info 0x0000000000000000 0xaf7 build\kernel\libcpu\arm\common\backtrace.o
  240. .debug_abbrev 0x0000000000000000 0x1d5 build\kernel\libcpu\arm\common\backtrace.o
  241. .debug_loc 0x0000000000000000 0x38 build\kernel\libcpu\arm\common\backtrace.o
  242. .debug_aranges
  243. 0x0000000000000000 0x20 build\kernel\libcpu\arm\common\backtrace.o
  244. .debug_line 0x0000000000000000 0x25e build\kernel\libcpu\arm\common\backtrace.o
  245. .debug_str 0x0000000000000000 0x654 build\kernel\libcpu\arm\common\backtrace.o
  246. .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\common\backtrace.o
  247. .debug_frame 0x0000000000000000 0x30 build\kernel\libcpu\arm\common\backtrace.o
  248. .ARM.attributes
  249. 0x0000000000000000 0x2d build\kernel\libcpu\arm\common\backtrace.o
  250. .text 0x0000000000000000 0xc build\kernel\libcpu\arm\common\div0.o
  251. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\div0.o
  252. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\div0.o
  253. .debug_info 0x0000000000000000 0x3c build\kernel\libcpu\arm\common\div0.o
  254. .debug_abbrev 0x0000000000000000 0x2c build\kernel\libcpu\arm\common\div0.o
  255. .debug_loc 0x0000000000000000 0x2c build\kernel\libcpu\arm\common\div0.o
  256. .debug_aranges
  257. 0x0000000000000000 0x20 build\kernel\libcpu\arm\common\div0.o
  258. .debug_line 0x0000000000000000 0x57 build\kernel\libcpu\arm\common\div0.o
  259. .debug_str 0x0000000000000000 0x108 build\kernel\libcpu\arm\common\div0.o
  260. .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\common\div0.o
  261. .debug_frame 0x0000000000000000 0x28 build\kernel\libcpu\arm\common\div0.o
  262. .ARM.attributes
  263. 0x0000000000000000 0x2d build\kernel\libcpu\arm\common\div0.o
  264. .text 0x0000000000000000 0xf4 build\kernel\libcpu\arm\common\showmem.o
  265. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\showmem.o
  266. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\showmem.o
  267. .rodata 0x0000000000000000 0x36 build\kernel\libcpu\arm\common\showmem.o
  268. .debug_info 0x0000000000000000 0xb08 build\kernel\libcpu\arm\common\showmem.o
  269. .debug_abbrev 0x0000000000000000 0x1c4 build\kernel\libcpu\arm\common\showmem.o
  270. .debug_loc 0x0000000000000000 0x38 build\kernel\libcpu\arm\common\showmem.o
  271. .debug_aranges
  272. 0x0000000000000000 0x20 build\kernel\libcpu\arm\common\showmem.o
  273. .debug_line 0x0000000000000000 0x267 build\kernel\libcpu\arm\common\showmem.o
  274. .debug_str 0x0000000000000000 0x653 build\kernel\libcpu\arm\common\showmem.o
  275. .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\common\showmem.o
  276. .debug_frame 0x0000000000000000 0x30 build\kernel\libcpu\arm\common\showmem.o
  277. .ARM.attributes
  278. 0x0000000000000000 0x2d build\kernel\libcpu\arm\common\showmem.o
  279. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cpu.o
  280. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cpu.o
  281. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\interrupt.o
  282. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\interrupt.o
  283. .text 0x0000000000000000 0x3b4 build\kernel\libcpu\arm\am335x\mmu.o
  284. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\mmu.o
  285. .bss 0x0000000000000000 0x4000 build\kernel\libcpu\arm\am335x\mmu.o
  286. .debug_info 0x0000000000000000 0xd77 build\kernel\libcpu\arm\am335x\mmu.o
  287. .debug_abbrev 0x0000000000000000 0x26d build\kernel\libcpu\arm\am335x\mmu.o
  288. .debug_loc 0x0000000000000000 0x3f0 build\kernel\libcpu\arm\am335x\mmu.o
  289. .debug_aranges
  290. 0x0000000000000000 0x20 build\kernel\libcpu\arm\am335x\mmu.o
  291. .debug_line 0x0000000000000000 0x29b build\kernel\libcpu\arm\am335x\mmu.o
  292. .debug_str 0x0000000000000000 0x7b6 build\kernel\libcpu\arm\am335x\mmu.o
  293. .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\am335x\mmu.o
  294. .debug_frame 0x0000000000000000 0x238 build\kernel\libcpu\arm\am335x\mmu.o
  295. .ARM.attributes
  296. 0x0000000000000000 0x2d build\kernel\libcpu\arm\am335x\mmu.o
  297. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\stack.o
  298. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\stack.o
  299. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\trap.o
  300. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\trap.o
  301. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\context_gcc.o
  302. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\context_gcc.o
  303. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cp15_gcc.o
  304. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cp15_gcc.o
  305. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\start_gcc.o
  306. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\start_gcc.o
  307. .text 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\vector_gcc.o
  308. .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\vector_gcc.o
  309. .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\vector_gcc.o
  310. .data 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_file.o
  311. .data 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_fs.o
  312. .bss 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_fs.o
  313. .data 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_posix.o
  314. .bss 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_posix.o
  315. .data 0x0000000000000000 0x0 build\kernel\components\dfs\filesystems\devfs\devfs.o
  316. .bss 0x0000000000000000 0x0 build\kernel\components\dfs\filesystems\devfs\devfs.o
  317. .data 0x0000000000000000 0x0 build\kernel\components\drivers\misc\pin.o
  318. .data 0x0000000000000000 0x0 build\kernel\components\drivers\serial\serial.o
  319. .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\completion.o
  320. .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\completion.o
  321. .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\dataqueue.o
  322. .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\dataqueue.o
  323. .text 0x0000000000000000 0x67c build\kernel\components\drivers\src\pipe.o
  324. .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\pipe.o
  325. .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\pipe.o
  326. .rodata 0x0000000000000000 0x43 build\kernel\components\drivers\src\pipe.o
  327. .debug_info 0x0000000000000000 0x1551 build\kernel\components\drivers\src\pipe.o
  328. .debug_abbrev 0x0000000000000000 0x2b0 build\kernel\components\drivers\src\pipe.o
  329. .debug_loc 0x0000000000000000 0x210 build\kernel\components\drivers\src\pipe.o
  330. .debug_aranges
  331. 0x0000000000000000 0x20 build\kernel\components\drivers\src\pipe.o
  332. .debug_ranges 0x0000000000000000 0x30 build\kernel\components\drivers\src\pipe.o
  333. .debug_line 0x0000000000000000 0x3d2 build\kernel\components\drivers\src\pipe.o
  334. .debug_str 0x0000000000000000 0xc3b build\kernel\components\drivers\src\pipe.o
  335. .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\pipe.o
  336. .debug_frame 0x0000000000000000 0x130 build\kernel\components\drivers\src\pipe.o
  337. .ARM.attributes
  338. 0x0000000000000000 0x2d build\kernel\components\drivers\src\pipe.o
  339. .text 0x0000000000000000 0x1088 build\kernel\components\drivers\src\ringblk_buf.o
  340. .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringblk_buf.o
  341. .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringblk_buf.o
  342. .rodata 0x0000000000000000 0x1b0 build\kernel\components\drivers\src\ringblk_buf.o
  343. .debug_info 0x0000000000000000 0x1437 build\kernel\components\drivers\src\ringblk_buf.o
  344. .debug_abbrev 0x0000000000000000 0x310 build\kernel\components\drivers\src\ringblk_buf.o
  345. .debug_loc 0x0000000000000000 0x5a0 build\kernel\components\drivers\src\ringblk_buf.o
  346. .debug_aranges
  347. 0x0000000000000000 0x20 build\kernel\components\drivers\src\ringblk_buf.o
  348. .debug_line 0x0000000000000000 0x50a build\kernel\components\drivers\src\ringblk_buf.o
  349. .debug_str 0x0000000000000000 0x978 build\kernel\components\drivers\src\ringblk_buf.o
  350. .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\ringblk_buf.o
  351. .debug_frame 0x0000000000000000 0x314 build\kernel\components\drivers\src\ringblk_buf.o
  352. .ARM.attributes
  353. 0x0000000000000000 0x2d build\kernel\components\drivers\src\ringblk_buf.o
  354. .text 0x0000000000000000 0x1100 build\kernel\components\drivers\src\ringbuffer.o
  355. .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringbuffer.o
  356. .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringbuffer.o
  357. .rodata 0x0000000000000000 0x112 build\kernel\components\drivers\src\ringbuffer.o
  358. .debug_info 0x0000000000000000 0xfea build\kernel\components\drivers\src\ringbuffer.o
  359. .debug_abbrev 0x0000000000000000 0x2b7 build\kernel\components\drivers\src\ringbuffer.o
  360. .debug_loc 0x0000000000000000 0x2e4 build\kernel\components\drivers\src\ringbuffer.o
  361. .debug_aranges
  362. 0x0000000000000000 0x20 build\kernel\components\drivers\src\ringbuffer.o
  363. .debug_line 0x0000000000000000 0x3b6 build\kernel\components\drivers\src\ringbuffer.o
  364. .debug_str 0x0000000000000000 0x83e build\kernel\components\drivers\src\ringbuffer.o
  365. .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\ringbuffer.o
  366. .debug_frame 0x0000000000000000 0x1c0 build\kernel\components\drivers\src\ringbuffer.o
  367. .ARM.attributes
  368. 0x0000000000000000 0x2d build\kernel\components\drivers\src\ringbuffer.o
  369. .text 0x0000000000000000 0x448 build\kernel\components\drivers\src\waitqueue.o
  370. .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\waitqueue.o
  371. .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\waitqueue.o
  372. .rodata 0x0000000000000000 0x3b build\kernel\components\drivers\src\waitqueue.o
  373. .debug_info 0x0000000000000000 0x10cd build\kernel\components\drivers\src\waitqueue.o
  374. .debug_abbrev 0x0000000000000000 0x287 build\kernel\components\drivers\src\waitqueue.o
  375. .debug_loc 0x0000000000000000 0x234 build\kernel\components\drivers\src\waitqueue.o
  376. .debug_aranges
  377. 0x0000000000000000 0x20 build\kernel\components\drivers\src\waitqueue.o
  378. .debug_line 0x0000000000000000 0x308 build\kernel\components\drivers\src\waitqueue.o
  379. .debug_str 0x0000000000000000 0x8e8 build\kernel\components\drivers\src\waitqueue.o
  380. .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\waitqueue.o
  381. .debug_frame 0x0000000000000000 0x134 build\kernel\components\drivers\src\waitqueue.o
  382. .ARM.attributes
  383. 0x0000000000000000 0x2d build\kernel\components\drivers\src\waitqueue.o
  384. .text 0x0000000000000000 0xd18 build\kernel\components\drivers\src\workqueue.o
  385. .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\workqueue.o
  386. .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\workqueue.o
  387. .rodata 0x0000000000000000 0x109 build\kernel\components\drivers\src\workqueue.o
  388. .debug_info 0x0000000000000000 0x1592 build\kernel\components\drivers\src\workqueue.o
  389. .debug_abbrev 0x0000000000000000 0x2e8 build\kernel\components\drivers\src\workqueue.o
  390. .debug_loc 0x0000000000000000 0x4bc build\kernel\components\drivers\src\workqueue.o
  391. .debug_aranges
  392. 0x0000000000000000 0x20 build\kernel\components\drivers\src\workqueue.o
  393. .debug_line 0x0000000000000000 0x3e7 build\kernel\components\drivers\src\workqueue.o
  394. .debug_str 0x0000000000000000 0xab4 build\kernel\components\drivers\src\workqueue.o
  395. .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\workqueue.o
  396. .debug_frame 0x0000000000000000 0x2ac build\kernel\components\drivers\src\workqueue.o
  397. .ARM.attributes
  398. 0x0000000000000000 0x2d build\kernel\components\drivers\src\workqueue.o
  399. .data 0x0000000000000000 0x0 build\kernel\components\finsh\shell.o
  400. .data 0x0000000000000000 0x0 build\kernel\components\finsh\cmd.o
  401. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\msh.o
  402. .data 0x0000000000000000 0x0 build\kernel\components\finsh\msh_file.o
  403. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\msh_file.o
  404. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_compiler.o
  405. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_compiler.o
  406. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_error.o
  407. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_heap.o
  408. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_init.o
  409. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_init.o
  410. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_node.o
  411. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_node.o
  412. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_ops.o
  413. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_ops.o
  414. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_parser.o
  415. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_parser.o
  416. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_var.o
  417. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_var.o
  418. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_vm.o
  419. .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_token.o
  420. .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_token.o
  421. .text 0x0000000000000000 0xd2c build\kernel\components\libc\compilers\common\time.o
  422. .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\common\time.o
  423. .bss 0x0000000000000000 0x61 build\kernel\components\libc\compilers\common\time.o
  424. .rodata 0x0000000000000000 0x95 build\kernel\components\libc\compilers\common\time.o
  425. .debug_info 0x0000000000000000 0x1296 build\kernel\components\libc\compilers\common\time.o
  426. .debug_abbrev 0x0000000000000000 0x2a3 build\kernel\components\libc\compilers\common\time.o
  427. .debug_loc 0x0000000000000000 0x2f0 build\kernel\components\libc\compilers\common\time.o
  428. .debug_aranges
  429. 0x0000000000000000 0x20 build\kernel\components\libc\compilers\common\time.o
  430. .debug_ranges 0x0000000000000000 0x18 build\kernel\components\libc\compilers\common\time.o
  431. .debug_line 0x0000000000000000 0x3df build\kernel\components\libc\compilers\common\time.o
  432. .debug_str 0x0000000000000000 0xa8a build\kernel\components\libc\compilers\common\time.o
  433. .comment 0x0000000000000000 0x7c build\kernel\components\libc\compilers\common\time.o
  434. .debug_frame 0x0000000000000000 0x1c8 build\kernel\components\libc\compilers\common\time.o
  435. .ARM.attributes
  436. 0x0000000000000000 0x2d build\kernel\components\libc\compilers\common\time.o
  437. .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc.o
  438. .bss 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc.o
  439. .text 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc_syms.o
  440. .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc_syms.o
  441. .bss 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc_syms.o
  442. .debug_info 0x0000000000000000 0xa8e build\kernel\components\libc\compilers\newlib\libc_syms.o
  443. .debug_abbrev 0x0000000000000000 0x17b build\kernel\components\libc\compilers\newlib\libc_syms.o
  444. .debug_aranges
  445. 0x0000000000000000 0x18 build\kernel\components\libc\compilers\newlib\libc_syms.o
  446. .debug_line 0x0000000000000000 0x20a build\kernel\components\libc\compilers\newlib\libc_syms.o
  447. .debug_str 0x0000000000000000 0x639 build\kernel\components\libc\compilers\newlib\libc_syms.o
  448. .comment 0x0000000000000000 0x7c build\kernel\components\libc\compilers\newlib\libc_syms.o
  449. .ARM.attributes
  450. 0x0000000000000000 0x2d build\kernel\components\libc\compilers\newlib\libc_syms.o
  451. .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\stdio.o
  452. .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\syscalls.o
  453. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  454. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  455. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  456. .text._atoi_r 0x0000000000000000 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  457. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  458. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  459. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  460. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  461. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  462. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  463. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  464. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  465. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  466. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  467. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  468. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  469. .text.__fp_lock
  470. 0x0000000000000000 0x18 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  471. .text.__fp_unlock
  472. 0x0000000000000000 0x18 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  473. .text._cleanup
  474. 0x0000000000000000 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  475. .text.__fp_lock_all
  476. 0x0000000000000000 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  477. .text.__fp_unlock_all
  478. 0x0000000000000000 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  479. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  480. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  481. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  482. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  483. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  484. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  485. .text.fseek 0x0000000000000000 0x14 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  486. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  487. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  488. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  489. .text.fseeko 0x0000000000000000 0x14 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  490. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  491. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  492. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  493. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  494. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  495. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  496. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  497. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  498. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  499. .text.__retarget_lock_init
  500. 0x0000000000000000 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  501. .text.__retarget_lock_close
  502. 0x0000000000000000 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  503. .text.__retarget_lock_acquire
  504. 0x0000000000000000 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  505. .text.__retarget_lock_try_acquire
  506. 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  507. .text.__retarget_lock_try_acquire_recursive
  508. 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  509. .text.__retarget_lock_release
  510. 0x0000000000000000 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  511. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  512. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  513. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  514. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  515. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  516. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  517. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  518. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  519. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  520. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  521. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  522. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  523. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  524. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  525. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  526. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  527. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  528. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  529. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  530. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  531. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  532. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  533. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  534. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  535. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  536. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  537. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  538. .text._unsetenv_r
  539. 0x0000000000000000 0x64 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  540. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  541. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  542. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  543. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  544. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  545. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  546. .text._snprintf_r
  547. 0x0000000000000000 0x5e c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  548. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  549. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  550. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  551. .text.__seofread
  552. 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  553. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  554. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  555. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  556. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcmp.o)
  557. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcmp.o)
  558. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  559. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  560. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  561. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  562. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  563. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  564. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strlen.o)
  565. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strlen.o)
  566. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  567. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  568. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  569. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  570. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  571. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  572. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  573. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  574. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  575. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  576. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  577. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  578. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  579. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  580. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  581. .text._strtol_r
  582. 0x0000000000000000 0x24 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  583. .text.strtol_l
  584. 0x0000000000000000 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  585. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  586. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  587. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  588. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  589. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  590. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  591. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  592. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  593. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  594. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  595. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  596. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  597. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  598. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  599. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  600. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  601. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  602. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  603. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  604. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  605. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  606. .text._getenv_r
  607. 0x0000000000000000 0xe c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  608. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  609. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  610. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  611. .text._setlocale_r
  612. 0x0000000000000000 0x38 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  613. .text.__locale_mb_cur_max
  614. 0x0000000000000000 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  615. .text.__locale_ctype_ptr
  616. 0x0000000000000000 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  617. .text.setlocale
  618. 0x0000000000000000 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  619. .bss._PathLocale
  620. 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  621. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  622. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  623. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  624. .text.__localeconv_l
  625. 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  626. .text.localeconv
  627. 0x0000000000000000 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  628. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  629. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  630. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  631. .text.free 0x0000000000000000 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  632. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  633. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  634. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  635. .text._mbtowc_r
  636. 0x0000000000000000 0x24 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  637. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  638. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  639. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  640. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  641. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  642. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  643. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  644. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  645. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  646. .text.__s2b 0x0000000000000000 0x7e c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  647. .text.__ulp 0x0000000000000000 0x44 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  648. .text.__b2d 0x0000000000000000 0xa4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  649. .text.__ratio 0x0000000000000000 0x62 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  650. .text._mprec_log10
  651. 0x0000000000000000 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  652. .text.__copybits
  653. 0x0000000000000000 0x34 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  654. .text.__any_on
  655. 0x0000000000000000 0x42 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  656. .rodata.__mprec_tinytens
  657. 0x0000000000000000 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  658. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  659. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  660. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  661. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  662. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  663. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  664. .text._svfiprintf_r
  665. 0x0000000000000000 0x948 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  666. .rodata._svfiprintf_r.str1.1
  667. 0x0000000000000000 0x22 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  668. .rodata.blanks.8569
  669. 0x0000000000000000 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  670. .rodata.zeroes.8570
  671. 0x0000000000000000 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  672. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  673. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  674. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  675. .text._wctomb_r
  676. 0x0000000000000000 0x24 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  677. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  678. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  679. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  680. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-ctype_.o)
  681. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-ctype_.o)
  682. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-ctype_.o)
  683. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  684. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  685. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  686. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  687. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_dvmd_tls.o)
  688. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_dvmd_tls.o)
  689. .text 0x0000000000000000 0xa0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  690. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  691. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  692. .debug_frame 0x0000000000000000 0x44 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  693. .ARM.attributes
  694. 0x0000000000000000 0x1b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  695. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  696. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  697. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  698. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  699. .ARM.extab 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  700. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtend.o
  701. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtend.o
  702. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtend.o
  703. .eh_frame 0x0000000000000000 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtend.o
  704. .ARM.attributes
  705. 0x0000000000000000 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtend.o
  706. .text 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtn.o
  707. .data 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtn.o
  708. .bss 0x0000000000000000 0x0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtn.o
  709. .init 0x0000000000000000 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtn.o
  710. .fini 0x0000000000000000 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtn.o
  711. .ARM.attributes
  712. 0x0000000000000000 0x1b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtn.o
  713. Memory Configuration
  714. Name Origin Length Attributes
  715. *default* 0x0000000000000000 0xffffffffffffffff
  716. Linker script and memory map
  717. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtfastmath.o
  718. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  719. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  720. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  721. LOAD build\applications\board.o
  722. LOAD build\applications\main.o
  723. LOAD build\drivers\gpio.o
  724. LOAD build\drivers\uart.o
  725. LOAD build\kernel\src\clock.o
  726. LOAD build\kernel\src\components.o
  727. LOAD build\kernel\src\device.o
  728. LOAD build\kernel\src\idle.o
  729. LOAD build\kernel\src\ipc.o
  730. LOAD build\kernel\src\irq.o
  731. LOAD build\kernel\src\kservice.o
  732. LOAD build\kernel\src\mem.o
  733. LOAD build\kernel\src\mempool.o
  734. LOAD build\kernel\src\object.o
  735. LOAD build\kernel\src\scheduler.o
  736. LOAD build\kernel\src\thread.o
  737. LOAD build\kernel\src\timer.o
  738. LOAD build\kernel\libcpu\arm\common\backtrace.o
  739. LOAD build\kernel\libcpu\arm\common\div0.o
  740. LOAD build\kernel\libcpu\arm\common\showmem.o
  741. LOAD build\kernel\libcpu\arm\am335x\cpu.o
  742. LOAD build\kernel\libcpu\arm\am335x\interrupt.o
  743. LOAD build\kernel\libcpu\arm\am335x\mmu.o
  744. LOAD build\kernel\libcpu\arm\am335x\stack.o
  745. LOAD build\kernel\libcpu\arm\am335x\trap.o
  746. LOAD build\kernel\libcpu\arm\am335x\context_gcc.o
  747. LOAD build\kernel\libcpu\arm\am335x\cp15_gcc.o
  748. LOAD build\kernel\libcpu\arm\am335x\start_gcc.o
  749. LOAD build\kernel\libcpu\arm\am335x\vector_gcc.o
  750. LOAD build\kernel\components\dfs\src\dfs.o
  751. LOAD build\kernel\components\dfs\src\dfs_file.o
  752. LOAD build\kernel\components\dfs\src\dfs_fs.o
  753. LOAD build\kernel\components\dfs\src\dfs_posix.o
  754. LOAD build\kernel\components\dfs\filesystems\devfs\devfs.o
  755. LOAD build\kernel\components\drivers\misc\pin.o
  756. LOAD build\kernel\components\drivers\serial\serial.o
  757. LOAD build\kernel\components\drivers\src\completion.o
  758. LOAD build\kernel\components\drivers\src\dataqueue.o
  759. LOAD build\kernel\components\drivers\src\pipe.o
  760. LOAD build\kernel\components\drivers\src\ringblk_buf.o
  761. LOAD build\kernel\components\drivers\src\ringbuffer.o
  762. LOAD build\kernel\components\drivers\src\waitqueue.o
  763. LOAD build\kernel\components\drivers\src\workqueue.o
  764. LOAD build\kernel\components\finsh\shell.o
  765. LOAD build\kernel\components\finsh\cmd.o
  766. LOAD build\kernel\components\finsh\msh.o
  767. LOAD build\kernel\components\finsh\msh_file.o
  768. LOAD build\kernel\components\finsh\finsh_compiler.o
  769. LOAD build\kernel\components\finsh\finsh_error.o
  770. LOAD build\kernel\components\finsh\finsh_heap.o
  771. LOAD build\kernel\components\finsh\finsh_init.o
  772. LOAD build\kernel\components\finsh\finsh_node.o
  773. LOAD build\kernel\components\finsh\finsh_ops.o
  774. LOAD build\kernel\components\finsh\finsh_parser.o
  775. LOAD build\kernel\components\finsh\finsh_var.o
  776. LOAD build\kernel\components\finsh\finsh_vm.o
  777. LOAD build\kernel\components\finsh\finsh_token.o
  778. LOAD build\kernel\components\libc\compilers\common\time.o
  779. LOAD build\kernel\components\libc\compilers\newlib\libc.o
  780. LOAD build\kernel\components\libc\compilers\newlib\libc_syms.o
  781. LOAD build\kernel\components\libc\compilers\newlib\stdio.o
  782. LOAD build\kernel\components\libc\compilers\newlib\syscalls.o
  783. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a
  784. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libm.a
  785. START GROUP
  786. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a
  787. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a
  788. END GROUP
  789. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtend.o
  790. LOAD c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtn.o
  791. 0x0000000080200000 . = 0x80200000
  792. 0x0000000080200000 __text_start = .
  793. .text 0x0000000080200000 0x29b30
  794. *(.vectors)
  795. .vectors 0x0000000080200000 0x40 build\kernel\libcpu\arm\am335x\vector_gcc.o
  796. 0x0000000080200000 system_vectors
  797. *(.text)
  798. .text 0x0000000080200040 0x32c build\applications\board.o
  799. 0x00000000802001bc rt_hw_timer_init
  800. 0x00000000802002fc rt_hw_board_init
  801. 0x000000008020031c rt_hw_cpu_reset
  802. .text 0x000000008020036c 0x20 build\applications\main.o
  803. 0x000000008020036c main
  804. .text 0x000000008020038c 0x2bc build\drivers\gpio.o
  805. 0x000000008020061c rt_hw_gpio_init
  806. .text 0x0000000080200648 0x804 build\drivers\uart.o
  807. 0x00000000802009e0 printkc
  808. 0x0000000080200d54 rt_hw_serial_init
  809. .text 0x0000000080200e4c 0x1d4 build\kernel\src\clock.o
  810. 0x0000000080200e4c rt_tick_get
  811. 0x0000000080200e70 rt_tick_set
  812. 0x0000000080200eac rt_tick_increase
  813. 0x0000000080200f3c rt_tick_from_millisecond
  814. 0x0000000080201000 rt_tick_get_millisecond
  815. .text 0x0000000080201020 0x200 build\kernel\src\components.o
  816. 0x0000000080201090 rt_components_board_init
  817. 0x00000000802010e4 rt_components_init
  818. 0x0000000080201138 entry
  819. 0x0000000080201150 main_thread_entry
  820. 0x0000000080201174 rt_application_init
  821. 0x00000000802011e8 rtthread_startup
  822. .text 0x0000000080201220 0x9f0 build\kernel\src\device.o
  823. 0x0000000080201220 rt_device_register
  824. 0x00000000802012b4 rt_device_unregister
  825. 0x0000000080201364 rt_device_init_all
  826. 0x0000000080201380 rt_device_find
  827. 0x00000000802013ac rt_device_create
  828. 0x0000000080201434 rt_device_destroy
  829. 0x00000000802014e8 rt_device_init
  830. 0x00000000802015ac rt_device_open
  831. 0x0000000080201798 rt_device_close
  832. 0x00000000802018a4 rt_device_read
  833. 0x0000000080201980 rt_device_write
  834. 0x0000000080201a5c rt_device_control
  835. 0x0000000080201b08 rt_device_set_rx_indicate
  836. 0x0000000080201b8c rt_device_set_tx_complete
  837. .text 0x0000000080201c10 0x400 build\kernel\src\idle.o
  838. 0x0000000080201c74 rt_thread_idle_sethook
  839. 0x0000000080201d08 rt_thread_idle_delhook
  840. 0x0000000080201de4 rt_thread_idle_excute
  841. 0x0000000080201f1c rt_thread_idle_init
  842. 0x0000000080201fe4 rt_thread_idle_gethandler
  843. .text 0x0000000080202010 0x3f30 build\kernel\src\ipc.o
  844. 0x00000000802022bc rt_ipc_get_highest_priority
  845. 0x000000008020233c rt_sem_init
  846. 0x00000000802023ec rt_sem_detach
  847. 0x00000000802024ac rt_sem_create
  848. 0x0000000080202594 rt_sem_delete
  849. 0x00000000802026a0 rt_sem_take
  850. 0x00000000802028ec rt_sem_trytake
  851. 0x0000000080202918 rt_sem_release
  852. 0x0000000080202a4c rt_sem_control
  853. 0x0000000080202b20 rt_mutex_init
  854. 0x0000000080202bcc rt_mutex_detach
  855. 0x0000000080202c8c rt_mutex_create
  856. 0x0000000080202d6c rt_mutex_delete
  857. 0x0000000080202e78 rt_mutex_take
  858. 0x00000000802031b4 rt_mutex_release
  859. 0x00000000802034f8 rt_mutex_control
  860. 0x0000000080203574 rt_event_init
  861. 0x00000000802035fc rt_event_detach
  862. 0x00000000802036bc rt_event_create
  863. 0x0000000080203778 rt_event_delete
  864. 0x0000000080203884 rt_event_send
  865. 0x0000000080203ad4 rt_event_recv
  866. 0x0000000080203e74 rt_event_control
  867. 0x0000000080203f3c rt_mb_init
  868. 0x0000000080204008 rt_mb_detach
  869. 0x00000000802040d8 rt_mb_create
  870. 0x0000000080204214 rt_mb_delete
  871. 0x0000000080204340 rt_mb_send_wait
  872. 0x00000000802046e0 rt_mb_send
  873. 0x0000000080204714 rt_mb_urgent
  874. 0x00000000802048bc rt_mb_recv
  875. 0x0000000080204c98 rt_mb_control
  876. 0x0000000080204d88 rt_mq_init
  877. 0x0000000080204ef4 rt_mq_detach
  878. 0x0000000080204fc4 rt_mq_create
  879. 0x0000000080205194 rt_mq_delete
  880. 0x00000000802052c0 rt_mq_send_wait
  881. 0x0000000080205704 rt_mq_send
  882. 0x0000000080205740 rt_mq_urgent
  883. 0x0000000080205994 rt_mq_recv
  884. 0x0000000080205dfc rt_mq_control
  885. .text 0x0000000080205f40 0x17c build\kernel\src\irq.o
  886. 0x0000000080205f40 rt_interrupt_enter_sethook
  887. 0x0000000080205f70 rt_interrupt_leave_sethook
  888. 0x0000000080205fa0 rt_interrupt_enter
  889. 0x0000000080206010 rt_interrupt_leave
  890. 0x0000000080206080 rt_interrupt_get_nest
  891. .text 0x00000000802060bc 0x1df4 build\kernel\src\kservice.o
  892. 0x00000000802060bc rt_get_errno
  893. 0x0000000080206120 rt_set_errno
  894. 0x0000000080206190 _rt_errno
  895. 0x00000000802061ec rt_memset
  896. 0x000000008020634c rt_memcpy
  897. 0x00000000802064e4 rt_memmove
  898. 0x00000000802065e0 rt_memcmp
  899. 0x0000000080206688 rt_strstr
  900. 0x0000000080206734 rt_strcasecmp
  901. 0x00000000802067f0 rt_strncpy
  902. 0x00000000802068b0 rt_strncmp
  903. 0x0000000080206940 rt_strcmp
  904. 0x00000000802069c0 rt_strnlen
  905. 0x0000000080206a34 rt_strlen
  906. 0x0000000080206a88 rt_strdup
  907. 0x0000000080206aec rt_show_version
  908. 0x0000000080206fb4 rt_vsnprintf
  909. 0x000000008020787c rt_snprintf
  910. 0x00000000802078cc rt_vsprintf
  911. 0x0000000080207908 rt_sprintf
  912. 0x0000000080207950 rt_console_get_device
  913. 0x0000000080207974 rt_console_set_device
  914. 0x0000000080207a18 rt_hw_console_output
  915. 0x0000000080207a38 rt_kputs
  916. 0x0000000080207afc rt_kprintf
  917. 0x0000000080207bf0 rt_malloc_align
  918. 0x0000000080207ce8 rt_free_align
  919. 0x0000000080207d1c __rt_ffs
  920. 0x0000000080207df4 rt_assert_set_hook
  921. 0x0000000080207e24 rt_assert_handler
  922. .text 0x0000000080207eb0 0x1060 build\kernel\src\mem.o
  923. 0x0000000080207eb0 rt_malloc_sethook
  924. 0x0000000080207ee0 rt_free_sethook
  925. 0x000000008020811c rt_system_heap_init
  926. 0x0000000080208318 rt_malloc
  927. 0x0000000080208818 rt_realloc
  928. 0x0000000080208b20 rt_calloc
  929. 0x0000000080208b84 rt_free
  930. 0x0000000080208e24 rt_memory_info
  931. 0x0000000080208eac list_mem
  932. .text 0x0000000080208f10 0x9ec build\kernel\src\object.o
  933. 0x0000000080208fd0 rt_object_attach_sethook
  934. 0x0000000080209000 rt_object_detach_sethook
  935. 0x0000000080209030 rt_object_trytake_sethook
  936. 0x0000000080209060 rt_object_take_sethook
  937. 0x0000000080209090 rt_object_put_sethook
  938. 0x00000000802090c0 rt_object_get_information
  939. 0x0000000080209140 rt_object_get_length
  940. 0x00000000802091f4 rt_object_get_pointers
  941. 0x0000000080209300 rt_object_init
  942. 0x000000008020945c rt_object_detach
  943. 0x00000000802094f0 rt_object_allocate
  944. 0x0000000080209658 rt_object_delete
  945. 0x0000000080209720 rt_object_is_systemobject
  946. 0x0000000080209780 rt_object_get_type
  947. 0x00000000802097d0 rt_object_find
  948. .text 0x00000000802098fc 0x8f0 build\kernel\src\scheduler.o
  949. 0x0000000080209a34 rt_scheduler_sethook
  950. 0x0000000080209bc0 rt_system_scheduler_init
  951. 0x0000000080209c28 rt_system_scheduler_start
  952. 0x0000000080209c78 rt_schedule
  953. 0x0000000080209f2c rt_schedule_insert_thread
  954. 0x000000008020a038 rt_schedule_remove_thread
  955. 0x000000008020a0ec rt_enter_critical
  956. 0x000000008020a134 rt_exit_critical
  957. 0x000000008020a1c4 rt_critical_level
  958. .text 0x000000008020a1ec 0x1084 build\kernel\src\thread.o
  959. 0x000000008020a2e8 rt_thread_suspend_sethook
  960. 0x000000008020a318 rt_thread_resume_sethook
  961. 0x000000008020a348 rt_thread_inited_sethook
  962. 0x000000008020a3c4 rt_thread_exit
  963. 0x000000008020a608 rt_thread_init
  964. 0x000000008020a6c0 rt_thread_self
  965. 0x000000008020a6e4 rt_thread_startup
  966. 0x000000008020a7d8 rt_thread_detach
  967. 0x000000008020a918 rt_thread_create
  968. 0x000000008020a9c4 rt_thread_delete
  969. 0x000000008020aae4 rt_thread_yield
  970. 0x000000008020ab44 rt_thread_sleep
  971. 0x000000008020ac1c rt_thread_delay
  972. 0x000000008020ac44 rt_thread_delay_until
  973. 0x000000008020ada4 rt_thread_mdelay
  974. 0x000000008020add8 rt_thread_control
  975. 0x000000008020af50 rt_thread_suspend
  976. 0x000000008020b090 rt_thread_resume
  977. 0x000000008020b17c rt_thread_timeout
  978. 0x000000008020b244 rt_thread_find
  979. .text 0x000000008020b270 0xd80 build\kernel\src\timer.o
  980. 0x000000008020b3a8 rt_timer_enter_sethook
  981. 0x000000008020b3d8 rt_timer_exit_sethook
  982. 0x000000008020b590 rt_timer_init
  983. 0x000000008020b608 rt_timer_detach
  984. 0x000000008020b6e4 rt_timer_create
  985. 0x000000008020b750 rt_timer_delete
  986. 0x000000008020b82c rt_timer_start
  987. 0x000000008020bb6c rt_timer_stop
  988. 0x000000008020bc58 rt_timer_control
  989. 0x000000008020bda0 rt_timer_check
  990. 0x000000008020bf60 rt_timer_next_timeout_tick
  991. 0x000000008020bf80 rt_system_timer_init
  992. 0x000000008020bfd8 rt_system_timer_thread_init
  993. .text 0x000000008020bff0 0x178 build\kernel\libcpu\arm\am335x\cpu.o
  994. 0x000000008020c078 rt_hw_cpu_icache_enable
  995. 0x000000008020c090 rt_hw_cpu_icache_disable
  996. 0x000000008020c0a8 rt_hw_cpu_icache_status
  997. 0x000000008020c0c4 rt_hw_cpu_dcache_enable
  998. 0x000000008020c0dc rt_hw_cpu_dcache_disable
  999. 0x000000008020c0f4 rt_hw_cpu_dcache_status
  1000. 0x000000008020c110 rt_hw_cpu_shutdown
  1001. .text 0x000000008020c168 0x530 build\kernel\libcpu\arm\am335x\interrupt.o
  1002. 0x000000008020c168 rt_dump_aintc
  1003. 0x000000008020c2a8 rt_hw_interrupt_init
  1004. 0x000000008020c310 rt_hw_interrupt_mask
  1005. 0x000000008020c360 rt_hw_interrupt_umask
  1006. 0x000000008020c3b0 rt_hw_interrupt_control
  1007. 0x000000008020c428 rt_hw_interrupt_get_active
  1008. 0x000000008020c484 rt_hw_interrupt_ack
  1009. 0x000000008020c4ec rt_hw_interrupt_install
  1010. 0x000000008020c580 rt_hw_interrupt_trigger
  1011. 0x000000008020c5d0 rt_hw_interrupt_clear
  1012. 0x000000008020c620 rt_dump_isr_table
  1013. .text 0x000000008020c698 0x22c build\kernel\libcpu\arm\am335x\stack.o
  1014. 0x000000008020c698 rt_hw_stack_init
  1015. .text 0x000000008020c8c4 0x374 build\kernel\libcpu\arm\am335x\trap.o
  1016. 0x000000008020c8c4 rt_hw_show_register
  1017. 0x000000008020c9d4 rt_hw_trap_udef
  1018. 0x000000008020ca2c rt_hw_trap_swi
  1019. 0x000000008020ca60 rt_hw_trap_pabt
  1020. 0x000000008020cab8 rt_hw_trap_dabt
  1021. 0x000000008020cb10 rt_hw_trap_irq
  1022. 0x000000008020cbc4 rt_hw_trap_fiq
  1023. .text 0x000000008020cc38 0x90 build\kernel\libcpu\arm\am335x\context_gcc.o
  1024. 0x000000008020cc38 rt_hw_interrupt_disable
  1025. 0x000000008020cc44 rt_hw_interrupt_enable
  1026. 0x000000008020cc4c rt_hw_context_switch
  1027. 0x000000008020cc78 rt_hw_context_switch_to
  1028. 0x000000008020cc90 rt_hw_context_switch_interrupt
  1029. .text 0x000000008020ccc8 0x13c build\kernel\libcpu\arm\am335x\cp15_gcc.o
  1030. 0x000000008020ccc8 rt_cpu_vector_set_base
  1031. 0x000000008020ccd4 rt_cpu_vector_get_base
  1032. 0x000000008020ccdc rt_cpu_get_sctlr
  1033. 0x000000008020cce4 rt_cpu_dcache_enable
  1034. 0x000000008020ccf4 rt_cpu_icache_enable
  1035. 0x000000008020cd0c rt_cpu_dcache_clean_flush
  1036. 0x000000008020cda0 rt_cpu_dcache_disable
  1037. 0x000000008020cdbc rt_cpu_icache_disable
  1038. 0x000000008020cdcc rt_cpu_mmu_disable
  1039. 0x000000008020cde4 rt_cpu_mmu_enable
  1040. 0x000000008020cdf8 rt_cpu_tlb_set
  1041. *fill* 0x000000008020ce04 0x1c 00000000
  1042. .text 0x000000008020ce20 0x1270 build\kernel\libcpu\arm\am335x\start_gcc.o
  1043. 0x000000008020ce20 stack_start
  1044. 0x000000008020de20 stack_top
  1045. 0x000000008020de20 _reset
  1046. 0x000000008020dee0 vector_undef
  1047. 0x000000008020df40 vector_swi
  1048. 0x000000008020df60 vector_pabt
  1049. 0x000000008020df80 vector_dabt
  1050. 0x000000008020dfc0 vector_resv
  1051. 0x000000008020dfe0 vector_fiq
  1052. 0x000000008020dff0 vector_irq
  1053. .text 0x000000008020e090 0xe34 build\kernel\components\dfs\src\dfs.o
  1054. 0x000000008020e090 dfs_init
  1055. 0x000000008020e184 dfs_lock
  1056. 0x000000008020e1ec dfs_unlock
  1057. 0x000000008020e41c fd_new
  1058. 0x000000008020e4d8 fd_get
  1059. 0x000000008020e59c fd_put
  1060. 0x000000008020e68c fd_is_open
  1061. 0x000000008020e820 dfs_subdir
  1062. 0x000000008020e8b0 dfs_normalize_path
  1063. 0x000000008020ec7c dfs_fdtable_get
  1064. 0x000000008020eca8 list_fd
  1065. .text 0x000000008020eec4 0x1474 build\kernel\components\dfs\src\dfs_file.o
  1066. 0x000000008020eec4 dfs_file_open
  1067. 0x000000008020f104 dfs_file_close
  1068. 0x000000008020f19c dfs_file_ioctl
  1069. 0x000000008020f2b0 dfs_file_read
  1070. 0x000000008020f350 dfs_file_getdents
  1071. 0x000000008020f3d4 dfs_file_unlink
  1072. 0x000000008020f534 dfs_file_write
  1073. 0x000000008020f5a8 dfs_file_flush
  1074. 0x000000008020f60c dfs_file_lseek
  1075. 0x000000008020f694 dfs_file_stat
  1076. 0x000000008020f890 dfs_file_rename
  1077. 0x000000008020fa0c dfs_file_ftruncate
  1078. 0x000000008020fabc ls
  1079. 0x000000008020fc78 rm
  1080. 0x000000008020fcb8 cat
  1081. 0x000000008021011c copy
  1082. .text 0x0000000080210338 0xf5c build\kernel\components\dfs\src\dfs_fs.o
  1083. 0x0000000080210338 dfs_register
  1084. 0x0000000080210470 dfs_filesystem_lookup
  1085. 0x00000000802105c8 dfs_filesystem_get_mounted_path
  1086. 0x0000000080210660 dfs_filesystem_get_partition
  1087. 0x00000000802108b8 dfs_mount
  1088. 0x0000000080210c5c dfs_unmount
  1089. 0x0000000080210dd4 dfs_mkfs
  1090. 0x0000000080210f7c dfs_statfs
  1091. 0x0000000080210fec mkfs
  1092. 0x0000000080211018 df
  1093. .text 0x0000000080211294 0xe0c build\kernel\components\dfs\src\dfs_posix.o
  1094. 0x0000000080211294 open
  1095. 0x0000000080211338 close
  1096. 0x00000000802113b8 read
  1097. 0x0000000080211448 write
  1098. 0x00000000802114d8 lseek
  1099. 0x00000000802115f4 rename
  1100. 0x0000000080211644 unlink
  1101. 0x000000008021168c stat
  1102. 0x00000000802116dc fstat
  1103. 0x00000000802117a8 fsync
  1104. 0x0000000080211804 fcntl
  1105. 0x00000000802118b0 ioctl
  1106. 0x0000000080211908 ftruncate
  1107. 0x00000000802119b4 statfs
  1108. 0x0000000080211a04 mkdir
  1109. 0x0000000080211ab4 rmdir
  1110. 0x0000000080211afc opendir
  1111. 0x0000000080211be4 readdir
  1112. 0x0000000080211d10 telldir
  1113. 0x0000000080211d8c seekdir
  1114. 0x0000000080211e10 rewinddir
  1115. 0x0000000080211e90 closedir
  1116. 0x0000000080211f20 chdir
  1117. 0x0000000080212018 access
  1118. 0x0000000080212060 getcwd
  1119. .text 0x00000000802120a0 0x8b8 build\kernel\components\dfs\filesystems\devfs\devfs.o
  1120. 0x00000000802120a0 dfs_device_fs_mount
  1121. 0x00000000802120cc dfs_device_fs_ioctl
  1122. 0x0000000080212170 dfs_device_fs_read
  1123. 0x0000000080212224 dfs_device_fs_write
  1124. 0x00000000802122d8 dfs_device_fs_close
  1125. 0x00000000802123c8 dfs_device_fs_open
  1126. 0x00000000802125f4 dfs_device_fs_stat
  1127. 0x0000000080212790 dfs_device_fs_getdents
  1128. 0x0000000080212938 devfs_init
  1129. .text 0x0000000080212958 0x6a8 build\kernel\components\drivers\misc\pin.o
  1130. 0x0000000080212b48 rt_device_pin_register
  1131. 0x0000000080212c40 rt_pin_attach_irq
  1132. 0x0000000080212ce8 rt_pin_detach_irq
  1133. 0x0000000080212d74 rt_pin_irq_enable
  1134. 0x0000000080212e08 rt_pin_mode
  1135. 0x0000000080212e78 rt_pin_write
  1136. 0x0000000080212ee8 rt_pin_read
  1137. 0x0000000080212f54 rt_pin_get
  1138. .text 0x0000000080213000 0x1e68 build\kernel\components\drivers\serial\serial.o
  1139. 0x0000000080214944 rt_hw_serial_register
  1140. 0x0000000080214a48 rt_hw_serial_isr
  1141. .text 0x0000000080214e68 0x394 build\kernel\components\drivers\src\completion.o
  1142. 0x0000000080214f3c rt_completion_init
  1143. 0x0000000080214fa8 rt_completion_wait
  1144. 0x0000000080215148 rt_completion_done
  1145. .text 0x00000000802151fc 0xdd0 build\kernel\components\drivers\src\dataqueue.o
  1146. 0x00000000802152d0 rt_data_queue_init
  1147. 0x0000000080215414 rt_data_queue_push
  1148. 0x0000000080215758 rt_data_queue_pop
  1149. 0x0000000080215b40 rt_data_queue_peek
  1150. 0x0000000080215c4c rt_data_queue_reset
  1151. 0x0000000080215dd8 rt_data_queue_deinit
  1152. 0x0000000080215e88 rt_data_queue_len
  1153. .text 0x0000000080215fcc 0x1998 build\kernel\components\finsh\shell.o
  1154. 0x0000000080215fcc finsh_set_prompt
  1155. 0x0000000080216084 finsh_get_prompt
  1156. 0x00000000802161e4 finsh_get_prompt_mode
  1157. 0x0000000080216238 finsh_set_prompt_mode
  1158. 0x00000000802163a0 finsh_set_device
  1159. 0x000000008021652c finsh_get_device
  1160. 0x0000000080216578 finsh_set_echo
  1161. 0x00000000802165e4 finsh_get_echo
  1162. 0x00000000802166a0 finsh_run_line
  1163. 0x0000000080216a88 finsh_thread_entry
  1164. 0x00000000802177d0 finsh_system_function_init
  1165. 0x0000000080217814 finsh_system_var_init
  1166. 0x0000000080217858 finsh_system_init
  1167. .text 0x0000000080217964 0x1c14 build\kernel\components\finsh\cmd.o
  1168. 0x0000000080217a04 hello
  1169. 0x0000000080217a44 version
  1170. 0x0000000080217c98 list_thread
  1171. 0x0000000080217fe0 list_sem
  1172. 0x00000000802181c4 list_event
  1173. 0x0000000080218388 list_mutex
  1174. 0x0000000080218504 list_mailbox
  1175. 0x0000000080218708 list_msgqueue
  1176. 0x00000000802188ec list_mempool
  1177. 0x0000000080218b0c list_timer
  1178. 0x0000000080218ca8 list_device
  1179. 0x0000000080218e28 list
  1180. 0x00000000802190d4 list_prefix
  1181. .text 0x0000000080219578 0xde8 build\kernel\components\finsh\msh.o
  1182. 0x0000000080219578 msh_is_used
  1183. 0x0000000080219600 msh_help
  1184. 0x00000000802196c8 cmd_ps
  1185. 0x00000000802196f0 cmd_free
  1186. 0x0000000080219c24 msh_exec
  1187. 0x0000000080219dc4 msh_auto_complete_path
  1188. 0x000000008021a198 msh_auto_complete
  1189. .text 0x000000008021a360 0x1000 build\kernel\components\finsh\msh_file.o
  1190. 0x000000008021a490 msh_exec_script
  1191. 0x000000008021a714 cmd_ls
  1192. 0x000000008021a768 cmd_cp
  1193. 0x000000008021a7d8 cmd_mv
  1194. 0x000000008021a9e8 cmd_cat
  1195. 0x000000008021ac94 cmd_rm
  1196. 0x000000008021af98 cmd_cd
  1197. 0x000000008021b028 cmd_pwd
  1198. 0x000000008021b060 cmd_mkdir
  1199. 0x000000008021b0c4 cmd_mkfs
  1200. 0x000000008021b1b8 cmd_df
  1201. 0x000000008021b26c cmd_echo
  1202. .text 0x000000008021b360 0x3c40 build\kernel\components\finsh\finsh_compiler.o
  1203. 0x000000008021eea8 finsh_compiler_run
  1204. .text 0x000000008021efa0 0xbc build\kernel\components\finsh\finsh_error.o
  1205. 0x000000008021efa0 finsh_error_init
  1206. 0x000000008021efcc finsh_error_set
  1207. 0x000000008021f004 finsh_errno
  1208. 0x000000008021f028 finsh_error_string
  1209. .text 0x000000008021f05c 0x6d8 build\kernel\components\finsh\finsh_heap.o
  1210. 0x000000008021f05c finsh_heap_init
  1211. 0x000000008021f0d0 finsh_heap_allocate
  1212. 0x000000008021f200 finsh_heap_free
  1213. .text 0x000000008021f734 0xbc build\kernel\components\finsh\finsh_init.o
  1214. 0x000000008021f734 finsh_init
  1215. 0x000000008021f76c finsh_stack_bottom
  1216. 0x000000008021f790 finsh_flush
  1217. 0x000000008021f7c0 finsh_reset
  1218. .text 0x000000008021f7f0 0x424 build\kernel\components\finsh\finsh_node.o
  1219. 0x000000008021f7f0 finsh_node_init
  1220. 0x000000008021f818 finsh_node_allocate
  1221. 0x000000008021f8d8 finsh_node_new_id
  1222. 0x000000008021fa10 finsh_node_new_char
  1223. 0x000000008021fa68 finsh_node_new_int
  1224. 0x000000008021fabc finsh_node_new_long
  1225. 0x000000008021fb10 finsh_node_new_string
  1226. 0x000000008021fbc0 finsh_node_new_ptr
  1227. .text 0x000000008021fc14 0x1c6c build\kernel\components\finsh\finsh_ops.o
  1228. 0x000000008021fc14 OP_no_op
  1229. 0x000000008021fc2c OP_add_byte
  1230. 0x000000008021fca4 OP_add_word
  1231. 0x000000008021fd28 OP_add_dword
  1232. 0x000000008021fd9c OP_sub_byte
  1233. 0x000000008021fe14 OP_sub_word
  1234. 0x000000008021fe98 OP_sub_dword
  1235. 0x000000008021ff0c OP_div_byte
  1236. 0x000000008021ff84 OP_div_word
  1237. 0x0000000080220008 OP_div_dword
  1238. 0x000000008022007c OP_mod_byte
  1239. 0x00000000802200f4 OP_mod_word
  1240. 0x0000000080220178 OP_mod_dword
  1241. 0x00000000802201ec OP_mul_byte
  1242. 0x0000000080220264 OP_mul_word
  1243. 0x00000000802202e8 OP_mul_dword
  1244. 0x000000008022035c OP_and_byte
  1245. 0x00000000802203d4 OP_and_word
  1246. 0x000000008022044c OP_and_dword
  1247. 0x00000000802204c0 OP_or_byte
  1248. 0x0000000080220538 OP_or_word
  1249. 0x00000000802205b0 OP_or_dword
  1250. 0x0000000080220624 OP_xor_byte
  1251. 0x000000008022069c OP_xor_word
  1252. 0x0000000080220714 OP_xor_dword
  1253. 0x0000000080220788 OP_bw_byte
  1254. 0x00000000802207d0 OP_bw_word
  1255. 0x0000000080220818 OP_bw_dword
  1256. 0x000000008022085c OP_shl_byte
  1257. 0x00000000802208d8 OP_shl_word
  1258. 0x0000000080220954 OP_shl_dword
  1259. 0x00000000802209c8 OP_shr_byte
  1260. 0x0000000080220a44 OP_shr_word
  1261. 0x0000000080220ac0 OP_shr_dword
  1262. 0x0000000080220b34 OP_ld_byte
  1263. 0x0000000080220ba4 OP_ld_word
  1264. 0x0000000080220c3c OP_ld_dword
  1265. 0x0000000080220d04 OP_ld_value_byte
  1266. 0x0000000080220ddc OP_ld_value_byte_stack
  1267. 0x0000000080220e2c OP_ld_value_word
  1268. 0x0000000080220f04 OP_ld_value_word_stack
  1269. 0x0000000080220f54 OP_ld_value_dword
  1270. 0x000000008022102c OP_ld_value_dword_stack
  1271. 0x000000008022107c OP_st_byte
  1272. 0x00000000802210dc OP_st_word
  1273. 0x0000000080221140 OP_st_dword
  1274. 0x00000000802211a4 OP_pop
  1275. 0x00000000802211d8 OP_call
  1276. .text 0x0000000080221880 0x1748 build\kernel\components\finsh\finsh_parser.o
  1277. 0x0000000080222d24 finsh_parser_run
  1278. 0x0000000080222f98 finsh_parser_init
  1279. .text 0x0000000080222fc8 0x468 build\kernel\components\finsh\finsh_var.o
  1280. 0x0000000080222fc8 finsh_var_init
  1281. 0x0000000080222ff0 finsh_var_insert
  1282. 0x0000000080223120 finsh_var_delete
  1283. 0x00000000802231dc finsh_var_lookup
  1284. 0x0000000080223284 finsh_sysvar_append
  1285. 0x0000000080223348 finsh_sysvar_lookup
  1286. .text 0x0000000080223430 0x25c build\kernel\components\finsh\finsh_vm.o
  1287. 0x0000000080223430 finsh_vm_run
  1288. 0x00000000802234f4 finsh_syscall_append
  1289. 0x00000000802235a4 finsh_syscall_lookup
  1290. .text 0x000000008022368c 0x12b4 build\kernel\components\finsh\finsh_token.o
  1291. 0x000000008022368c finsh_token_init
  1292. 0x00000000802236c8 finsh_token_token
  1293. 0x0000000080223714 finsh_token_get_token
  1294. 0x000000008022374c token_get_string
  1295. .text 0x0000000080224940 0x58 build\kernel\components\libc\compilers\newlib\libc.o
  1296. 0x0000000080224940 libc_system_init
  1297. .text 0x0000000080224998 0x23c build\kernel\components\libc\compilers\newlib\stdio.o
  1298. 0x0000000080224998 libc_stdio_set_console
  1299. 0x0000000080224b90 libc_stdio_get_console
  1300. .text 0x0000000080224bd4 0x92c build\kernel\components\libc\compilers\newlib\syscalls.o
  1301. 0x0000000080224bd4 __errno
  1302. 0x0000000080224bec _close_r
  1303. 0x0000000080224c18 _execve_r
  1304. 0x0000000080224c54 _fcntl_r
  1305. 0x0000000080224c90 _fork_r
  1306. 0x0000000080224cc0 _fstat_r
  1307. 0x0000000080224cf8 _getpid_r
  1308. 0x0000000080224d1c _isatty_r
  1309. 0x0000000080224d70 _kill_r
  1310. 0x0000000080224da8 _link_r
  1311. 0x0000000080224de0 _lseek_r
  1312. 0x0000000080224e20 _mkdir_r
  1313. 0x0000000080224e5c _open_r
  1314. 0x0000000080224e9c _read_r
  1315. 0x0000000080224edc _rename_r
  1316. 0x0000000080224f14 _sbrk_r
  1317. 0x0000000080224f3c _stat_r
  1318. 0x0000000080224f74 _times_r
  1319. 0x0000000080224fa8 _unlink_r
  1320. 0x0000000080224fd8 _wait_r
  1321. 0x000000008022500c _write_r
  1322. 0x000000008022512c libc_get_time
  1323. 0x0000000080225228 _gettimeofday_r
  1324. 0x00000000802252bc _malloc_r
  1325. 0x0000000080225304 _realloc_r
  1326. 0x0000000080225354 _calloc_r
  1327. 0x00000000802253a4 _free_r
  1328. 0x00000000802253cc exit
  1329. 0x0000000080225414 _system
  1330. 0x0000000080225434 __libc_init_array
  1331. 0x000000008022544c abort
  1332. 0x0000000080225498 getuid
  1333. 0x00000000802254b4 umask
  1334. 0x00000000802254d8 flock
  1335. .text 0x0000000080225500 0x14 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcmp.o)
  1336. 0x0000000080225500 strcmp
  1337. .text 0x0000000080225514 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strlen.o)
  1338. 0x0000000080225514 strlen
  1339. *fill* 0x0000000080225524 0x4 00000000
  1340. .text 0x0000000080225528 0x278 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  1341. 0x0000000080225528 __aeabi_uidiv
  1342. 0x0000000080225528 __udivsi3
  1343. 0x0000000080225784 __aeabi_uidivmod
  1344. .text 0x00000000802257a0 0x2b0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  1345. 0x00000000802257a0 __divsi3
  1346. 0x00000000802257a0 __aeabi_idiv
  1347. 0x0000000080225a34 __aeabi_idivmod
  1348. .text 0x0000000080225a50 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_dvmd_tls.o)
  1349. 0x0000000080225a50 __aeabi_idiv0
  1350. 0x0000000080225a50 __aeabi_ldiv0
  1351. .text 0x0000000080225a54 0x30 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  1352. 0x0000000080225a54 __aeabi_uldivmod
  1353. .text 0x0000000080225a84 0x144 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  1354. 0x0000000080225a84 __udivmoddi4
  1355. *(.text.*)
  1356. .text.atoi 0x0000000080225bc8 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  1357. 0x0000000080225bc8 atoi
  1358. .text._fclose_r
  1359. 0x0000000080225bd0 0xae c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  1360. 0x0000000080225bd0 _fclose_r
  1361. *fill* 0x0000000080225c7e 0x2 00000000
  1362. .text.fclose 0x0000000080225c80 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  1363. 0x0000000080225c80 fclose
  1364. .text.__sflush_r
  1365. 0x0000000080225c90 0x120 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  1366. 0x0000000080225c90 __sflush_r
  1367. .text._fflush_r
  1368. 0x0000000080225db0 0x4a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  1369. 0x0000000080225db0 _fflush_r
  1370. *fill* 0x0000000080225dfa 0x2 00000000
  1371. .text.fflush 0x0000000080225dfc 0x24 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  1372. 0x0000000080225dfc fflush
  1373. .text.fileno 0x0000000080225e20 0x54 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  1374. 0x0000000080225e20 fileno
  1375. .text.std 0x0000000080225e74 0x54 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1376. .text._cleanup_r
  1377. 0x0000000080225ec8 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1378. 0x0000000080225ec8 _cleanup_r
  1379. .text.__sfmoreglue
  1380. 0x0000000080225ed4 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1381. 0x0000000080225ed4 __sfmoreglue
  1382. .text.__sfp_lock_acquire
  1383. 0x0000000080225f00 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1384. 0x0000000080225f00 __sfp_lock_acquire
  1385. .text.__sfp_lock_release
  1386. 0x0000000080225f0c 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1387. 0x0000000080225f0c __sfp_lock_release
  1388. .text.__sinit_lock_acquire
  1389. 0x0000000080225f18 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1390. 0x0000000080225f18 __sinit_lock_acquire
  1391. .text.__sinit_lock_release
  1392. 0x0000000080225f24 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1393. 0x0000000080225f24 __sinit_lock_release
  1394. .text.__sinit 0x0000000080225f30 0x50 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1395. 0x0000000080225f30 __sinit
  1396. .text.__sfp 0x0000000080225f80 0x8c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  1397. 0x0000000080225f80 __sfp
  1398. .text._fopen_r
  1399. 0x000000008022600c 0xa8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  1400. 0x000000008022600c _fopen_r
  1401. .text.fopen 0x00000000802260b4 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  1402. 0x00000000802260b4 fopen
  1403. .text._fseek_r
  1404. 0x00000000802260c4 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  1405. 0x00000000802260c4 _fseek_r
  1406. .text._fseeko_r
  1407. 0x00000000802260c8 0x2b0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  1408. 0x00000000802260c8 _fseeko_r
  1409. .text._fwalk 0x0000000080226378 0x38 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  1410. 0x0000000080226378 _fwalk
  1411. .text._fwalk_reent
  1412. 0x00000000802263b0 0x3c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  1413. 0x00000000802263b0 _fwalk_reent
  1414. .text.__retarget_lock_init_recursive
  1415. 0x00000000802263ec 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  1416. 0x00000000802263ec __retarget_lock_init_recursive
  1417. .text.__retarget_lock_close_recursive
  1418. 0x00000000802263ee 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  1419. 0x00000000802263ee __retarget_lock_close_recursive
  1420. .text.__retarget_lock_acquire_recursive
  1421. 0x00000000802263f0 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  1422. 0x00000000802263f0 __retarget_lock_acquire_recursive
  1423. .text.__retarget_lock_release_recursive
  1424. 0x00000000802263f2 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  1425. 0x00000000802263f2 __retarget_lock_release_recursive
  1426. .text.__swhatbuf_r
  1427. 0x00000000802263f4 0x56 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  1428. 0x00000000802263f4 __swhatbuf_r
  1429. *fill* 0x000000008022644a 0x2 00000000
  1430. .text.__smakebuf_r
  1431. 0x000000008022644c 0x80 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  1432. 0x000000008022644c __smakebuf_r
  1433. .text.memcmp 0x00000000802264cc 0x1e c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  1434. 0x00000000802264cc memcmp
  1435. .text.memcpy 0x00000000802264ea 0x16 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  1436. 0x00000000802264ea memcpy
  1437. .text.memset 0x0000000080226500 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  1438. 0x0000000080226500 memset
  1439. .text.putenv 0x0000000080226510 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  1440. 0x0000000080226510 putenv
  1441. .text._putenv_r
  1442. 0x0000000080226520 0x40 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  1443. 0x0000000080226520 _putenv_r
  1444. .text._puts_r 0x0000000080226560 0x8c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  1445. 0x0000000080226560 _puts_r
  1446. .text.puts 0x00000000802265ec 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  1447. 0x00000000802265ec puts
  1448. .text.lflush 0x00000000802265fc 0x12 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  1449. *fill* 0x000000008022660e 0x2 00000000
  1450. .text.__srefill_r
  1451. 0x0000000080226610 0x104 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  1452. 0x0000000080226610 __srefill_r
  1453. .text._setenv_r
  1454. 0x0000000080226714 0x138 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  1455. 0x0000000080226714 _setenv_r
  1456. .text.setvbuf 0x000000008022684c 0x168 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  1457. 0x000000008022684c setvbuf
  1458. .text.snprintf
  1459. 0x00000000802269b4 0x68 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  1460. 0x00000000802269b4 snprintf
  1461. .text.__sread 0x0000000080226a1c 0x22 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  1462. 0x0000000080226a1c __sread
  1463. .text.__swrite
  1464. 0x0000000080226a3e 0x38 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  1465. 0x0000000080226a3e __swrite
  1466. .text.__sseek 0x0000000080226a76 0x24 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  1467. 0x0000000080226a76 __sseek
  1468. .text.__sclose
  1469. 0x0000000080226a9a 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  1470. 0x0000000080226a9a __sclose
  1471. .text.strchr 0x0000000080226aa2 0x1a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  1472. 0x0000000080226aa2 strchr
  1473. .text.strcpy 0x0000000080226abc 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  1474. 0x0000000080226abc strcpy
  1475. .text._strdup_r
  1476. 0x0000000080226acc 0x26 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  1477. 0x0000000080226acc _strdup_r
  1478. .text.strncmp 0x0000000080226af2 0x24 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  1479. 0x0000000080226af2 strncmp
  1480. .text.strncpy 0x0000000080226b16 0x2a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  1481. 0x0000000080226b16 strncpy
  1482. .text.strrchr 0x0000000080226b40 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  1483. 0x0000000080226b40 strrchr
  1484. .text.strstr 0x0000000080226b68 0x34 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  1485. 0x0000000080226b68 strstr
  1486. .text._strtol_l.isra.0
  1487. 0x0000000080226b9c 0x10a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  1488. *fill* 0x0000000080226ca6 0x2 00000000
  1489. .text.strtol 0x0000000080226ca8 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  1490. 0x0000000080226ca8 strtol
  1491. *fill* 0x0000000080226cd4 0x4 00000000
  1492. .text._svfprintf_r
  1493. 0x0000000080226cd8 0x13e8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  1494. 0x0000000080226cd8 _svfprintf_r
  1495. .text.quorem 0x00000000802280c0 0x124 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  1496. *fill* 0x00000000802281e4 0x4 00000000
  1497. .text._dtoa_r 0x00000000802281e8 0xa6c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  1498. 0x00000000802281e8 _dtoa_r
  1499. .text.__env_lock
  1500. 0x0000000080228c54 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  1501. 0x0000000080228c54 __env_lock
  1502. .text.__env_unlock
  1503. 0x0000000080228c60 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  1504. 0x0000000080228c60 __env_unlock
  1505. .text.__sflags
  1506. 0x0000000080228c6c 0x6a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  1507. 0x0000000080228c6c __sflags
  1508. *fill* 0x0000000080228cd6 0x2 00000000
  1509. .text.__sfvwrite_r
  1510. 0x0000000080228cd8 0x2a4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  1511. 0x0000000080228cd8 __sfvwrite_r
  1512. .text._findenv_r
  1513. 0x0000000080228f7c 0x78 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  1514. 0x0000000080228f7c _findenv_r
  1515. .text.__locale_ctype_ptr_l
  1516. 0x0000000080228ff4 0x6 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  1517. 0x0000000080228ff4 __locale_ctype_ptr_l
  1518. *fill* 0x0000000080228ffa 0x2 00000000
  1519. .text._localeconv_r
  1520. 0x0000000080228ffc 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  1521. 0x0000000080228ffc _localeconv_r
  1522. .text.malloc 0x0000000080229018 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  1523. 0x0000000080229018 malloc
  1524. .text.__ascii_mbtowc
  1525. 0x0000000080229028 0x24 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  1526. 0x0000000080229028 __ascii_mbtowc
  1527. .text.memchr 0x000000008022904c 0x1c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  1528. 0x000000008022904c memchr
  1529. .text.memmove 0x0000000080229068 0x32 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  1530. 0x0000000080229068 memmove
  1531. .text._Balloc 0x000000008022909a 0x4a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1532. 0x000000008022909a _Balloc
  1533. .text._Bfree 0x00000000802290e4 0x12 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1534. 0x00000000802290e4 _Bfree
  1535. .text.__multadd
  1536. 0x00000000802290f6 0x7a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1537. 0x00000000802290f6 __multadd
  1538. .text.__hi0bits
  1539. 0x0000000080229170 0x3e c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1540. 0x0000000080229170 __hi0bits
  1541. .text.__lo0bits
  1542. 0x00000000802291ae 0x5e c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1543. 0x00000000802291ae __lo0bits
  1544. .text.__i2b 0x000000008022920c 0x12 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1545. 0x000000008022920c __i2b
  1546. .text.__multiply
  1547. 0x000000008022921e 0x12c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1548. 0x000000008022921e __multiply
  1549. *fill* 0x000000008022934a 0x2 00000000
  1550. .text.__pow5mult
  1551. 0x000000008022934c 0x80 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1552. 0x000000008022934c __pow5mult
  1553. .text.__lshift
  1554. 0x00000000802293cc 0xa8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1555. 0x00000000802293cc __lshift
  1556. .text.__mcmp 0x0000000080229474 0x34 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1557. 0x0000000080229474 __mcmp
  1558. .text.__mdiff 0x00000000802294a8 0xc0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1559. 0x00000000802294a8 __mdiff
  1560. .text.__d2b 0x0000000080229568 0x9e c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1561. 0x0000000080229568 __d2b
  1562. *fill* 0x0000000080229606 0x2 00000000
  1563. .text.frexp 0x0000000080229608 0x7c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  1564. 0x0000000080229608 frexp
  1565. .text.__ssprint_r
  1566. 0x0000000080229684 0xf0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  1567. 0x0000000080229684 __ssprint_r
  1568. .text.__ascii_wctomb
  1569. 0x0000000080229774 0x1a c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  1570. 0x0000000080229774 __ascii_wctomb
  1571. *fill* 0x000000008022978e 0x2 00000000
  1572. .text.__swsetup_r
  1573. 0x0000000080229790 0xb0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  1574. 0x0000000080229790 __swsetup_r
  1575. .text.__swsetup_r.__stub
  1576. 0x0000000080229840 0x18 linker stubs
  1577. 0x0000000080229858 . = ALIGN (0x4)
  1578. 0x0000000080229858 __fsymtab_start = .
  1579. *(FSymTab)
  1580. FSymTab 0x0000000080229858 0x18 build\applications\board.o
  1581. 0x0000000080229858 __fsym_reboot
  1582. 0x0000000080229864 __fsym___cmd_reboot
  1583. FSymTab 0x0000000080229870 0xc build\kernel\src\mem.o
  1584. 0x0000000080229870 __fsym_list_mem
  1585. FSymTab 0x000000008022987c 0xc build\kernel\components\dfs\src\dfs.o
  1586. 0x000000008022987c __fsym___cmd_list_fd
  1587. FSymTab 0x0000000080229888 0x30 build\kernel\components\dfs\src\dfs_file.o
  1588. 0x0000000080229888 __fsym_ls
  1589. 0x0000000080229894 __fsym_rm
  1590. 0x00000000802298a0 __fsym_cat
  1591. 0x00000000802298ac __fsym_copy
  1592. FSymTab 0x00000000802298b8 0x18 build\kernel\components\dfs\src\dfs_fs.o
  1593. 0x00000000802298b8 __fsym_mkfs
  1594. 0x00000000802298c4 __fsym_df
  1595. FSymTab 0x00000000802298d0 0x18 build\kernel\components\dfs\src\dfs_posix.o
  1596. 0x00000000802298d0 __fsym_mkdir
  1597. 0x00000000802298dc __fsym_cd
  1598. FSymTab 0x00000000802298e8 0x30 build\kernel\components\drivers\misc\pin.o
  1599. 0x00000000802298e8 __fsym_pinMode
  1600. 0x00000000802298f4 __fsym_pinWrite
  1601. 0x0000000080229900 __fsym_pinRead
  1602. 0x000000008022990c __fsym_pinGet
  1603. FSymTab 0x0000000080229918 0x120 build\kernel\components\finsh\cmd.o
  1604. 0x0000000080229918 __fsym_hello
  1605. 0x0000000080229924 __fsym_clear
  1606. 0x0000000080229930 __fsym___cmd_clear
  1607. 0x000000008022993c __fsym_version
  1608. 0x0000000080229948 __fsym___cmd_version
  1609. 0x0000000080229954 __fsym_list_thread
  1610. 0x0000000080229960 __fsym___cmd_list_thread
  1611. 0x000000008022996c __fsym_list_sem
  1612. 0x0000000080229978 __fsym___cmd_list_sem
  1613. 0x0000000080229984 __fsym_list_event
  1614. 0x0000000080229990 __fsym___cmd_list_event
  1615. 0x000000008022999c __fsym_list_mutex
  1616. 0x00000000802299a8 __fsym___cmd_list_mutex
  1617. 0x00000000802299b4 __fsym_list_mailbox
  1618. 0x00000000802299c0 __fsym___cmd_list_mailbox
  1619. 0x00000000802299cc __fsym_list_msgqueue
  1620. 0x00000000802299d8 __fsym___cmd_list_msgqueue
  1621. 0x00000000802299e4 __fsym_list_mempool
  1622. 0x00000000802299f0 __fsym___cmd_list_mempool
  1623. 0x00000000802299fc __fsym_list_timer
  1624. 0x0000000080229a08 __fsym___cmd_list_timer
  1625. 0x0000000080229a14 __fsym_list_device
  1626. 0x0000000080229a20 __fsym___cmd_list_device
  1627. 0x0000000080229a2c __fsym_list
  1628. FSymTab 0x0000000080229a38 0x3c build\kernel\components\finsh\msh.o
  1629. 0x0000000080229a38 __fsym___cmd_exit
  1630. 0x0000000080229a44 __fsym_msh
  1631. 0x0000000080229a50 __fsym___cmd_help
  1632. 0x0000000080229a5c __fsym___cmd_ps
  1633. 0x0000000080229a68 __fsym___cmd_free
  1634. FSymTab 0x0000000080229a74 0x84 build\kernel\components\finsh\msh_file.o
  1635. 0x0000000080229a74 __fsym___cmd_ls
  1636. 0x0000000080229a80 __fsym___cmd_cp
  1637. 0x0000000080229a8c __fsym___cmd_mv
  1638. 0x0000000080229a98 __fsym___cmd_cat
  1639. 0x0000000080229aa4 __fsym___cmd_rm
  1640. 0x0000000080229ab0 __fsym___cmd_cd
  1641. 0x0000000080229abc __fsym___cmd_pwd
  1642. 0x0000000080229ac8 __fsym___cmd_mkdir
  1643. 0x0000000080229ad4 __fsym___cmd_mkfs
  1644. 0x0000000080229ae0 __fsym___cmd_df
  1645. 0x0000000080229aec __fsym___cmd_echo
  1646. 0x0000000080229af8 __fsymtab_end = .
  1647. 0x0000000080229af8 . = ALIGN (0x4)
  1648. 0x0000000080229af8 __vsymtab_start = .
  1649. *(VSymTab)
  1650. VSymTab 0x0000000080229af8 0x10 build\kernel\components\finsh\cmd.o
  1651. 0x0000000080229af8 __vsym_dummy
  1652. 0x0000000080229b08 __vsymtab_end = .
  1653. 0x0000000080229b08 . = ALIGN (0x4)
  1654. 0x0000000080229b08 . = ALIGN (0x4)
  1655. 0x0000000080229b08 __rtmsymtab_start = .
  1656. *(RTMSymTab)
  1657. 0x0000000080229b08 __rtmsymtab_end = .
  1658. 0x0000000080229b08 . = ALIGN (0x4)
  1659. 0x0000000080229b08 __rt_init_start = .
  1660. *(SORT_BY_NAME(.rti_fn*))
  1661. .rti_fn.0 0x0000000080229b08 0x4 build\kernel\src\components.o
  1662. 0x0000000080229b08 __rt_init_rti_start
  1663. .rti_fn.0.end 0x0000000080229b0c 0x4 build\kernel\src\components.o
  1664. 0x0000000080229b0c __rt_init_rti_board_start
  1665. .rti_fn.1 0x0000000080229b10 0x4 build\applications\board.o
  1666. 0x0000000080229b10 __rt_init_rt_hw_timer_init
  1667. .rti_fn.1 0x0000000080229b14 0x4 build\drivers\gpio.o
  1668. 0x0000000080229b14 __rt_init_rt_hw_gpio_init
  1669. .rti_fn.1 0x0000000080229b18 0x4 build\drivers\uart.o
  1670. 0x0000000080229b18 __rt_init_rt_hw_serial_init
  1671. .rti_fn.1.end 0x0000000080229b1c 0x4 build\kernel\src\components.o
  1672. 0x0000000080229b1c __rt_init_rti_board_end
  1673. .rti_fn.2 0x0000000080229b20 0x4 build\kernel\components\dfs\src\dfs.o
  1674. 0x0000000080229b20 __rt_init_dfs_init
  1675. .rti_fn.4 0x0000000080229b24 0x4 build\kernel\components\libc\compilers\newlib\libc.o
  1676. 0x0000000080229b24 __rt_init_libc_system_init
  1677. .rti_fn.6 0x0000000080229b28 0x4 build\kernel\components\finsh\shell.o
  1678. 0x0000000080229b28 __rt_init_finsh_system_init
  1679. .rti_fn.6.end 0x0000000080229b2c 0x4 build\kernel\src\components.o
  1680. 0x0000000080229b2c __rt_init_rti_end
  1681. 0x0000000080229b30 __rt_init_end = .
  1682. 0x0000000080229b30 __text_end = .
  1683. 0x0000000080229b30 __rodata_start = .
  1684. .glue_7 0x0000000080229b30 0x0
  1685. .glue_7 0x0000000080229b30 0x0 linker stubs
  1686. .glue_7t 0x0000000080229b30 0x0
  1687. .glue_7t 0x0000000080229b30 0x0 linker stubs
  1688. .vfp11_veneer 0x0000000080229b30 0x0
  1689. .vfp11_veneer 0x0000000080229b30 0x0 linker stubs
  1690. .v4_bx 0x0000000080229b30 0x0
  1691. .v4_bx 0x0000000080229b30 0x0 linker stubs
  1692. .init 0x0000000080229b30 0x4
  1693. .init 0x0000000080229b30 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  1694. 0x0000000080229b30 _init
  1695. .fini 0x0000000080229b34 0x4
  1696. .fini 0x0000000080229b34 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  1697. 0x0000000080229b34 _fini
  1698. .iplt 0x0000000080229b38 0x0
  1699. .iplt 0x0000000080229b38 0x0 build\applications\board.o
  1700. .rodata 0x0000000080229b38 0x3bf5
  1701. *(.rodata)
  1702. .rodata 0x0000000080229b38 0x24 build\applications\board.o
  1703. .rodata 0x0000000080229b5c 0x10 build\applications\main.o
  1704. .rodata 0x0000000080229b6c 0x74 build\drivers\gpio.o
  1705. .rodata 0x0000000080229be0 0x80 build\drivers\uart.o
  1706. .rodata 0x0000000080229c60 0x2c build\kernel\src\components.o
  1707. .rodata 0x0000000080229c8c 0x1ba build\kernel\src\device.o
  1708. *fill* 0x0000000080229e46 0x2
  1709. .rodata 0x0000000080229e48 0x4a build\kernel\src\idle.o
  1710. *fill* 0x0000000080229e92 0x2
  1711. .rodata 0x0000000080229e94 0x6ba build\kernel\src\ipc.o
  1712. *fill* 0x000000008022a54e 0x2
  1713. .rodata 0x000000008022a550 0x1ed build\kernel\src\kservice.o
  1714. 0x000000008022a5e0 __lowest_bit_bitmap
  1715. *fill* 0x000000008022a73d 0x3
  1716. .rodata 0x000000008022a740 0x33c build\kernel\src\mem.o
  1717. .rodata 0x000000008022aa7c 0x11f build\kernel\src\object.o
  1718. *fill* 0x000000008022ab9b 0x1
  1719. .rodata 0x000000008022ab9c 0xba build\kernel\src\scheduler.o
  1720. *fill* 0x000000008022ac56 0x2
  1721. .rodata 0x000000008022ac58 0x272 build\kernel\src\thread.o
  1722. *fill* 0x000000008022aeca 0x2
  1723. .rodata 0x000000008022aecc 0x139 build\kernel\src\timer.o
  1724. *fill* 0x000000008022b005 0x3
  1725. .rodata 0x000000008022b008 0x27 build\kernel\libcpu\arm\am335x\cpu.o
  1726. *fill* 0x000000008022b02f 0x1
  1727. .rodata 0x000000008022b030 0x73 build\kernel\libcpu\arm\am335x\interrupt.o
  1728. 0x000000008022b078 AM335X_VECTOR_BASE
  1729. *fill* 0x000000008022b0a3 0x1
  1730. .rodata 0x000000008022b0a4 0x138 build\kernel\libcpu\arm\am335x\trap.o
  1731. .rodata 0x000000008022b1dc 0x16b build\kernel\components\dfs\src\dfs.o
  1732. *fill* 0x000000008022b347 0x1
  1733. .rodata 0x000000008022b348 0x1d4 build\kernel\components\dfs\src\dfs_file.o
  1734. .rodata 0x000000008022b51c 0x201 build\kernel\components\dfs\src\dfs_fs.o
  1735. *fill* 0x000000008022b71d 0x3
  1736. .rodata 0x000000008022b720 0x4 build\kernel\components\dfs\src\dfs_posix.o
  1737. .rodata 0x000000008022b724 0x123 build\kernel\components\dfs\filesystems\devfs\devfs.o
  1738. *fill* 0x000000008022b847 0x1
  1739. .rodata 0x000000008022b848 0xcf build\kernel\components\drivers\misc\pin.o
  1740. *fill* 0x000000008022b917 0x1
  1741. .rodata 0x000000008022b918 0x2e1 build\kernel\components\drivers\serial\serial.o
  1742. *fill* 0x000000008022bbf9 0x3
  1743. .rodata 0x000000008022bbfc 0xaf build\kernel\components\drivers\src\completion.o
  1744. *fill* 0x000000008022bcab 0x1
  1745. .rodata 0x000000008022bcac 0x11e build\kernel\components\drivers\src\dataqueue.o
  1746. *fill* 0x000000008022bdca 0x2
  1747. .rodata 0x000000008022bdcc 0x15b build\kernel\components\finsh\shell.o
  1748. *fill* 0x000000008022bf27 0x1
  1749. .rodata 0x000000008022bf28 0x6e8 build\kernel\components\finsh\cmd.o
  1750. .rodata 0x000000008022c610 0x92 build\kernel\components\finsh\msh.o
  1751. *fill* 0x000000008022c6a2 0x2
  1752. .rodata 0x000000008022c6a4 0x2e5 build\kernel\components\finsh\msh_file.o
  1753. *fill* 0x000000008022c989 0x3
  1754. .rodata 0x000000008022c98c 0xf2 build\kernel\components\finsh\finsh_error.o
  1755. *fill* 0x000000008022ca7e 0x2
  1756. .rodata 0x000000008022ca80 0xc4 build\kernel\components\finsh\finsh_ops.o
  1757. 0x000000008022ca80 op_table
  1758. .rodata 0x000000008022cb44 0x80 build\kernel\components\finsh\finsh_token.o
  1759. .rodata 0x000000008022cbc4 0x17 build\kernel\components\libc\compilers\newlib\libc.o
  1760. *fill* 0x000000008022cbdb 0x1
  1761. .rodata 0x000000008022cbdc 0x13 build\kernel\components\libc\compilers\newlib\stdio.o
  1762. *fill* 0x000000008022cbef 0x1
  1763. .rodata 0x000000008022cbf0 0x5d build\kernel\components\libc\compilers\newlib\syscalls.o
  1764. *(.rodata.*)
  1765. *fill* 0x000000008022cc4d 0x3
  1766. .rodata.name 0x000000008022cc50 0x37 build\applications\board.o
  1767. 0x000000008022cc50 __fsym_reboot_name
  1768. 0x000000008022cc58 __fsym_reboot_desc
  1769. 0x000000008022cc68 __fsym___cmd_reboot_name
  1770. 0x000000008022cc78 __fsym___cmd_reboot_desc
  1771. *fill* 0x000000008022cc87 0x1
  1772. .rodata.name 0x000000008022cc88 0x2a build\kernel\src\mem.o
  1773. 0x000000008022cc88 __fsym_list_mem_name
  1774. 0x000000008022cc94 __fsym_list_mem_desc
  1775. *fill* 0x000000008022ccb2 0x2
  1776. .rodata.name 0x000000008022ccb4 0x25 build\kernel\components\dfs\src\dfs.o
  1777. 0x000000008022ccb4 __fsym___cmd_list_fd_name
  1778. 0x000000008022ccc4 __fsym___cmd_list_fd_desc
  1779. *fill* 0x000000008022ccd9 0x3
  1780. .rodata.name 0x000000008022ccdc 0x65 build\kernel\components\dfs\src\dfs_file.o
  1781. 0x000000008022ccdc __fsym_ls_name
  1782. 0x000000008022cce0 __fsym_ls_desc
  1783. 0x000000008022ccf8 __fsym_rm_name
  1784. 0x000000008022ccfc __fsym_rm_desc
  1785. 0x000000008022cd18 __fsym_cat_name
  1786. 0x000000008022cd1c __fsym_cat_desc
  1787. 0x000000008022cd28 __fsym_copy_name
  1788. 0x000000008022cd30 __fsym_copy_desc
  1789. *fill* 0x000000008022cd41 0x3
  1790. .rodata.name 0x000000008022cd44 0x2e build\kernel\components\dfs\src\dfs_fs.o
  1791. 0x000000008022cd44 __fsym_mkfs_name
  1792. 0x000000008022cd4c __fsym_mkfs_desc
  1793. 0x000000008022cd60 __fsym_df_name
  1794. 0x000000008022cd64 __fsym_df_desc
  1795. *fill* 0x000000008022cd72 0x2
  1796. .rodata.name 0x000000008022cd74 0x41 build\kernel\components\dfs\src\dfs_posix.o
  1797. 0x000000008022cd74 __fsym_mkdir_name
  1798. 0x000000008022cd7c __fsym_mkdir_desc
  1799. 0x000000008022cd90 __fsym_cd_name
  1800. 0x000000008022cd94 __fsym_cd_desc
  1801. *fill* 0x000000008022cdb5 0x3
  1802. .rodata.name 0x000000008022cdb8 0x99 build\kernel\components\drivers\misc\pin.o
  1803. 0x000000008022cdb8 __fsym_pinMode_name
  1804. 0x000000008022cdc0 __fsym_pinMode_desc
  1805. 0x000000008022cdd8 __fsym_pinWrite_name
  1806. 0x000000008022cde4 __fsym_pinWrite_desc
  1807. 0x000000008022ce00 __fsym_pinRead_name
  1808. 0x000000008022ce08 __fsym_pinRead_desc
  1809. 0x000000008022ce28 __fsym_pinGet_name
  1810. 0x000000008022ce30 __fsym_pinGet_desc
  1811. *fill* 0x000000008022ce51 0x3
  1812. .rodata.name 0x000000008022ce54 0x3e9 build\kernel\components\finsh\cmd.o
  1813. 0x000000008022ce54 __fsym_hello_name
  1814. 0x000000008022ce5c __fsym_hello_desc
  1815. 0x000000008022ce6c __fsym_clear_name
  1816. 0x000000008022ce74 __fsym_clear_desc
  1817. 0x000000008022ce90 __fsym___cmd_clear_name
  1818. 0x000000008022ce9c __fsym___cmd_clear_desc
  1819. 0x000000008022ceb8 __fsym_version_name
  1820. 0x000000008022cec0 __fsym_version_desc
  1821. 0x000000008022cee4 __fsym___cmd_version_name
  1822. 0x000000008022cef4 __fsym___cmd_version_desc
  1823. 0x000000008022cf18 __fsym_list_thread_name
  1824. 0x000000008022cf24 __fsym_list_thread_desc
  1825. 0x000000008022cf30 __fsym___cmd_list_thread_name
  1826. 0x000000008022cf44 __fsym___cmd_list_thread_desc
  1827. 0x000000008022cf50 __fsym_list_sem_name
  1828. 0x000000008022cf5c __fsym_list_sem_desc
  1829. 0x000000008022cf78 __fsym___cmd_list_sem_name
  1830. 0x000000008022cf88 __fsym___cmd_list_sem_desc
  1831. 0x000000008022cfa4 __fsym_list_event_name
  1832. 0x000000008022cfb0 __fsym_list_event_desc
  1833. 0x000000008022cfc8 __fsym___cmd_list_event_name
  1834. 0x000000008022cfdc __fsym___cmd_list_event_desc
  1835. 0x000000008022cff4 __fsym_list_mutex_name
  1836. 0x000000008022d000 __fsym_list_mutex_desc
  1837. 0x000000008022d018 __fsym___cmd_list_mutex_name
  1838. 0x000000008022d02c __fsym___cmd_list_mutex_desc
  1839. 0x000000008022d044 __fsym_list_mailbox_name
  1840. 0x000000008022d054 __fsym_list_mailbox_desc
  1841. 0x000000008022d06c __fsym___cmd_list_mailbox_name
  1842. 0x000000008022d080 __fsym___cmd_list_mailbox_desc
  1843. 0x000000008022d098 __fsym_list_msgqueue_name
  1844. 0x000000008022d0a8 __fsym_list_msgqueue_desc
  1845. 0x000000008022d0c8 __fsym___cmd_list_msgqueue_name
  1846. 0x000000008022d0dc __fsym___cmd_list_msgqueue_desc
  1847. 0x000000008022d0fc __fsym_list_mempool_name
  1848. 0x000000008022d10c __fsym_list_mempool_desc
  1849. 0x000000008022d128 __fsym___cmd_list_mempool_name
  1850. 0x000000008022d13c __fsym___cmd_list_mempool_desc
  1851. 0x000000008022d158 __fsym_list_timer_name
  1852. 0x000000008022d164 __fsym_list_timer_desc
  1853. 0x000000008022d17c __fsym___cmd_list_timer_name
  1854. 0x000000008022d190 __fsym___cmd_list_timer_desc
  1855. 0x000000008022d1a8 __fsym_list_device_name
  1856. 0x000000008022d1b4 __fsym_list_device_desc
  1857. 0x000000008022d1cc __fsym___cmd_list_device_name
  1858. 0x000000008022d1e0 __fsym___cmd_list_device_desc
  1859. 0x000000008022d1f8 __fsym_list_name
  1860. 0x000000008022d200 __fsym_list_desc
  1861. 0x000000008022d21c __vsym_dummy_name
  1862. 0x000000008022d224 __vsym_dummy_desc
  1863. *fill* 0x000000008022d23d 0x3
  1864. .rodata.name 0x000000008022d240 0xc1 build\kernel\components\finsh\msh.o
  1865. 0x000000008022d240 __fsym___cmd_exit_name
  1866. 0x000000008022d24c __fsym___cmd_exit_desc
  1867. 0x000000008022d26c __fsym_msh_name
  1868. 0x000000008022d270 __fsym_msh_desc
  1869. 0x000000008022d284 __fsym___cmd_help_name
  1870. 0x000000008022d290 __fsym___cmd_help_desc
  1871. 0x000000008022d2a8 __fsym___cmd_ps_name
  1872. 0x000000008022d2b4 __fsym___cmd_ps_desc
  1873. 0x000000008022d2d0 __fsym___cmd_free_name
  1874. 0x000000008022d2dc __fsym___cmd_free_desc
  1875. *fill* 0x000000008022d301 0x3
  1876. .rodata.name 0x000000008022d304 0x1b8 build\kernel\components\finsh\msh_file.o
  1877. 0x000000008022d304 __fsym___cmd_ls_name
  1878. 0x000000008022d310 __fsym___cmd_ls_desc
  1879. 0x000000008022d334 __fsym___cmd_cp_name
  1880. 0x000000008022d340 __fsym___cmd_cp_desc
  1881. 0x000000008022d358 __fsym___cmd_mv_name
  1882. 0x000000008022d364 __fsym___cmd_mv_desc
  1883. 0x000000008022d37c __fsym___cmd_cat_name
  1884. 0x000000008022d388 __fsym___cmd_cat_desc
  1885. 0x000000008022d39c __fsym___cmd_rm_name
  1886. 0x000000008022d3a8 __fsym___cmd_rm_desc
  1887. 0x000000008022d3c4 __fsym___cmd_cd_name
  1888. 0x000000008022d3d0 __fsym___cmd_cd_desc
  1889. 0x000000008022d3f4 __fsym___cmd_pwd_name
  1890. 0x000000008022d400 __fsym___cmd_pwd_desc
  1891. 0x000000008022d434 __fsym___cmd_mkdir_name
  1892. 0x000000008022d440 __fsym___cmd_mkdir_desc
  1893. 0x000000008022d458 __fsym___cmd_mkfs_name
  1894. 0x000000008022d464 __fsym___cmd_mkfs_desc
  1895. 0x000000008022d484 __fsym___cmd_df_name
  1896. 0x000000008022d490 __fsym___cmd_df_desc
  1897. 0x000000008022d49c __fsym___cmd_echo_name
  1898. 0x000000008022d4a8 __fsym___cmd_echo_desc
  1899. .rodata._global_impure_ptr
  1900. 0x000000008022d4bc 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  1901. 0x000000008022d4bc _global_impure_ptr
  1902. .rodata._puts_r.str1.1
  1903. 0x000000008022d4c0 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  1904. .rodata._svfprintf_r.str1.1
  1905. 0x000000008022d4c2 0x34 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  1906. .rodata.blanks.8590
  1907. 0x000000008022d4f6 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  1908. .rodata.zeroes.8591
  1909. 0x000000008022d506 0x10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  1910. .rodata._dtoa_r.str1.1
  1911. 0x000000008022d516 0xd c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  1912. 0xf (size before relaxing)
  1913. .rodata._setlocale_r.str1.1
  1914. 0x000000008022d523 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  1915. 0x9 (size before relaxing)
  1916. .rodata.str1.1
  1917. 0x000000008022d52b 0x2 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  1918. *fill* 0x000000008022d52d 0x3
  1919. .rodata.__mprec_bigtens
  1920. 0x000000008022d530 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1921. 0x000000008022d530 __mprec_bigtens
  1922. .rodata.__mprec_tens
  1923. 0x000000008022d558 0xc8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1924. 0x000000008022d558 __mprec_tens
  1925. .rodata.p05.7368
  1926. 0x000000008022d620 0xc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  1927. .rodata._ctype_
  1928. 0x000000008022d62c 0x101 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-ctype_.o)
  1929. 0x000000008022d62c _ctype_
  1930. 0x000000008022d72d __rodata_end = .
  1931. .ARM.exidx 0x000000008022d730 0x8
  1932. .ARM.exidx 0x000000008022d730 0x8 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  1933. .rel.dyn 0x000000008022d738 0x0
  1934. .rel.iplt 0x000000008022d738 0x0 build\applications\board.o
  1935. 0x000000008022d738 . = ALIGN (0x4)
  1936. .ctors 0x000000008022d738 0x0
  1937. 0x000000008022d738 PROVIDE (__ctors_start__ = .)
  1938. *(SORT_BY_NAME(.ctors.*))
  1939. *(.ctors)
  1940. 0x000000008022d738 PROVIDE (__ctors_end__ = .)
  1941. .dtors 0x000000008022d738 0x0
  1942. [!provide] PROVIDE (__dtors_start__ = .)
  1943. *(SORT_BY_NAME(.dtors.*))
  1944. *(.dtors)
  1945. [!provide] PROVIDE (__dtors_end__ = .)
  1946. 0x000000008022d738 . = ALIGN (0x8)
  1947. 0x000000008022d738 __data_start = .
  1948. .data 0x000000008022d738 0x7a0
  1949. *(.data)
  1950. .data 0x000000008022d738 0x2c build\drivers\gpio.o
  1951. .data 0x000000008022d764 0x8 build\drivers\uart.o
  1952. 0x000000008022d764 uart1
  1953. .data 0x000000008022d76c 0x90 build\kernel\src\object.o
  1954. .data 0x000000008022d7fc 0x100 build\kernel\components\dfs\src\dfs.o
  1955. 0x000000008022d7fc working_directory
  1956. .data 0x000000008022d8fc 0x4 build\kernel\components\finsh\msh.o
  1957. .data 0x000000008022d900 0x3c build\kernel\components\finsh\finsh_error.o
  1958. *(.data.*)
  1959. .data._impure_ptr
  1960. 0x000000008022d93c 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  1961. 0x000000008022d93c _impure_ptr
  1962. .data.impure_data
  1963. 0x000000008022d940 0x428 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  1964. .data.environ 0x000000008022dd68 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  1965. 0x000000008022dd68 environ
  1966. .data.__global_locale
  1967. 0x000000008022dd6c 0x16c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  1968. 0x000000008022dd6c __global_locale
  1969. 0x000000008022ded8 __data_end = .
  1970. .igot.plt 0x000000008022ded8 0x0
  1971. .igot.plt 0x000000008022ded8 0x0 build\applications\board.o
  1972. 0x000000008022ded8 . = ALIGN (0x8)
  1973. 0x000000008022ded8 __bss_start = .
  1974. .bss 0x000000008022ded8 0xed4
  1975. *(.bss)
  1976. .bss 0x000000008022ded8 0x4 build\kernel\src\clock.o
  1977. .bss 0x000000008022dedc 0x190 build\kernel\src\idle.o
  1978. .bss 0x000000008022e06c 0x9 build\kernel\src\irq.o
  1979. 0x000000008022e074 rt_interrupt_nest
  1980. *fill* 0x000000008022e075 0x3
  1981. .bss 0x000000008022e078 0x88 build\kernel\src\kservice.o
  1982. .bss 0x000000008022e100 0x40 build\kernel\src\mem.o
  1983. .bss 0x000000008022e140 0x8 build\kernel\src\object.o
  1984. .bss 0x000000008022e148 0xc build\kernel\src\scheduler.o
  1985. 0x000000008022e14c rt_current_thread
  1986. .bss 0x000000008022e154 0xc build\kernel\src\thread.o
  1987. .bss 0x000000008022e160 0x14 build\kernel\src\timer.o
  1988. .bss 0x000000008022e174 0x30 build\kernel\components\dfs\src\dfs.o
  1989. .bss 0x000000008022e1a4 0x128 build\kernel\components\dfs\src\dfs_file.o
  1990. .bss 0x000000008022e2cc 0x44 build\kernel\components\drivers\misc\pin.o
  1991. .bss 0x000000008022e310 0x4 build\kernel\components\drivers\serial\serial.o
  1992. .bss 0x000000008022e314 0x95 build\kernel\components\finsh\shell.o
  1993. 0x000000008022e314 _syscall_table_begin
  1994. 0x000000008022e318 _syscall_table_end
  1995. 0x000000008022e31c _sysvar_table_begin
  1996. 0x000000008022e320 _sysvar_table_end
  1997. *fill* 0x000000008022e3a9 0x3
  1998. .bss 0x000000008022e3ac 0x4 build\kernel\components\finsh\cmd.o
  1999. .bss 0x000000008022e3b0 0x8 build\kernel\components\finsh\finsh_heap.o
  2000. .bss 0x000000008022e3b8 0x4 build\kernel\components\finsh\finsh_vm.o
  2001. 0x000000008022e3b8 global_syscall_list
  2002. .bss 0x000000008022e3bc 0x4 build\kernel\components\libc\compilers\newlib\stdio.o
  2003. .bss 0x000000008022e3c0 0x14 build\kernel\components\libc\compilers\newlib\syscalls.o
  2004. 0x000000008022e3c0 _timevalue
  2005. *(.bss.*)
  2006. .bss.alloced.6018
  2007. 0x000000008022e3d4 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  2008. .bss.initial_env
  2009. 0x000000008022e3d8 0x4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  2010. *(COMMON)
  2011. COMMON 0x000000008022e3dc 0x54 build\drivers\uart.o
  2012. 0x000000008022e3dc serial1
  2013. COMMON 0x000000008022e430 0x4 build\kernel\src\kservice.o
  2014. 0x000000008022e430 rt_assert_hook
  2015. COMMON 0x000000008022e434 0xc build\kernel\src\object.o
  2016. 0x000000008022e434 rt_object_put_hook
  2017. 0x000000008022e438 rt_object_take_hook
  2018. 0x000000008022e43c rt_object_trytake_hook
  2019. COMMON 0x000000008022e440 0x110 build\kernel\src\scheduler.o
  2020. 0x000000008022e440 rt_thread_priority_table
  2021. 0x000000008022e540 rt_current_priority
  2022. 0x000000008022e544 rt_thread_ready_priority_group
  2023. 0x000000008022e548 rt_thread_defunct
  2024. COMMON 0x000000008022e550 0x40c build\kernel\libcpu\arm\am335x\interrupt.o
  2025. 0x000000008022e550 rt_interrupt_to_thread
  2026. 0x000000008022e554 rt_interrupt_from_thread
  2027. 0x000000008022e558 rt_thread_switch_interrupt_flag
  2028. 0x000000008022e55c isr_table
  2029. COMMON 0x000000008022e95c 0x28 build\kernel\components\dfs\src\dfs.o
  2030. 0x000000008022e95c filesystem_table
  2031. 0x000000008022e97c filesystem_operation_table
  2032. COMMON 0x000000008022e984 0x4 build\kernel\components\finsh\shell.o
  2033. 0x000000008022e984 shell
  2034. COMMON 0x000000008022e988 0x8 build\kernel\components\finsh\finsh_compiler.o
  2035. 0x000000008022e988 finsh_compile_pc
  2036. 0x000000008022e98c finsh_compile_sp
  2037. COMMON 0x000000008022e990 0x1 build\kernel\components\finsh\finsh_error.o
  2038. 0x000000008022e990 global_errno
  2039. *fill* 0x000000008022e991 0x3
  2040. COMMON 0x000000008022e994 0x80 build\kernel\components\finsh\finsh_heap.o
  2041. 0x000000008022e994 finsh_heap
  2042. COMMON 0x000000008022ea14 0x140 build\kernel\components\finsh\finsh_node.o
  2043. 0x000000008022ea14 global_node_table
  2044. COMMON 0x000000008022eb54 0xc4 build\kernel\components\finsh\finsh_var.o
  2045. 0x000000008022eb54 global_sysvar_list
  2046. 0x000000008022eb58 global_variable
  2047. COMMON 0x000000008022ec18 0x188 build\kernel\components\finsh\finsh_vm.o
  2048. 0x000000008022ec18 text_segment
  2049. 0x000000008022ec98 finsh_vm_stack
  2050. 0x000000008022ed98 finsh_pc
  2051. 0x000000008022ed9c finsh_sp
  2052. COMMON 0x000000008022eda0 0x9 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  2053. 0x000000008022eda0 __lock___atexit_recursive_mutex
  2054. 0x000000008022eda1 __lock___arc4random_mutex
  2055. 0x000000008022eda2 __lock___env_recursive_mutex
  2056. 0x000000008022eda3 __lock___sinit_recursive_mutex
  2057. 0x000000008022eda4 __lock___malloc_recursive_mutex
  2058. 0x000000008022eda5 __lock___at_quick_exit_mutex
  2059. 0x000000008022eda6 __lock___dd_hash_mutex
  2060. 0x000000008022eda7 __lock___tz_mutex
  2061. 0x000000008022eda8 __lock___sfp_recursive_mutex
  2062. 0x000000008022edac . = ALIGN (0x4)
  2063. *fill* 0x000000008022eda9 0x3
  2064. 0x000000008022edac . = ALIGN (0x4)
  2065. 0x000000008022edac __bss_end = .
  2066. .stab
  2067. *(.stab)
  2068. .stabstr
  2069. *(.stabstr)
  2070. .stab.excl
  2071. *(.stab.excl)
  2072. .stab.exclstr
  2073. *(.stab.exclstr)
  2074. .stab.index
  2075. *(.stab.index)
  2076. .stab.indexstr
  2077. *(.stab.indexstr)
  2078. .comment 0x0000000000000000 0x7b
  2079. *(.comment)
  2080. .comment 0x0000000000000000 0x7b build\applications\board.o
  2081. 0x7c (size before relaxing)
  2082. .comment 0x000000000000007b 0x7c build\applications\main.o
  2083. .comment 0x000000000000007b 0x7c build\drivers\gpio.o
  2084. .comment 0x000000000000007b 0x7c build\drivers\uart.o
  2085. .comment 0x000000000000007b 0x7c build\kernel\src\clock.o
  2086. .comment 0x000000000000007b 0x7c build\kernel\src\components.o
  2087. .comment 0x000000000000007b 0x7c build\kernel\src\device.o
  2088. .comment 0x000000000000007b 0x7c build\kernel\src\idle.o
  2089. .comment 0x000000000000007b 0x7c build\kernel\src\ipc.o
  2090. .comment 0x000000000000007b 0x7c build\kernel\src\irq.o
  2091. .comment 0x000000000000007b 0x7c build\kernel\src\kservice.o
  2092. .comment 0x000000000000007b 0x7c build\kernel\src\mem.o
  2093. .comment 0x000000000000007b 0x7c build\kernel\src\object.o
  2094. .comment 0x000000000000007b 0x7c build\kernel\src\scheduler.o
  2095. .comment 0x000000000000007b 0x7c build\kernel\src\thread.o
  2096. .comment 0x000000000000007b 0x7c build\kernel\src\timer.o
  2097. .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\cpu.o
  2098. .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\interrupt.o
  2099. .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\stack.o
  2100. .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\trap.o
  2101. .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs.o
  2102. .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs_file.o
  2103. .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs_fs.o
  2104. .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs_posix.o
  2105. .comment 0x000000000000007b 0x7c build\kernel\components\dfs\filesystems\devfs\devfs.o
  2106. .comment 0x000000000000007b 0x7c build\kernel\components\drivers\misc\pin.o
  2107. .comment 0x000000000000007b 0x7c build\kernel\components\drivers\serial\serial.o
  2108. .comment 0x000000000000007b 0x7c build\kernel\components\drivers\src\completion.o
  2109. .comment 0x000000000000007b 0x7c build\kernel\components\drivers\src\dataqueue.o
  2110. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\shell.o
  2111. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\cmd.o
  2112. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\msh.o
  2113. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\msh_file.o
  2114. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_compiler.o
  2115. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_error.o
  2116. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_heap.o
  2117. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_init.o
  2118. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_node.o
  2119. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_ops.o
  2120. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_parser.o
  2121. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_var.o
  2122. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_vm.o
  2123. .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_token.o
  2124. .comment 0x000000000000007b 0x7c build\kernel\components\libc\compilers\newlib\libc.o
  2125. .comment 0x000000000000007b 0x7c build\kernel\components\libc\compilers\newlib\stdio.o
  2126. .comment 0x000000000000007b 0x7c build\kernel\components\libc\compilers\newlib\syscalls.o
  2127. 0x00000000000000f7 _end = .
  2128. OUTPUT(rtthread-beaglebone.elf elf32-littlearm)
  2129. .ARM.attributes
  2130. 0x0000000000000000 0x2d
  2131. .ARM.attributes
  2132. 0x0000000000000000 0x1b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  2133. .ARM.attributes
  2134. 0x000000000000001b 0x2d build\applications\board.o
  2135. .ARM.attributes
  2136. 0x0000000000000048 0x2d build\applications\main.o
  2137. .ARM.attributes
  2138. 0x0000000000000075 0x2d build\drivers\gpio.o
  2139. .ARM.attributes
  2140. 0x00000000000000a2 0x2d build\drivers\uart.o
  2141. .ARM.attributes
  2142. 0x00000000000000cf 0x2d build\kernel\src\clock.o
  2143. .ARM.attributes
  2144. 0x00000000000000fc 0x2d build\kernel\src\components.o
  2145. .ARM.attributes
  2146. 0x0000000000000129 0x2d build\kernel\src\device.o
  2147. .ARM.attributes
  2148. 0x0000000000000156 0x2d build\kernel\src\idle.o
  2149. .ARM.attributes
  2150. 0x0000000000000183 0x2d build\kernel\src\ipc.o
  2151. .ARM.attributes
  2152. 0x00000000000001b0 0x2d build\kernel\src\irq.o
  2153. .ARM.attributes
  2154. 0x00000000000001dd 0x2d build\kernel\src\kservice.o
  2155. .ARM.attributes
  2156. 0x000000000000020a 0x2d build\kernel\src\mem.o
  2157. .ARM.attributes
  2158. 0x0000000000000237 0x2d build\kernel\src\object.o
  2159. .ARM.attributes
  2160. 0x0000000000000264 0x2d build\kernel\src\scheduler.o
  2161. .ARM.attributes
  2162. 0x0000000000000291 0x2d build\kernel\src\thread.o
  2163. .ARM.attributes
  2164. 0x00000000000002be 0x2d build\kernel\src\timer.o
  2165. .ARM.attributes
  2166. 0x00000000000002eb 0x2d build\kernel\libcpu\arm\am335x\cpu.o
  2167. .ARM.attributes
  2168. 0x0000000000000318 0x2d build\kernel\libcpu\arm\am335x\interrupt.o
  2169. .ARM.attributes
  2170. 0x0000000000000345 0x2d build\kernel\libcpu\arm\am335x\stack.o
  2171. .ARM.attributes
  2172. 0x0000000000000372 0x2d build\kernel\libcpu\arm\am335x\trap.o
  2173. .ARM.attributes
  2174. 0x000000000000039f 0x1f build\kernel\libcpu\arm\am335x\context_gcc.o
  2175. .ARM.attributes
  2176. 0x00000000000003be 0x1f build\kernel\libcpu\arm\am335x\cp15_gcc.o
  2177. .ARM.attributes
  2178. 0x00000000000003dd 0x1f build\kernel\libcpu\arm\am335x\start_gcc.o
  2179. .ARM.attributes
  2180. 0x00000000000003fc 0x1f build\kernel\libcpu\arm\am335x\vector_gcc.o
  2181. .ARM.attributes
  2182. 0x000000000000041b 0x2d build\kernel\components\dfs\src\dfs.o
  2183. .ARM.attributes
  2184. 0x0000000000000448 0x2d build\kernel\components\dfs\src\dfs_file.o
  2185. .ARM.attributes
  2186. 0x0000000000000475 0x2d build\kernel\components\dfs\src\dfs_fs.o
  2187. .ARM.attributes
  2188. 0x00000000000004a2 0x2d build\kernel\components\dfs\src\dfs_posix.o
  2189. .ARM.attributes
  2190. 0x00000000000004cf 0x2d build\kernel\components\dfs\filesystems\devfs\devfs.o
  2191. .ARM.attributes
  2192. 0x00000000000004fc 0x2d build\kernel\components\drivers\misc\pin.o
  2193. .ARM.attributes
  2194. 0x0000000000000529 0x2d build\kernel\components\drivers\serial\serial.o
  2195. .ARM.attributes
  2196. 0x0000000000000556 0x2d build\kernel\components\drivers\src\completion.o
  2197. .ARM.attributes
  2198. 0x0000000000000583 0x2d build\kernel\components\drivers\src\dataqueue.o
  2199. .ARM.attributes
  2200. 0x00000000000005b0 0x2d build\kernel\components\finsh\shell.o
  2201. .ARM.attributes
  2202. 0x00000000000005dd 0x2d build\kernel\components\finsh\cmd.o
  2203. .ARM.attributes
  2204. 0x000000000000060a 0x2d build\kernel\components\finsh\msh.o
  2205. .ARM.attributes
  2206. 0x0000000000000637 0x2d build\kernel\components\finsh\msh_file.o
  2207. .ARM.attributes
  2208. 0x0000000000000664 0x2d build\kernel\components\finsh\finsh_compiler.o
  2209. .ARM.attributes
  2210. 0x0000000000000691 0x2d build\kernel\components\finsh\finsh_error.o
  2211. .ARM.attributes
  2212. 0x00000000000006be 0x2d build\kernel\components\finsh\finsh_heap.o
  2213. .ARM.attributes
  2214. 0x00000000000006eb 0x2d build\kernel\components\finsh\finsh_init.o
  2215. .ARM.attributes
  2216. 0x0000000000000718 0x2d build\kernel\components\finsh\finsh_node.o
  2217. .ARM.attributes
  2218. 0x0000000000000745 0x2d build\kernel\components\finsh\finsh_ops.o
  2219. .ARM.attributes
  2220. 0x0000000000000772 0x2d build\kernel\components\finsh\finsh_parser.o
  2221. .ARM.attributes
  2222. 0x000000000000079f 0x2d build\kernel\components\finsh\finsh_var.o
  2223. .ARM.attributes
  2224. 0x00000000000007cc 0x2d build\kernel\components\finsh\finsh_vm.o
  2225. .ARM.attributes
  2226. 0x00000000000007f9 0x2d build\kernel\components\finsh\finsh_token.o
  2227. .ARM.attributes
  2228. 0x0000000000000826 0x2d build\kernel\components\libc\compilers\newlib\libc.o
  2229. .ARM.attributes
  2230. 0x0000000000000853 0x2d build\kernel\components\libc\compilers\newlib\stdio.o
  2231. .ARM.attributes
  2232. 0x0000000000000880 0x2d build\kernel\components\libc\compilers\newlib\syscalls.o
  2233. .ARM.attributes
  2234. 0x00000000000008ad 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  2235. .ARM.attributes
  2236. 0x00000000000008d8 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  2237. .ARM.attributes
  2238. 0x0000000000000903 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  2239. .ARM.attributes
  2240. 0x000000000000092e 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  2241. .ARM.attributes
  2242. 0x0000000000000959 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  2243. .ARM.attributes
  2244. 0x0000000000000984 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  2245. .ARM.attributes
  2246. 0x00000000000009af 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  2247. .ARM.attributes
  2248. 0x00000000000009da 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  2249. .ARM.attributes
  2250. 0x0000000000000a05 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  2251. .ARM.attributes
  2252. 0x0000000000000a30 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  2253. .ARM.attributes
  2254. 0x0000000000000a5b 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  2255. .ARM.attributes
  2256. 0x0000000000000a86 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  2257. .ARM.attributes
  2258. 0x0000000000000ab1 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  2259. .ARM.attributes
  2260. 0x0000000000000adc 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  2261. .ARM.attributes
  2262. 0x0000000000000b07 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  2263. .ARM.attributes
  2264. 0x0000000000000b32 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  2265. .ARM.attributes
  2266. 0x0000000000000b5d 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  2267. .ARM.attributes
  2268. 0x0000000000000b88 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  2269. .ARM.attributes
  2270. 0x0000000000000bb3 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  2271. .ARM.attributes
  2272. 0x0000000000000bde 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  2273. .ARM.attributes
  2274. 0x0000000000000c09 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  2275. .ARM.attributes
  2276. 0x0000000000000c34 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  2277. .ARM.attributes
  2278. 0x0000000000000c5f 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  2279. .ARM.attributes
  2280. 0x0000000000000c8a 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  2281. .ARM.attributes
  2282. 0x0000000000000cb5 0x19 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcmp.o)
  2283. .ARM.attributes
  2284. 0x0000000000000cce 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  2285. .ARM.attributes
  2286. 0x0000000000000cf9 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  2287. .ARM.attributes
  2288. 0x0000000000000d24 0x19 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strlen.o)
  2289. .ARM.attributes
  2290. 0x0000000000000d3d 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  2291. .ARM.attributes
  2292. 0x0000000000000d68 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  2293. .ARM.attributes
  2294. 0x0000000000000d93 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  2295. .ARM.attributes
  2296. 0x0000000000000dbe 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  2297. .ARM.attributes
  2298. 0x0000000000000de9 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  2299. .ARM.attributes
  2300. 0x0000000000000e14 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  2301. .ARM.attributes
  2302. 0x0000000000000e3f 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  2303. .ARM.attributes
  2304. 0x0000000000000e6a 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  2305. .ARM.attributes
  2306. 0x0000000000000e95 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  2307. .ARM.attributes
  2308. 0x0000000000000ec0 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  2309. .ARM.attributes
  2310. 0x0000000000000eeb 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  2311. .ARM.attributes
  2312. 0x0000000000000f16 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  2313. .ARM.attributes
  2314. 0x0000000000000f41 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  2315. .ARM.attributes
  2316. 0x0000000000000f6c 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  2317. .ARM.attributes
  2318. 0x0000000000000f97 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  2319. .ARM.attributes
  2320. 0x0000000000000fc2 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  2321. .ARM.attributes
  2322. 0x0000000000000fed 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  2323. .ARM.attributes
  2324. 0x0000000000001018 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  2325. .ARM.attributes
  2326. 0x0000000000001043 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2327. .ARM.attributes
  2328. 0x000000000000106e 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  2329. .ARM.attributes
  2330. 0x0000000000001099 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  2331. .ARM.attributes
  2332. 0x00000000000010c4 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  2333. .ARM.attributes
  2334. 0x00000000000010ef 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  2335. .ARM.attributes
  2336. 0x000000000000111a 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-ctype_.o)
  2337. .ARM.attributes
  2338. 0x0000000000001145 0x1b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  2339. .ARM.attributes
  2340. 0x0000000000001160 0x1b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  2341. .ARM.attributes
  2342. 0x000000000000117b 0x1b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_dvmd_tls.o)
  2343. .ARM.attributes
  2344. 0x0000000000001196 0x1b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  2345. .ARM.attributes
  2346. 0x00000000000011b1 0x2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  2347. .debug_info 0x0000000000000000 0x38a48
  2348. .debug_info 0x0000000000000000 0xd87 build\applications\board.o
  2349. .debug_info 0x0000000000000d87 0x99c build\applications\main.o
  2350. .debug_info 0x0000000000001723 0x10ed build\drivers\gpio.o
  2351. .debug_info 0x0000000000002810 0x1348 build\drivers\uart.o
  2352. .debug_info 0x0000000000003b58 0xe2b build\kernel\src\clock.o
  2353. .debug_info 0x0000000000004983 0xf39 build\kernel\src\components.o
  2354. .debug_info 0x00000000000058bc 0x12aa build\kernel\src\device.o
  2355. .debug_info 0x0000000000006b66 0x1008 build\kernel\src\idle.o
  2356. .debug_info 0x0000000000007b6e 0x258c build\kernel\src\ipc.o
  2357. .debug_info 0x000000000000a0fa 0xbb3 build\kernel\src\irq.o
  2358. .debug_info 0x000000000000acad 0x1c51 build\kernel\src\kservice.o
  2359. .debug_info 0x000000000000c8fe 0x1224 build\kernel\src\mem.o
  2360. .debug_info 0x000000000000db22 0x1253 build\kernel\src\object.o
  2361. .debug_info 0x000000000000ed75 0x11ab build\kernel\src\scheduler.o
  2362. .debug_info 0x000000000000ff20 0x15dc build\kernel\src\thread.o
  2363. .debug_info 0x00000000000114fc 0x12de build\kernel\src\timer.o
  2364. .debug_info 0x00000000000127da 0xbef build\kernel\libcpu\arm\am335x\cpu.o
  2365. .debug_info 0x00000000000133c9 0xdd5 build\kernel\libcpu\arm\am335x\interrupt.o
  2366. .debug_info 0x000000000001419e 0xb10 build\kernel\libcpu\arm\am335x\stack.o
  2367. .debug_info 0x0000000000014cae 0x1020 build\kernel\libcpu\arm\am335x\trap.o
  2368. .debug_info 0x0000000000015cce 0x26 build\kernel\libcpu\arm\am335x\context_gcc.o
  2369. .debug_info 0x0000000000015cf4 0x26 build\kernel\libcpu\arm\am335x\cp15_gcc.o
  2370. .debug_info 0x0000000000015d1a 0x26 build\kernel\libcpu\arm\am335x\start_gcc.o
  2371. .debug_info 0x0000000000015d40 0x26 build\kernel\libcpu\arm\am335x\vector_gcc.o
  2372. .debug_info 0x0000000000015d66 0x1ea5 build\kernel\components\dfs\src\dfs.o
  2373. .debug_info 0x0000000000017c0b 0x1f52 build\kernel\components\dfs\src\dfs_file.o
  2374. .debug_info 0x0000000000019b5d 0x1cd0 build\kernel\components\dfs\src\dfs_fs.o
  2375. .debug_info 0x000000000001b82d 0x2010 build\kernel\components\dfs\src\dfs_posix.o
  2376. .debug_info 0x000000000001d83d 0x1a62 build\kernel\components\dfs\filesystems\devfs\devfs.o
  2377. .debug_info 0x000000000001f29f 0x165e build\kernel\components\drivers\misc\pin.o
  2378. .debug_info 0x00000000000208fd 0x1c0c build\kernel\components\drivers\serial\serial.o
  2379. .debug_info 0x0000000000022509 0xf69 build\kernel\components\drivers\src\completion.o
  2380. .debug_info 0x0000000000023472 0x12a3 build\kernel\components\drivers\src\dataqueue.o
  2381. .debug_info 0x0000000000024715 0x1a20 build\kernel\components\finsh\shell.o
  2382. .debug_info 0x0000000000026135 0x27a1 build\kernel\components\finsh\cmd.o
  2383. .debug_info 0x00000000000288d6 0x137c build\kernel\components\finsh\msh.o
  2384. .debug_info 0x0000000000029c52 0x1757 build\kernel\components\finsh\msh_file.o
  2385. .debug_info 0x000000000002b3a9 0x1045 build\kernel\components\finsh\finsh_compiler.o
  2386. .debug_info 0x000000000002c3ee 0xc67 build\kernel\components\finsh\finsh_error.o
  2387. .debug_info 0x000000000002d055 0xf38 build\kernel\components\finsh\finsh_heap.o
  2388. .debug_info 0x000000000002df8d 0xf37 build\kernel\components\finsh\finsh_init.o
  2389. .debug_info 0x000000000002eec4 0xf13 build\kernel\components\finsh\finsh_node.o
  2390. .debug_info 0x000000000002fdd7 0x1223 build\kernel\components\finsh\finsh_ops.o
  2391. .debug_info 0x0000000000030ffa 0x1676 build\kernel\components\finsh\finsh_parser.o
  2392. .debug_info 0x0000000000032670 0xe4e build\kernel\components\finsh\finsh_var.o
  2393. .debug_info 0x00000000000334be 0xe0b build\kernel\components\finsh\finsh_vm.o
  2394. .debug_info 0x00000000000342c9 0x11d5 build\kernel\components\finsh\finsh_token.o
  2395. .debug_info 0x000000000003549e 0xe22 build\kernel\components\libc\compilers\newlib\libc.o
  2396. .debug_info 0x00000000000362c0 0xb42 build\kernel\components\libc\compilers\newlib\stdio.o
  2397. .debug_info 0x0000000000036e02 0x1c46 build\kernel\components\libc\compilers\newlib\syscalls.o
  2398. .debug_abbrev 0x0000000000000000 0x77ed
  2399. .debug_abbrev 0x0000000000000000 0x237 build\applications\board.o
  2400. .debug_abbrev 0x0000000000000237 0x18b build\applications\main.o
  2401. .debug_abbrev 0x00000000000003c2 0x24d build\drivers\gpio.o
  2402. .debug_abbrev 0x000000000000060f 0x2c7 build\drivers\uart.o
  2403. .debug_abbrev 0x00000000000008d6 0x225 build\kernel\src\clock.o
  2404. .debug_abbrev 0x0000000000000afb 0x23f build\kernel\src\components.o
  2405. .debug_abbrev 0x0000000000000d3a 0x28d build\kernel\src\device.o
  2406. .debug_abbrev 0x0000000000000fc7 0x2af build\kernel\src\idle.o
  2407. .debug_abbrev 0x0000000000001276 0x2f3 build\kernel\src\ipc.o
  2408. .debug_abbrev 0x0000000000001569 0x22c build\kernel\src\irq.o
  2409. .debug_abbrev 0x0000000000001795 0x3b2 build\kernel\src\kservice.o
  2410. .debug_abbrev 0x0000000000001b47 0x2db build\kernel\src\mem.o
  2411. .debug_abbrev 0x0000000000001e22 0x2e5 build\kernel\src\object.o
  2412. .debug_abbrev 0x0000000000002107 0x30e build\kernel\src\scheduler.o
  2413. .debug_abbrev 0x0000000000002415 0x2f7 build\kernel\src\thread.o
  2414. .debug_abbrev 0x000000000000270c 0x368 build\kernel\src\timer.o
  2415. .debug_abbrev 0x0000000000002a74 0x235 build\kernel\libcpu\arm\am335x\cpu.o
  2416. .debug_abbrev 0x0000000000002ca9 0x25c build\kernel\libcpu\arm\am335x\interrupt.o
  2417. .debug_abbrev 0x0000000000002f05 0x1b9 build\kernel\libcpu\arm\am335x\stack.o
  2418. .debug_abbrev 0x00000000000030be 0x205 build\kernel\libcpu\arm\am335x\trap.o
  2419. .debug_abbrev 0x00000000000032c3 0x14 build\kernel\libcpu\arm\am335x\context_gcc.o
  2420. .debug_abbrev 0x00000000000032d7 0x14 build\kernel\libcpu\arm\am335x\cp15_gcc.o
  2421. .debug_abbrev 0x00000000000032eb 0x14 build\kernel\libcpu\arm\am335x\start_gcc.o
  2422. .debug_abbrev 0x00000000000032ff 0x14 build\kernel\libcpu\arm\am335x\vector_gcc.o
  2423. .debug_abbrev 0x0000000000003313 0x34b build\kernel\components\dfs\src\dfs.o
  2424. .debug_abbrev 0x000000000000365e 0x302 build\kernel\components\dfs\src\dfs_file.o
  2425. .debug_abbrev 0x0000000000003960 0x2c5 build\kernel\components\dfs\src\dfs_fs.o
  2426. .debug_abbrev 0x0000000000003c25 0x2d3 build\kernel\components\dfs\src\dfs_posix.o
  2427. .debug_abbrev 0x0000000000003ef8 0x2a5 build\kernel\components\dfs\filesystems\devfs\devfs.o
  2428. .debug_abbrev 0x000000000000419d 0x24a build\kernel\components\drivers\misc\pin.o
  2429. .debug_abbrev 0x00000000000043e7 0x2e9 build\kernel\components\drivers\serial\serial.o
  2430. .debug_abbrev 0x00000000000046d0 0x25c build\kernel\components\drivers\src\completion.o
  2431. .debug_abbrev 0x000000000000492c 0x2cc build\kernel\components\drivers\src\dataqueue.o
  2432. .debug_abbrev 0x0000000000004bf8 0x3a9 build\kernel\components\finsh\shell.o
  2433. .debug_abbrev 0x0000000000004fa1 0x38a build\kernel\components\finsh\cmd.o
  2434. .debug_abbrev 0x000000000000532b 0x35c build\kernel\components\finsh\msh.o
  2435. .debug_abbrev 0x0000000000005687 0x2cf build\kernel\components\finsh\msh_file.o
  2436. .debug_abbrev 0x0000000000005956 0x2a0 build\kernel\components\finsh\finsh_compiler.o
  2437. .debug_abbrev 0x0000000000005bf6 0x1e4 build\kernel\components\finsh\finsh_error.o
  2438. .debug_abbrev 0x0000000000005dda 0x278 build\kernel\components\finsh\finsh_heap.o
  2439. .debug_abbrev 0x0000000000006052 0x1fa build\kernel\components\finsh\finsh_init.o
  2440. .debug_abbrev 0x000000000000624c 0x22b build\kernel\components\finsh\finsh_node.o
  2441. .debug_abbrev 0x0000000000006477 0x24d build\kernel\components\finsh\finsh_ops.o
  2442. .debug_abbrev 0x00000000000066c4 0x2b4 build\kernel\components\finsh\finsh_parser.o
  2443. .debug_abbrev 0x0000000000006978 0x232 build\kernel\components\finsh\finsh_var.o
  2444. .debug_abbrev 0x0000000000006baa 0x22f build\kernel\components\finsh\finsh_vm.o
  2445. .debug_abbrev 0x0000000000006dd9 0x300 build\kernel\components\finsh\finsh_token.o
  2446. .debug_abbrev 0x00000000000070d9 0x1da build\kernel\components\libc\compilers\newlib\libc.o
  2447. .debug_abbrev 0x00000000000072b3 0x1e9 build\kernel\components\libc\compilers\newlib\stdio.o
  2448. .debug_abbrev 0x000000000000749c 0x351 build\kernel\components\libc\compilers\newlib\syscalls.o
  2449. .debug_loc 0x0000000000000000 0x8b0c
  2450. .debug_loc 0x0000000000000000 0x118 build\applications\board.o
  2451. .debug_loc 0x0000000000000118 0x2c build\applications\main.o
  2452. .debug_loc 0x0000000000000144 0xd4 build\drivers\gpio.o
  2453. .debug_loc 0x0000000000000218 0x260 build\drivers\uart.o
  2454. .debug_loc 0x0000000000000478 0x124 build\kernel\src\clock.o
  2455. .debug_loc 0x000000000000059c 0x248 build\kernel\src\components.o
  2456. .debug_loc 0x00000000000007e4 0x31c build\kernel\src\device.o
  2457. .debug_loc 0x0000000000000b00 0x1d8 build\kernel\src\idle.o
  2458. .debug_loc 0x0000000000000cd8 0xab0 build\kernel\src\ipc.o
  2459. .debug_loc 0x0000000000001788 0x130 build\kernel\src\irq.o
  2460. .debug_loc 0x00000000000018b8 0x864 build\kernel\src\kservice.o
  2461. .debug_loc 0x000000000000211c 0x248 build\kernel\src\mem.o
  2462. .debug_loc 0x0000000000002364 0x418 build\kernel\src\object.o
  2463. .debug_loc 0x000000000000277c 0x36c build\kernel\src\scheduler.o
  2464. .debug_loc 0x0000000000002ae8 0x5cc build\kernel\src\thread.o
  2465. .debug_loc 0x00000000000030b4 0x4a8 build\kernel\src\timer.o
  2466. .debug_loc 0x000000000000355c 0x20c build\kernel\libcpu\arm\am335x\cpu.o
  2467. .debug_loc 0x0000000000003768 0x2f4 build\kernel\libcpu\arm\am335x\interrupt.o
  2468. .debug_loc 0x0000000000003a5c 0x44 build\kernel\libcpu\arm\am335x\stack.o
  2469. .debug_loc 0x0000000000003aa0 0x188 build\kernel\libcpu\arm\am335x\trap.o
  2470. .debug_loc 0x0000000000003c28 0x2a0 build\kernel\components\dfs\src\dfs.o
  2471. .debug_loc 0x0000000000003ec8 0x428 build\kernel\components\dfs\src\dfs_file.o
  2472. .debug_loc 0x00000000000042f0 0x230 build\kernel\components\dfs\src\dfs_fs.o
  2473. .debug_loc 0x0000000000004520 0x5e4 build\kernel\components\dfs\src\dfs_posix.o
  2474. .debug_loc 0x0000000000004b04 0x23c build\kernel\components\dfs\filesystems\devfs\devfs.o
  2475. .debug_loc 0x0000000000004d40 0x268 build\kernel\components\drivers\misc\pin.o
  2476. .debug_loc 0x0000000000004fa8 0x41c build\kernel\components\drivers\serial\serial.o
  2477. .debug_loc 0x00000000000053c4 0x174 build\kernel\components\drivers\src\completion.o
  2478. .debug_loc 0x0000000000005538 0x254 build\kernel\components\drivers\src\dataqueue.o
  2479. .debug_loc 0x000000000000578c 0x3cc build\kernel\components\finsh\shell.o
  2480. .debug_loc 0x0000000000005b58 0x4dc build\kernel\components\finsh\cmd.o
  2481. .debug_loc 0x0000000000006034 0x308 build\kernel\components\finsh\msh.o
  2482. .debug_loc 0x000000000000633c 0x310 build\kernel\components\finsh\msh_file.o
  2483. .debug_loc 0x000000000000664c 0xa8 build\kernel\components\finsh\finsh_compiler.o
  2484. .debug_loc 0x00000000000066f4 0x110 build\kernel\components\finsh\finsh_error.o
  2485. .debug_loc 0x0000000000006804 0x1e4 build\kernel\components\finsh\finsh_heap.o
  2486. .debug_loc 0x00000000000069e8 0xec build\kernel\components\finsh\finsh_init.o
  2487. .debug_loc 0x0000000000006ad4 0x1c0 build\kernel\components\finsh\finsh_node.o
  2488. .debug_loc 0x0000000000006c94 0xc24 build\kernel\components\finsh\finsh_ops.o
  2489. .debug_loc 0x00000000000078b8 0x460 build\kernel\components\finsh\finsh_parser.o
  2490. .debug_loc 0x0000000000007d18 0x144 build\kernel\components\finsh\finsh_var.o
  2491. .debug_loc 0x0000000000007e5c 0xa8 build\kernel\components\finsh\finsh_vm.o
  2492. .debug_loc 0x0000000000007f04 0x328 build\kernel\components\finsh\finsh_token.o
  2493. .debug_loc 0x000000000000822c 0x38 build\kernel\components\libc\compilers\newlib\libc.o
  2494. .debug_loc 0x0000000000008264 0x64 build\kernel\components\libc\compilers\newlib\stdio.o
  2495. .debug_loc 0x00000000000082c8 0x844 build\kernel\components\libc\compilers\newlib\syscalls.o
  2496. .debug_aranges 0x0000000000000000 0x640
  2497. .debug_aranges
  2498. 0x0000000000000000 0x20 build\applications\board.o
  2499. .debug_aranges
  2500. 0x0000000000000020 0x20 build\applications\main.o
  2501. .debug_aranges
  2502. 0x0000000000000040 0x20 build\drivers\gpio.o
  2503. .debug_aranges
  2504. 0x0000000000000060 0x20 build\drivers\uart.o
  2505. .debug_aranges
  2506. 0x0000000000000080 0x20 build\kernel\src\clock.o
  2507. .debug_aranges
  2508. 0x00000000000000a0 0x20 build\kernel\src\components.o
  2509. .debug_aranges
  2510. 0x00000000000000c0 0x20 build\kernel\src\device.o
  2511. .debug_aranges
  2512. 0x00000000000000e0 0x20 build\kernel\src\idle.o
  2513. .debug_aranges
  2514. 0x0000000000000100 0x20 build\kernel\src\ipc.o
  2515. .debug_aranges
  2516. 0x0000000000000120 0x20 build\kernel\src\irq.o
  2517. .debug_aranges
  2518. 0x0000000000000140 0x20 build\kernel\src\kservice.o
  2519. .debug_aranges
  2520. 0x0000000000000160 0x20 build\kernel\src\mem.o
  2521. .debug_aranges
  2522. 0x0000000000000180 0x20 build\kernel\src\object.o
  2523. .debug_aranges
  2524. 0x00000000000001a0 0x20 build\kernel\src\scheduler.o
  2525. .debug_aranges
  2526. 0x00000000000001c0 0x20 build\kernel\src\thread.o
  2527. .debug_aranges
  2528. 0x00000000000001e0 0x20 build\kernel\src\timer.o
  2529. .debug_aranges
  2530. 0x0000000000000200 0x20 build\kernel\libcpu\arm\am335x\cpu.o
  2531. .debug_aranges
  2532. 0x0000000000000220 0x20 build\kernel\libcpu\arm\am335x\interrupt.o
  2533. .debug_aranges
  2534. 0x0000000000000240 0x20 build\kernel\libcpu\arm\am335x\stack.o
  2535. .debug_aranges
  2536. 0x0000000000000260 0x20 build\kernel\libcpu\arm\am335x\trap.o
  2537. .debug_aranges
  2538. 0x0000000000000280 0x20 build\kernel\libcpu\arm\am335x\context_gcc.o
  2539. .debug_aranges
  2540. 0x00000000000002a0 0x20 build\kernel\libcpu\arm\am335x\cp15_gcc.o
  2541. .debug_aranges
  2542. 0x00000000000002c0 0x20 build\kernel\libcpu\arm\am335x\start_gcc.o
  2543. .debug_aranges
  2544. 0x00000000000002e0 0x20 build\kernel\libcpu\arm\am335x\vector_gcc.o
  2545. .debug_aranges
  2546. 0x0000000000000300 0x20 build\kernel\components\dfs\src\dfs.o
  2547. .debug_aranges
  2548. 0x0000000000000320 0x20 build\kernel\components\dfs\src\dfs_file.o
  2549. .debug_aranges
  2550. 0x0000000000000340 0x20 build\kernel\components\dfs\src\dfs_fs.o
  2551. .debug_aranges
  2552. 0x0000000000000360 0x20 build\kernel\components\dfs\src\dfs_posix.o
  2553. .debug_aranges
  2554. 0x0000000000000380 0x20 build\kernel\components\dfs\filesystems\devfs\devfs.o
  2555. .debug_aranges
  2556. 0x00000000000003a0 0x20 build\kernel\components\drivers\misc\pin.o
  2557. .debug_aranges
  2558. 0x00000000000003c0 0x20 build\kernel\components\drivers\serial\serial.o
  2559. .debug_aranges
  2560. 0x00000000000003e0 0x20 build\kernel\components\drivers\src\completion.o
  2561. .debug_aranges
  2562. 0x0000000000000400 0x20 build\kernel\components\drivers\src\dataqueue.o
  2563. .debug_aranges
  2564. 0x0000000000000420 0x20 build\kernel\components\finsh\shell.o
  2565. .debug_aranges
  2566. 0x0000000000000440 0x20 build\kernel\components\finsh\cmd.o
  2567. .debug_aranges
  2568. 0x0000000000000460 0x20 build\kernel\components\finsh\msh.o
  2569. .debug_aranges
  2570. 0x0000000000000480 0x20 build\kernel\components\finsh\msh_file.o
  2571. .debug_aranges
  2572. 0x00000000000004a0 0x20 build\kernel\components\finsh\finsh_compiler.o
  2573. .debug_aranges
  2574. 0x00000000000004c0 0x20 build\kernel\components\finsh\finsh_error.o
  2575. .debug_aranges
  2576. 0x00000000000004e0 0x20 build\kernel\components\finsh\finsh_heap.o
  2577. .debug_aranges
  2578. 0x0000000000000500 0x20 build\kernel\components\finsh\finsh_init.o
  2579. .debug_aranges
  2580. 0x0000000000000520 0x20 build\kernel\components\finsh\finsh_node.o
  2581. .debug_aranges
  2582. 0x0000000000000540 0x20 build\kernel\components\finsh\finsh_ops.o
  2583. .debug_aranges
  2584. 0x0000000000000560 0x20 build\kernel\components\finsh\finsh_parser.o
  2585. .debug_aranges
  2586. 0x0000000000000580 0x20 build\kernel\components\finsh\finsh_var.o
  2587. .debug_aranges
  2588. 0x00000000000005a0 0x20 build\kernel\components\finsh\finsh_vm.o
  2589. .debug_aranges
  2590. 0x00000000000005c0 0x20 build\kernel\components\finsh\finsh_token.o
  2591. .debug_aranges
  2592. 0x00000000000005e0 0x20 build\kernel\components\libc\compilers\newlib\libc.o
  2593. .debug_aranges
  2594. 0x0000000000000600 0x20 build\kernel\components\libc\compilers\newlib\stdio.o
  2595. .debug_aranges
  2596. 0x0000000000000620 0x20 build\kernel\components\libc\compilers\newlib\syscalls.o
  2597. .debug_line 0x0000000000000000 0xbd28
  2598. .debug_line 0x0000000000000000 0x34f build\applications\board.o
  2599. .debug_line 0x000000000000034f 0x1c7 build\applications\main.o
  2600. .debug_line 0x0000000000000516 0x2a6 build\drivers\gpio.o
  2601. .debug_line 0x00000000000007bc 0x339 build\drivers\uart.o
  2602. .debug_line 0x0000000000000af5 0x248 build\kernel\src\clock.o
  2603. .debug_line 0x0000000000000d3d 0x28b build\kernel\src\components.o
  2604. .debug_line 0x0000000000000fc8 0x378 build\kernel\src\device.o
  2605. .debug_line 0x0000000000001340 0x2e6 build\kernel\src\idle.o
  2606. .debug_line 0x0000000000001626 0xb0e build\kernel\src\ipc.o
  2607. .debug_line 0x0000000000002134 0x251 build\kernel\src\irq.o
  2608. .debug_line 0x0000000000002385 0x5ec build\kernel\src\kservice.o
  2609. .debug_line 0x0000000000002971 0x4c3 build\kernel\src\mem.o
  2610. .debug_line 0x0000000000002e34 0x3d2 build\kernel\src\object.o
  2611. .debug_line 0x0000000000003206 0x331 build\kernel\src\scheduler.o
  2612. .debug_line 0x0000000000003537 0x448 build\kernel\src\thread.o
  2613. .debug_line 0x000000000000397f 0x3f1 build\kernel\src\timer.o
  2614. .debug_line 0x0000000000003d70 0x25a build\kernel\libcpu\arm\am335x\cpu.o
  2615. .debug_line 0x0000000000003fca 0x2c4 build\kernel\libcpu\arm\am335x\interrupt.o
  2616. .debug_line 0x000000000000428e 0x24b build\kernel\libcpu\arm\am335x\stack.o
  2617. .debug_line 0x00000000000044d9 0x291 build\kernel\libcpu\arm\am335x\trap.o
  2618. .debug_line 0x000000000000476a 0x82 build\kernel\libcpu\arm\am335x\context_gcc.o
  2619. .debug_line 0x00000000000047ec 0xa4 build\kernel\libcpu\arm\am335x\cp15_gcc.o
  2620. .debug_line 0x0000000000004890 0xde build\kernel\libcpu\arm\am335x\start_gcc.o
  2621. .debug_line 0x000000000000496e 0x5f build\kernel\libcpu\arm\am335x\vector_gcc.o
  2622. .debug_line 0x00000000000049cd 0x585 build\kernel\components\dfs\src\dfs.o
  2623. .debug_line 0x0000000000004f52 0x54b build\kernel\components\dfs\src\dfs_file.o
  2624. .debug_line 0x000000000000549d 0x55d build\kernel\components\dfs\src\dfs_fs.o
  2625. .debug_line 0x00000000000059fa 0x555 build\kernel\components\dfs\src\dfs_posix.o
  2626. .debug_line 0x0000000000005f4f 0x4a0 build\kernel\components\dfs\filesystems\devfs\devfs.o
  2627. .debug_line 0x00000000000063ef 0x3e3 build\kernel\components\drivers\misc\pin.o
  2628. .debug_line 0x00000000000067d2 0x62f build\kernel\components\drivers\serial\serial.o
  2629. .debug_line 0x0000000000006e01 0x2f8 build\kernel\components\drivers\src\completion.o
  2630. .debug_line 0x00000000000070f9 0x424 build\kernel\components\drivers\src\dataqueue.o
  2631. .debug_line 0x000000000000751d 0x517 build\kernel\components\finsh\shell.o
  2632. .debug_line 0x0000000000007a34 0x634 build\kernel\components\finsh\cmd.o
  2633. .debug_line 0x0000000000008068 0x4d3 build\kernel\components\finsh\msh.o
  2634. .debug_line 0x000000000000853b 0x4c1 build\kernel\components\finsh\msh_file.o
  2635. .debug_line 0x00000000000089fc 0x773 build\kernel\components\finsh\finsh_compiler.o
  2636. .debug_line 0x000000000000916f 0x2de build\kernel\components\finsh\finsh_error.o
  2637. .debug_line 0x000000000000944d 0x3c0 build\kernel\components\finsh\finsh_heap.o
  2638. .debug_line 0x000000000000980d 0x304 build\kernel\components\finsh\finsh_init.o
  2639. .debug_line 0x0000000000009b11 0x34d build\kernel\components\finsh\finsh_node.o
  2640. .debug_line 0x0000000000009e5e 0x464 build\kernel\components\finsh\finsh_ops.o
  2641. .debug_line 0x000000000000a2c2 0x5bf build\kernel\components\finsh\finsh_parser.o
  2642. .debug_line 0x000000000000a881 0x372 build\kernel\components\finsh\finsh_var.o
  2643. .debug_line 0x000000000000abf3 0x33c build\kernel\components\finsh\finsh_vm.o
  2644. .debug_line 0x000000000000af2f 0x51e build\kernel\components\finsh\finsh_token.o
  2645. .debug_line 0x000000000000b44d 0x255 build\kernel\components\libc\compilers\newlib\libc.o
  2646. .debug_line 0x000000000000b6a2 0x290 build\kernel\components\libc\compilers\newlib\stdio.o
  2647. .debug_line 0x000000000000b932 0x3f6 build\kernel\components\libc\compilers\newlib\syscalls.o
  2648. .debug_str 0x0000000000000000 0x5992
  2649. .debug_str 0x0000000000000000 0x702 build\applications\board.o
  2650. 0x7fb (size before relaxing)
  2651. .debug_str 0x0000000000000702 0x14 build\applications\main.o
  2652. 0x572 (size before relaxing)
  2653. .debug_str 0x0000000000000716 0x352 build\drivers\gpio.o
  2654. 0xa2f (size before relaxing)
  2655. .debug_str 0x0000000000000a68 0x18a build\drivers\uart.o
  2656. 0xaf4 (size before relaxing)
  2657. .debug_str 0x0000000000000bf2 0x119 build\kernel\src\clock.o
  2658. 0x7e4 (size before relaxing)
  2659. .debug_str 0x0000000000000d0b 0xf6 build\kernel\src\components.o
  2660. 0x891 (size before relaxing)
  2661. .debug_str 0x0000000000000e01 0x297 build\kernel\src\device.o
  2662. 0xbc4 (size before relaxing)
  2663. .debug_str 0x0000000000001098 0x10c build\kernel\src\idle.o
  2664. 0x88b (size before relaxing)
  2665. .debug_str 0x00000000000011a4 0x4af build\kernel\src\ipc.o
  2666. 0xdd7 (size before relaxing)
  2667. .debug_str 0x0000000000001653 0xc8 build\kernel\src\irq.o
  2668. 0x6e0 (size before relaxing)
  2669. .debug_str 0x000000000000171b 0x307 build\kernel\src\kservice.o
  2670. 0xd69 (size before relaxing)
  2671. .debug_str 0x0000000000001a22 0x18d build\kernel\src\mem.o
  2672. 0x90f (size before relaxing)
  2673. .debug_str 0x0000000000001baf 0x2d2 build\kernel\src\object.o
  2674. 0xb2c (size before relaxing)
  2675. .debug_str 0x0000000000001e81 0x1ed build\kernel\src\scheduler.o
  2676. 0xa1c (size before relaxing)
  2677. .debug_str 0x000000000000206e 0x1f3 build\kernel\src\thread.o
  2678. 0xb5f (size before relaxing)
  2679. .debug_str 0x0000000000002261 0x1a6 build\kernel\src\timer.o
  2680. 0xa61 (size before relaxing)
  2681. .debug_str 0x0000000000002407 0xcf build\kernel\libcpu\arm\am335x\cpu.o
  2682. 0x70b (size before relaxing)
  2683. .debug_str 0x00000000000024d6 0x1d0 build\kernel\libcpu\arm\am335x\interrupt.o
  2684. 0x81e (size before relaxing)
  2685. .debug_str 0x00000000000026a6 0x3c build\kernel\libcpu\arm\am335x\stack.o
  2686. 0x666 (size before relaxing)
  2687. .debug_str 0x00000000000026e2 0xbe build\kernel\libcpu\arm\am335x\trap.o
  2688. 0x854 (size before relaxing)
  2689. .debug_str 0x00000000000027a0 0x38 build\kernel\libcpu\arm\am335x\context_gcc.o
  2690. 0x5f (size before relaxing)
  2691. .debug_str 0x00000000000027d8 0x27 build\kernel\libcpu\arm\am335x\cp15_gcc.o
  2692. 0x5c (size before relaxing)
  2693. .debug_str 0x00000000000027ff 0x28 build\kernel\libcpu\arm\am335x\start_gcc.o
  2694. 0x5d (size before relaxing)
  2695. .debug_str 0x0000000000002827 0x29 build\kernel\libcpu\arm\am335x\vector_gcc.o
  2696. 0x5e (size before relaxing)
  2697. .debug_str 0x0000000000002850 0x393 build\kernel\components\dfs\src\dfs.o
  2698. 0xfb0 (size before relaxing)
  2699. .debug_str 0x0000000000002be3 0x233 build\kernel\components\dfs\src\dfs_file.o
  2700. 0xf63 (size before relaxing)
  2701. .debug_str 0x0000000000002e16 0x16b build\kernel\components\dfs\src\dfs_fs.o
  2702. 0xed0 (size before relaxing)
  2703. .debug_str 0x0000000000002f81 0x112 build\kernel\components\dfs\src\dfs_posix.o
  2704. 0xe51 (size before relaxing)
  2705. .debug_str 0x0000000000003093 0x138 build\kernel\components\dfs\filesystems\devfs\devfs.o
  2706. 0xefe (size before relaxing)
  2707. .debug_str 0x00000000000031cb 0x1d4 build\kernel\components\drivers\misc\pin.o
  2708. 0xc3e (size before relaxing)
  2709. .debug_str 0x000000000000339f 0x2c0 build\kernel\components\drivers\serial\serial.o
  2710. 0xd33 (size before relaxing)
  2711. .debug_str 0x000000000000365f 0x67 build\kernel\components\drivers\src\completion.o
  2712. 0x858 (size before relaxing)
  2713. .debug_str 0x00000000000036c6 0xb3 build\kernel\components\drivers\src\dataqueue.o
  2714. 0x929 (size before relaxing)
  2715. .debug_str 0x0000000000003779 0x327 build\kernel\components\finsh\shell.o
  2716. 0xeb9 (size before relaxing)
  2717. .debug_str 0x0000000000003aa0 0x950 build\kernel\components\finsh\cmd.o
  2718. 0x1776 (size before relaxing)
  2719. .debug_str 0x00000000000043f0 0x23a build\kernel\components\finsh\msh.o
  2720. 0x9ba (size before relaxing)
  2721. .debug_str 0x000000000000462a 0x31a build\kernel\components\finsh\msh_file.o
  2722. 0xbff (size before relaxing)
  2723. .debug_str 0x0000000000004944 0xfb build\kernel\components\finsh\finsh_compiler.o
  2724. 0x937 (size before relaxing)
  2725. .debug_str 0x0000000000004a3f 0x8f build\kernel\components\finsh\finsh_error.o
  2726. 0x743 (size before relaxing)
  2727. .debug_str 0x0000000000004ace 0xfe build\kernel\components\finsh\finsh_heap.o
  2728. 0x942 (size before relaxing)
  2729. .debug_str 0x0000000000004bcc 0x5e build\kernel\components\finsh\finsh_init.o
  2730. 0x82f (size before relaxing)
  2731. .debug_str 0x0000000000004c2a 0xdb build\kernel\components\finsh\finsh_node.o
  2732. 0x814 (size before relaxing)
  2733. .debug_str 0x0000000000004d05 0x29f build\kernel\components\finsh\finsh_ops.o
  2734. 0x9f5 (size before relaxing)
  2735. .debug_str 0x0000000000004fa4 0x501 build\kernel\components\finsh\finsh_parser.o
  2736. 0xdb9 (size before relaxing)
  2737. .debug_str 0x00000000000054a5 0x9a build\kernel\components\finsh\finsh_var.o
  2738. 0x8b2 (size before relaxing)
  2739. .debug_str 0x000000000000553f 0x5d build\kernel\components\finsh\finsh_vm.o
  2740. 0x7b3 (size before relaxing)
  2741. .debug_str 0x000000000000559c 0x128 build\kernel\components\finsh\finsh_token.o
  2742. 0xb7f (size before relaxing)
  2743. .debug_str 0x00000000000056c4 0x59 build\kernel\components\libc\compilers\newlib\libc.o
  2744. 0x97e (size before relaxing)
  2745. .debug_str 0x000000000000571d 0x77 build\kernel\components\libc\compilers\newlib\stdio.o
  2746. 0x68f (size before relaxing)
  2747. .debug_str 0x0000000000005794 0x1fe build\kernel\components\libc\compilers\newlib\syscalls.o
  2748. 0xdd0 (size before relaxing)
  2749. .debug_frame 0x0000000000000000 0x604c
  2750. .debug_frame 0x0000000000000000 0xac build\applications\board.o
  2751. .debug_frame 0x00000000000000ac 0x2c build\applications\main.o
  2752. .debug_frame 0x00000000000000d8 0x8c build\drivers\gpio.o
  2753. .debug_frame 0x0000000000000164 0x154 build\drivers\uart.o
  2754. .debug_frame 0x00000000000002b8 0xac build\kernel\src\clock.o
  2755. .debug_frame 0x0000000000000364 0x148 build\kernel\src\components.o
  2756. .debug_frame 0x00000000000004ac 0x1d8 build\kernel\src\device.o
  2757. .debug_frame 0x0000000000000684 0x110 build\kernel\src\idle.o
  2758. .debug_frame 0x0000000000000794 0x654 build\kernel\src\ipc.o
  2759. .debug_frame 0x0000000000000de8 0xb0 build\kernel\src\irq.o
  2760. .debug_frame 0x0000000000000e98 0x488 build\kernel\src\kservice.o
  2761. .debug_frame 0x0000000000001320 0x15c build\kernel\src\mem.o
  2762. .debug_frame 0x000000000000147c 0x240 build\kernel\src\object.o
  2763. .debug_frame 0x00000000000016bc 0x204 build\kernel\src\scheduler.o
  2764. .debug_frame 0x00000000000018c0 0x34c build\kernel\src\thread.o
  2765. .debug_frame 0x0000000000001c0c 0x2a8 build\kernel\src\timer.o
  2766. .debug_frame 0x0000000000001eb4 0x138 build\kernel\libcpu\arm\am335x\cpu.o
  2767. .debug_frame 0x0000000000001fec 0x18c build\kernel\libcpu\arm\am335x\interrupt.o
  2768. .debug_frame 0x0000000000002178 0x34 build\kernel\libcpu\arm\am335x\stack.o
  2769. .debug_frame 0x00000000000021ac 0xf0 build\kernel\libcpu\arm\am335x\trap.o
  2770. .debug_frame 0x000000000000229c 0x19c build\kernel\components\dfs\src\dfs.o
  2771. .debug_frame 0x0000000000002438 0x284 build\kernel\components\dfs\src\dfs_file.o
  2772. .debug_frame 0x00000000000026bc 0x164 build\kernel\components\dfs\src\dfs_fs.o
  2773. .debug_frame 0x0000000000002820 0x36c build\kernel\components\dfs\src\dfs_posix.o
  2774. .debug_frame 0x0000000000002b8c 0x150 build\kernel\components\dfs\filesystems\devfs\devfs.o
  2775. .debug_frame 0x0000000000002cdc 0x174 build\kernel\components\drivers\misc\pin.o
  2776. .debug_frame 0x0000000000002e50 0x280 build\kernel\components\drivers\serial\serial.o
  2777. .debug_frame 0x00000000000030d0 0xd0 build\kernel\components\drivers\src\completion.o
  2778. .debug_frame 0x00000000000031a0 0x158 build\kernel\components\drivers\src\dataqueue.o
  2779. .debug_frame 0x00000000000032f8 0x248 build\kernel\components\finsh\shell.o
  2780. .debug_frame 0x0000000000003540 0x2f0 build\kernel\components\finsh\cmd.o
  2781. .debug_frame 0x0000000000003830 0x1b8 build\kernel\components\finsh\msh.o
  2782. .debug_frame 0x00000000000039e8 0x1e4 build\kernel\components\finsh\msh_file.o
  2783. .debug_frame 0x0000000000003bcc 0x78 build\kernel\components\finsh\finsh_compiler.o
  2784. .debug_frame 0x0000000000003c44 0x90 build\kernel\components\finsh\finsh_error.o
  2785. .debug_frame 0x0000000000003cd4 0x10c build\kernel\components\finsh\finsh_heap.o
  2786. .debug_frame 0x0000000000003de0 0x90 build\kernel\components\finsh\finsh_init.o
  2787. .debug_frame 0x0000000000003e70 0x110 build\kernel\components\finsh\finsh_node.o
  2788. .debug_frame 0x0000000000003f80 0x618 build\kernel\components\finsh\finsh_ops.o
  2789. .debug_frame 0x0000000000004598 0x29c build\kernel\components\finsh\finsh_parser.o
  2790. .debug_frame 0x0000000000004834 0xd0 build\kernel\components\finsh\finsh_var.o
  2791. .debug_frame 0x0000000000004904 0x74 build\kernel\components\finsh\finsh_vm.o
  2792. .debug_frame 0x0000000000004978 0x1e0 build\kernel\components\finsh\finsh_token.o
  2793. .debug_frame 0x0000000000004b58 0x30 build\kernel\components\libc\compilers\newlib\libc.o
  2794. .debug_frame 0x0000000000004b88 0x4c build\kernel\components\libc\compilers\newlib\stdio.o
  2795. .debug_frame 0x0000000000004bd4 0x46c build\kernel\components\libc\compilers\newlib\syscalls.o
  2796. .debug_frame 0x0000000000005040 0x30 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  2797. .debug_frame 0x0000000000005070 0x3c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  2798. .debug_frame 0x00000000000050ac 0x5c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  2799. .debug_frame 0x0000000000005108 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  2800. .debug_frame 0x0000000000005134 0x150 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  2801. .debug_frame 0x0000000000005284 0x44 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  2802. .debug_frame 0x00000000000052c8 0x30 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  2803. .debug_frame 0x00000000000052f8 0x54 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  2804. .debug_frame 0x000000000000534c 0x54 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  2805. .debug_frame 0x00000000000053a0 0xb0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  2806. .debug_frame 0x0000000000005450 0x58 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  2807. .debug_frame 0x00000000000054a8 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  2808. .debug_frame 0x00000000000054d4 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  2809. .debug_frame 0x00000000000054fc 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  2810. .debug_frame 0x000000000000551c 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  2811. .debug_frame 0x000000000000553c 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  2812. .debug_frame 0x0000000000005568 0x40 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  2813. .debug_frame 0x00000000000055a8 0x40 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  2814. .debug_frame 0x00000000000055e8 0x60 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  2815. .debug_frame 0x0000000000005648 0x38 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  2816. .debug_frame 0x0000000000005680 0x7c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  2817. .debug_frame 0x00000000000056fc 0x88 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  2818. .debug_frame 0x0000000000005784 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  2819. .debug_frame 0x00000000000057a4 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcmp.o)
  2820. .debug_frame 0x00000000000057c4 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  2821. .debug_frame 0x00000000000057e4 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  2822. .debug_frame 0x0000000000005810 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  2823. .debug_frame 0x0000000000005838 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  2824. .debug_frame 0x0000000000005864 0x38 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  2825. .debug_frame 0x000000000000589c 0x30 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  2826. .debug_frame 0x00000000000058cc 0x88 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  2827. .debug_frame 0x0000000000005954 0x5c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  2828. .debug_frame 0x00000000000059b0 0x6c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  2829. .debug_frame 0x0000000000005a1c 0x30 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  2830. .debug_frame 0x0000000000005a4c 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  2831. .debug_frame 0x0000000000005a78 0x3c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  2832. .debug_frame 0x0000000000005ab4 0x50 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  2833. .debug_frame 0x0000000000005b04 0x68 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  2834. .debug_frame 0x0000000000005b6c 0x40 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  2835. .debug_frame 0x0000000000005bac 0x30 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  2836. .debug_frame 0x0000000000005bdc 0x48 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  2837. .debug_frame 0x0000000000005c24 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  2838. .debug_frame 0x0000000000005c4c 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  2839. .debug_frame 0x0000000000005c74 0x230 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2840. .debug_frame 0x0000000000005ea4 0x28 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  2841. .debug_frame 0x0000000000005ecc 0x6c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  2842. .debug_frame 0x0000000000005f38 0x3c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  2843. .debug_frame 0x0000000000005f74 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  2844. .debug_frame 0x0000000000005fa0 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  2845. .debug_frame 0x0000000000005fc0 0x20 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  2846. .debug_frame 0x0000000000005fe0 0x2c c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  2847. .debug_frame 0x000000000000600c 0x40 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  2848. .debug_ranges 0x0000000000000000 0x138
  2849. .debug_ranges 0x0000000000000000 0x30 build\kernel\src\scheduler.o
  2850. .debug_ranges 0x0000000000000030 0x18 build\kernel\src\timer.o
  2851. .debug_ranges 0x0000000000000048 0x18 build\kernel\components\dfs\src\dfs.o
  2852. .debug_ranges 0x0000000000000060 0x48 build\kernel\components\drivers\serial\serial.o
  2853. .debug_ranges 0x00000000000000a8 0x90 build\kernel\components\finsh\finsh_compiler.o
  2854. Cross Reference Table
  2855. Symbol File
  2856. AM335X_VECTOR_BASE build\kernel\libcpu\arm\am335x\interrupt.o
  2857. OP_add_byte build\kernel\components\finsh\finsh_ops.o
  2858. OP_add_dword build\kernel\components\finsh\finsh_ops.o
  2859. OP_add_word build\kernel\components\finsh\finsh_ops.o
  2860. OP_and_byte build\kernel\components\finsh\finsh_ops.o
  2861. OP_and_dword build\kernel\components\finsh\finsh_ops.o
  2862. OP_and_word build\kernel\components\finsh\finsh_ops.o
  2863. OP_bw_byte build\kernel\components\finsh\finsh_ops.o
  2864. OP_bw_dword build\kernel\components\finsh\finsh_ops.o
  2865. OP_bw_word build\kernel\components\finsh\finsh_ops.o
  2866. OP_call build\kernel\components\finsh\finsh_ops.o
  2867. OP_div_byte build\kernel\components\finsh\finsh_ops.o
  2868. OP_div_dword build\kernel\components\finsh\finsh_ops.o
  2869. OP_div_word build\kernel\components\finsh\finsh_ops.o
  2870. OP_ld_byte build\kernel\components\finsh\finsh_ops.o
  2871. OP_ld_dword build\kernel\components\finsh\finsh_ops.o
  2872. OP_ld_value_byte build\kernel\components\finsh\finsh_ops.o
  2873. OP_ld_value_byte_stack build\kernel\components\finsh\finsh_ops.o
  2874. OP_ld_value_dword build\kernel\components\finsh\finsh_ops.o
  2875. OP_ld_value_dword_stack build\kernel\components\finsh\finsh_ops.o
  2876. OP_ld_value_word build\kernel\components\finsh\finsh_ops.o
  2877. OP_ld_value_word_stack build\kernel\components\finsh\finsh_ops.o
  2878. OP_ld_word build\kernel\components\finsh\finsh_ops.o
  2879. OP_mod_byte build\kernel\components\finsh\finsh_ops.o
  2880. OP_mod_dword build\kernel\components\finsh\finsh_ops.o
  2881. OP_mod_word build\kernel\components\finsh\finsh_ops.o
  2882. OP_mul_byte build\kernel\components\finsh\finsh_ops.o
  2883. OP_mul_dword build\kernel\components\finsh\finsh_ops.o
  2884. OP_mul_word build\kernel\components\finsh\finsh_ops.o
  2885. OP_no_op build\kernel\components\finsh\finsh_ops.o
  2886. OP_or_byte build\kernel\components\finsh\finsh_ops.o
  2887. OP_or_dword build\kernel\components\finsh\finsh_ops.o
  2888. OP_or_word build\kernel\components\finsh\finsh_ops.o
  2889. OP_pop build\kernel\components\finsh\finsh_ops.o
  2890. OP_shl_byte build\kernel\components\finsh\finsh_ops.o
  2891. OP_shl_dword build\kernel\components\finsh\finsh_ops.o
  2892. OP_shl_word build\kernel\components\finsh\finsh_ops.o
  2893. OP_shr_byte build\kernel\components\finsh\finsh_ops.o
  2894. OP_shr_dword build\kernel\components\finsh\finsh_ops.o
  2895. OP_shr_word build\kernel\components\finsh\finsh_ops.o
  2896. OP_st_byte build\kernel\components\finsh\finsh_ops.o
  2897. OP_st_dword build\kernel\components\finsh\finsh_ops.o
  2898. OP_st_word build\kernel\components\finsh\finsh_ops.o
  2899. OP_sub_byte build\kernel\components\finsh\finsh_ops.o
  2900. OP_sub_dword build\kernel\components\finsh\finsh_ops.o
  2901. OP_sub_word build\kernel\components\finsh\finsh_ops.o
  2902. OP_xor_byte build\kernel\components\finsh\finsh_ops.o
  2903. OP_xor_dword build\kernel\components\finsh\finsh_ops.o
  2904. OP_xor_word build\kernel\components\finsh\finsh_ops.o
  2905. _Balloc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2906. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  2907. _Bfree c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2908. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  2909. _PathLocale c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  2910. __aeabi_idiv c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  2911. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2912. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  2913. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  2914. build\kernel\components\finsh\finsh_ops.o
  2915. __aeabi_idiv0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_dvmd_tls.o)
  2916. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  2917. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  2918. __aeabi_idivmod c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  2919. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  2920. build\kernel\components\finsh\finsh_ops.o
  2921. __aeabi_ldiv0 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_dvmd_tls.o)
  2922. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  2923. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  2924. __aeabi_ldivmod c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  2925. build\kernel\components\libc\compilers\common\time.o
  2926. __aeabi_uidiv c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  2927. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  2928. build\kernel\components\finsh\finsh_ops.o
  2929. build\kernel\components\finsh\cmd.o
  2930. build\kernel\src\mempool.o
  2931. build\kernel\src\ipc.o
  2932. __aeabi_uidivmod c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  2933. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  2934. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  2935. build\kernel\components\finsh\finsh_ops.o
  2936. build\kernel\components\drivers\serial\serial.o
  2937. __aeabi_uldivmod c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  2938. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  2939. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  2940. __any_on c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2941. __ascii_mbtowc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  2942. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  2943. __ascii_wctomb c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  2944. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  2945. __b2d c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2946. __bss_end build\kernel\libcpu\arm\am335x\start_gcc.o
  2947. __bss_end__ c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  2948. __bss_start build\kernel\libcpu\arm\am335x\start_gcc.o
  2949. __bss_start__ c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  2950. __copybits c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2951. __ctors_end__ build\kernel\libcpu\arm\am335x\start_gcc.o
  2952. __ctors_start__ build\kernel\libcpu\arm\am335x\start_gcc.o
  2953. __d2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  2954. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  2955. __deregister_frame_info c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  2956. __div0 build\kernel\libcpu\arm\common\div0.o
  2957. __divsi3 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_divsi3.o)
  2958. __dso_handle c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  2959. __env_lock c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  2960. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  2961. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  2962. __env_unlock c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  2963. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  2964. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  2965. __errno build\kernel\components\libc\compilers\newlib\syscalls.o
  2966. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  2967. __fp_lock_all c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  2968. __fp_unlock_all c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  2969. __fsym___cmd_cat build\kernel\components\finsh\msh_file.o
  2970. __fsym___cmd_cat_desc build\kernel\components\finsh\msh_file.o
  2971. __fsym___cmd_cat_name build\kernel\components\finsh\msh_file.o
  2972. __fsym___cmd_cd build\kernel\components\finsh\msh_file.o
  2973. __fsym___cmd_cd_desc build\kernel\components\finsh\msh_file.o
  2974. __fsym___cmd_cd_name build\kernel\components\finsh\msh_file.o
  2975. __fsym___cmd_clear build\kernel\components\finsh\cmd.o
  2976. __fsym___cmd_clear_desc build\kernel\components\finsh\cmd.o
  2977. __fsym___cmd_clear_name build\kernel\components\finsh\cmd.o
  2978. __fsym___cmd_cp build\kernel\components\finsh\msh_file.o
  2979. __fsym___cmd_cp_desc build\kernel\components\finsh\msh_file.o
  2980. __fsym___cmd_cp_name build\kernel\components\finsh\msh_file.o
  2981. __fsym___cmd_df build\kernel\components\finsh\msh_file.o
  2982. __fsym___cmd_df_desc build\kernel\components\finsh\msh_file.o
  2983. __fsym___cmd_df_name build\kernel\components\finsh\msh_file.o
  2984. __fsym___cmd_echo build\kernel\components\finsh\msh_file.o
  2985. __fsym___cmd_echo_desc build\kernel\components\finsh\msh_file.o
  2986. __fsym___cmd_echo_name build\kernel\components\finsh\msh_file.o
  2987. __fsym___cmd_exit build\kernel\components\finsh\msh.o
  2988. __fsym___cmd_exit_desc build\kernel\components\finsh\msh.o
  2989. __fsym___cmd_exit_name build\kernel\components\finsh\msh.o
  2990. __fsym___cmd_free build\kernel\components\finsh\msh.o
  2991. __fsym___cmd_free_desc build\kernel\components\finsh\msh.o
  2992. __fsym___cmd_free_name build\kernel\components\finsh\msh.o
  2993. __fsym___cmd_help build\kernel\components\finsh\msh.o
  2994. __fsym___cmd_help_desc build\kernel\components\finsh\msh.o
  2995. __fsym___cmd_help_name build\kernel\components\finsh\msh.o
  2996. __fsym___cmd_list_device build\kernel\components\finsh\cmd.o
  2997. __fsym___cmd_list_device_desc build\kernel\components\finsh\cmd.o
  2998. __fsym___cmd_list_device_name build\kernel\components\finsh\cmd.o
  2999. __fsym___cmd_list_event build\kernel\components\finsh\cmd.o
  3000. __fsym___cmd_list_event_desc build\kernel\components\finsh\cmd.o
  3001. __fsym___cmd_list_event_name build\kernel\components\finsh\cmd.o
  3002. __fsym___cmd_list_fd build\kernel\components\dfs\src\dfs.o
  3003. __fsym___cmd_list_fd_desc build\kernel\components\dfs\src\dfs.o
  3004. __fsym___cmd_list_fd_name build\kernel\components\dfs\src\dfs.o
  3005. __fsym___cmd_list_mailbox build\kernel\components\finsh\cmd.o
  3006. __fsym___cmd_list_mailbox_desc build\kernel\components\finsh\cmd.o
  3007. __fsym___cmd_list_mailbox_name build\kernel\components\finsh\cmd.o
  3008. __fsym___cmd_list_mempool build\kernel\components\finsh\cmd.o
  3009. __fsym___cmd_list_mempool_desc build\kernel\components\finsh\cmd.o
  3010. __fsym___cmd_list_mempool_name build\kernel\components\finsh\cmd.o
  3011. __fsym___cmd_list_msgqueue build\kernel\components\finsh\cmd.o
  3012. __fsym___cmd_list_msgqueue_desc build\kernel\components\finsh\cmd.o
  3013. __fsym___cmd_list_msgqueue_name build\kernel\components\finsh\cmd.o
  3014. __fsym___cmd_list_mutex build\kernel\components\finsh\cmd.o
  3015. __fsym___cmd_list_mutex_desc build\kernel\components\finsh\cmd.o
  3016. __fsym___cmd_list_mutex_name build\kernel\components\finsh\cmd.o
  3017. __fsym___cmd_list_sem build\kernel\components\finsh\cmd.o
  3018. __fsym___cmd_list_sem_desc build\kernel\components\finsh\cmd.o
  3019. __fsym___cmd_list_sem_name build\kernel\components\finsh\cmd.o
  3020. __fsym___cmd_list_thread build\kernel\components\finsh\cmd.o
  3021. __fsym___cmd_list_thread_desc build\kernel\components\finsh\cmd.o
  3022. __fsym___cmd_list_thread_name build\kernel\components\finsh\cmd.o
  3023. __fsym___cmd_list_timer build\kernel\components\finsh\cmd.o
  3024. __fsym___cmd_list_timer_desc build\kernel\components\finsh\cmd.o
  3025. __fsym___cmd_list_timer_name build\kernel\components\finsh\cmd.o
  3026. __fsym___cmd_ls build\kernel\components\finsh\msh_file.o
  3027. __fsym___cmd_ls_desc build\kernel\components\finsh\msh_file.o
  3028. __fsym___cmd_ls_name build\kernel\components\finsh\msh_file.o
  3029. __fsym___cmd_mkdir build\kernel\components\finsh\msh_file.o
  3030. __fsym___cmd_mkdir_desc build\kernel\components\finsh\msh_file.o
  3031. __fsym___cmd_mkdir_name build\kernel\components\finsh\msh_file.o
  3032. __fsym___cmd_mkfs build\kernel\components\finsh\msh_file.o
  3033. __fsym___cmd_mkfs_desc build\kernel\components\finsh\msh_file.o
  3034. __fsym___cmd_mkfs_name build\kernel\components\finsh\msh_file.o
  3035. __fsym___cmd_mv build\kernel\components\finsh\msh_file.o
  3036. __fsym___cmd_mv_desc build\kernel\components\finsh\msh_file.o
  3037. __fsym___cmd_mv_name build\kernel\components\finsh\msh_file.o
  3038. __fsym___cmd_ps build\kernel\components\finsh\msh.o
  3039. __fsym___cmd_ps_desc build\kernel\components\finsh\msh.o
  3040. __fsym___cmd_ps_name build\kernel\components\finsh\msh.o
  3041. __fsym___cmd_pwd build\kernel\components\finsh\msh_file.o
  3042. __fsym___cmd_pwd_desc build\kernel\components\finsh\msh_file.o
  3043. __fsym___cmd_pwd_name build\kernel\components\finsh\msh_file.o
  3044. __fsym___cmd_reboot build\applications\board.o
  3045. __fsym___cmd_reboot_desc build\applications\board.o
  3046. __fsym___cmd_reboot_name build\applications\board.o
  3047. __fsym___cmd_rm build\kernel\components\finsh\msh_file.o
  3048. __fsym___cmd_rm_desc build\kernel\components\finsh\msh_file.o
  3049. __fsym___cmd_rm_name build\kernel\components\finsh\msh_file.o
  3050. __fsym___cmd_version build\kernel\components\finsh\cmd.o
  3051. __fsym___cmd_version_desc build\kernel\components\finsh\cmd.o
  3052. __fsym___cmd_version_name build\kernel\components\finsh\cmd.o
  3053. __fsym_cat build\kernel\components\dfs\src\dfs_file.o
  3054. __fsym_cat_desc build\kernel\components\dfs\src\dfs_file.o
  3055. __fsym_cat_name build\kernel\components\dfs\src\dfs_file.o
  3056. __fsym_cd build\kernel\components\dfs\src\dfs_posix.o
  3057. __fsym_cd_desc build\kernel\components\dfs\src\dfs_posix.o
  3058. __fsym_cd_name build\kernel\components\dfs\src\dfs_posix.o
  3059. __fsym_clear build\kernel\components\finsh\cmd.o
  3060. __fsym_clear_desc build\kernel\components\finsh\cmd.o
  3061. __fsym_clear_name build\kernel\components\finsh\cmd.o
  3062. __fsym_copy build\kernel\components\dfs\src\dfs_file.o
  3063. __fsym_copy_desc build\kernel\components\dfs\src\dfs_file.o
  3064. __fsym_copy_name build\kernel\components\dfs\src\dfs_file.o
  3065. __fsym_df build\kernel\components\dfs\src\dfs_fs.o
  3066. __fsym_df_desc build\kernel\components\dfs\src\dfs_fs.o
  3067. __fsym_df_name build\kernel\components\dfs\src\dfs_fs.o
  3068. __fsym_hello build\kernel\components\finsh\cmd.o
  3069. __fsym_hello_desc build\kernel\components\finsh\cmd.o
  3070. __fsym_hello_name build\kernel\components\finsh\cmd.o
  3071. __fsym_list build\kernel\components\finsh\cmd.o
  3072. __fsym_list_desc build\kernel\components\finsh\cmd.o
  3073. __fsym_list_device build\kernel\components\finsh\cmd.o
  3074. __fsym_list_device_desc build\kernel\components\finsh\cmd.o
  3075. __fsym_list_device_name build\kernel\components\finsh\cmd.o
  3076. __fsym_list_event build\kernel\components\finsh\cmd.o
  3077. __fsym_list_event_desc build\kernel\components\finsh\cmd.o
  3078. __fsym_list_event_name build\kernel\components\finsh\cmd.o
  3079. __fsym_list_mailbox build\kernel\components\finsh\cmd.o
  3080. __fsym_list_mailbox_desc build\kernel\components\finsh\cmd.o
  3081. __fsym_list_mailbox_name build\kernel\components\finsh\cmd.o
  3082. __fsym_list_mem build\kernel\src\mem.o
  3083. __fsym_list_mem_desc build\kernel\src\mem.o
  3084. __fsym_list_mem_name build\kernel\src\mem.o
  3085. __fsym_list_mempool build\kernel\components\finsh\cmd.o
  3086. __fsym_list_mempool_desc build\kernel\components\finsh\cmd.o
  3087. __fsym_list_mempool_name build\kernel\components\finsh\cmd.o
  3088. __fsym_list_msgqueue build\kernel\components\finsh\cmd.o
  3089. __fsym_list_msgqueue_desc build\kernel\components\finsh\cmd.o
  3090. __fsym_list_msgqueue_name build\kernel\components\finsh\cmd.o
  3091. __fsym_list_mutex build\kernel\components\finsh\cmd.o
  3092. __fsym_list_mutex_desc build\kernel\components\finsh\cmd.o
  3093. __fsym_list_mutex_name build\kernel\components\finsh\cmd.o
  3094. __fsym_list_name build\kernel\components\finsh\cmd.o
  3095. __fsym_list_sem build\kernel\components\finsh\cmd.o
  3096. __fsym_list_sem_desc build\kernel\components\finsh\cmd.o
  3097. __fsym_list_sem_name build\kernel\components\finsh\cmd.o
  3098. __fsym_list_thread build\kernel\components\finsh\cmd.o
  3099. __fsym_list_thread_desc build\kernel\components\finsh\cmd.o
  3100. __fsym_list_thread_name build\kernel\components\finsh\cmd.o
  3101. __fsym_list_timer build\kernel\components\finsh\cmd.o
  3102. __fsym_list_timer_desc build\kernel\components\finsh\cmd.o
  3103. __fsym_list_timer_name build\kernel\components\finsh\cmd.o
  3104. __fsym_ls build\kernel\components\dfs\src\dfs_file.o
  3105. __fsym_ls_desc build\kernel\components\dfs\src\dfs_file.o
  3106. __fsym_ls_name build\kernel\components\dfs\src\dfs_file.o
  3107. __fsym_mkdir build\kernel\components\dfs\src\dfs_posix.o
  3108. __fsym_mkdir_desc build\kernel\components\dfs\src\dfs_posix.o
  3109. __fsym_mkdir_name build\kernel\components\dfs\src\dfs_posix.o
  3110. __fsym_mkfs build\kernel\components\dfs\src\dfs_fs.o
  3111. __fsym_mkfs_desc build\kernel\components\dfs\src\dfs_fs.o
  3112. __fsym_mkfs_name build\kernel\components\dfs\src\dfs_fs.o
  3113. __fsym_msh build\kernel\components\finsh\msh.o
  3114. __fsym_msh_desc build\kernel\components\finsh\msh.o
  3115. __fsym_msh_name build\kernel\components\finsh\msh.o
  3116. __fsym_pinGet build\kernel\components\drivers\misc\pin.o
  3117. __fsym_pinGet_desc build\kernel\components\drivers\misc\pin.o
  3118. __fsym_pinGet_name build\kernel\components\drivers\misc\pin.o
  3119. __fsym_pinMode build\kernel\components\drivers\misc\pin.o
  3120. __fsym_pinMode_desc build\kernel\components\drivers\misc\pin.o
  3121. __fsym_pinMode_name build\kernel\components\drivers\misc\pin.o
  3122. __fsym_pinRead build\kernel\components\drivers\misc\pin.o
  3123. __fsym_pinRead_desc build\kernel\components\drivers\misc\pin.o
  3124. __fsym_pinRead_name build\kernel\components\drivers\misc\pin.o
  3125. __fsym_pinWrite build\kernel\components\drivers\misc\pin.o
  3126. __fsym_pinWrite_desc build\kernel\components\drivers\misc\pin.o
  3127. __fsym_pinWrite_name build\kernel\components\drivers\misc\pin.o
  3128. __fsym_reboot build\applications\board.o
  3129. __fsym_reboot_desc build\applications\board.o
  3130. __fsym_reboot_name build\applications\board.o
  3131. __fsym_rm build\kernel\components\dfs\src\dfs_file.o
  3132. __fsym_rm_desc build\kernel\components\dfs\src\dfs_file.o
  3133. __fsym_rm_name build\kernel\components\dfs\src\dfs_file.o
  3134. __fsym_version build\kernel\components\finsh\cmd.o
  3135. __fsym_version_desc build\kernel\components\finsh\cmd.o
  3136. __fsym_version_name build\kernel\components\finsh\cmd.o
  3137. __fsymtab_end build\kernel\components\finsh\shell.o
  3138. __fsymtab_start build\kernel\components\finsh\shell.o
  3139. __global_locale c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  3140. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  3141. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  3142. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  3143. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  3144. __hi0bits c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3145. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3146. __i2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3147. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3148. __isleap build\kernel\components\libc\compilers\common\time.o
  3149. __libc_fini_array c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3150. __libc_init_array build\kernel\components\libc\compilers\newlib\syscalls.o
  3151. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3152. __lo0bits c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3153. __locale_ctype_ptr c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  3154. __locale_ctype_ptr_l c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  3155. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  3156. __locale_mb_cur_max c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  3157. __localeconv_l c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  3158. __lock___arc4random_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3159. __lock___at_quick_exit_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3160. __lock___atexit_recursive_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3161. __lock___dd_hash_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3162. __lock___env_recursive_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3163. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  3164. __lock___malloc_recursive_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3165. __lock___sfp_recursive_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3166. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3167. __lock___sinit_recursive_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3168. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3169. __lock___tz_mutex c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3170. __lowest_bit_bitmap build\kernel\src\kservice.o
  3171. __lshift c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3172. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3173. __mcmp c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3174. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3175. __mdiff c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3176. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3177. __mprec_bigtens c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3178. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3179. __mprec_tens c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3180. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3181. __mprec_tinytens c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3182. __multadd c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3183. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3184. __multiply c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3185. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3186. __pow5mult c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3187. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3188. __ratio c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3189. __register_frame_info c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crtbegin.o
  3190. __retarget_lock_acquire c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3191. __retarget_lock_acquire_recursive c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3192. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  3193. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3194. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  3195. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3196. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3197. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3198. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  3199. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3200. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3201. __retarget_lock_close c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3202. __retarget_lock_close_recursive c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3203. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3204. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3205. __retarget_lock_init c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3206. __retarget_lock_init_recursive c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3207. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3208. __retarget_lock_release c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3209. __retarget_lock_release_recursive c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3210. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-envlock.o)
  3211. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3212. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  3213. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3214. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3215. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3216. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  3217. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3218. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3219. __retarget_lock_try_acquire c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3220. __retarget_lock_try_acquire_recursive c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-lock.o)
  3221. __rt_ffs build\kernel\src\kservice.o
  3222. build\kernel\src\scheduler.o
  3223. __rt_init_dfs_init build\kernel\components\dfs\src\dfs.o
  3224. __rt_init_finsh_system_init build\kernel\components\finsh\shell.o
  3225. __rt_init_libc_system_init build\kernel\components\libc\compilers\newlib\libc.o
  3226. __rt_init_rt_hw_gpio_init build\drivers\gpio.o
  3227. __rt_init_rt_hw_serial_init build\drivers\uart.o
  3228. __rt_init_rt_hw_timer_init build\applications\board.o
  3229. __rt_init_rti_board_end build\kernel\src\components.o
  3230. __rt_init_rti_board_start build\kernel\src\components.o
  3231. __rt_init_rti_end build\kernel\src\components.o
  3232. __rt_init_rti_start build\kernel\src\components.o
  3233. __s2b c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3234. __sclose c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3235. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3236. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3237. __seofread c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3238. __sflags c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-flags.o)
  3239. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3240. __sflush_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3241. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3242. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3243. __sfmoreglue c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3244. __sfp c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3245. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3246. __sfp_lock_acquire c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3247. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3248. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3249. __sfp_lock_release c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3250. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3251. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3252. __sfvwrite_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3253. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  3254. __sinit c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3255. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  3256. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3257. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3258. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  3259. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3260. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  3261. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3262. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3263. __sinit_lock_acquire c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3264. __sinit_lock_release c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3265. __smakebuf_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  3266. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  3267. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3268. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3269. __spm build\kernel\components\libc\compilers\common\time.o
  3270. __sread c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3271. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3272. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3273. __srefill_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3274. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3275. __sseek c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3276. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3277. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3278. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3279. __ssprint_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3280. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3281. __stack c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3282. __swhatbuf_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  3283. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3284. __swrite c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3285. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3286. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3287. __swsetup_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  3288. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3289. __udivmoddi4 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivmoddi4.o)
  3290. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_uldivmod.o)
  3291. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_aeabi_ldivmod.o)
  3292. __udivsi3 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp\libgcc.a(_udivsi3.o)
  3293. __ulp c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3294. __vsym_dummy build\kernel\components\finsh\cmd.o
  3295. __vsym_dummy_desc build\kernel\components\finsh\cmd.o
  3296. __vsym_dummy_name build\kernel\components\finsh\cmd.o
  3297. __vsymtab_end build\kernel\components\finsh\shell.o
  3298. __vsymtab_start build\kernel\components\finsh\shell.o
  3299. __wqueue_default_wake build\kernel\components\drivers\src\waitqueue.o
  3300. _atoi_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  3301. _calloc_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3302. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3303. _cleanup c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3304. _cleanup_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3305. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  3306. _close_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3307. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3308. _ctype_ c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-ctype_.o)
  3309. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  3310. _dtoa_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3311. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3312. _execve_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3313. _fclose_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3314. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3315. _fcntl_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3316. _fflush_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3317. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3318. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3319. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3320. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3321. _findenv_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  3322. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  3323. _fini c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  3324. _fopen_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3325. _fork_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3326. _free_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3327. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  3328. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3329. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  3330. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3331. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3332. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3333. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3334. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  3335. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3336. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3337. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3338. _fseek_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  3339. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3340. _fseeko_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3341. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  3342. _fstat_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3343. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  3344. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3345. _fwalk c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  3346. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3347. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3348. _fwalk_reent c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fwalk.o)
  3349. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3350. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3351. _getenv_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  3352. _getpid_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3353. _gettimeofday_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3354. _global_impure_ptr c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  3355. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3356. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3357. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3358. build\kernel\components\libc\compilers\newlib\stdio.o
  3359. _impure_ptr c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-impure.o)
  3360. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wsetup.o)
  3361. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  3362. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  3363. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  3364. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  3365. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  3366. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  3367. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  3368. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3369. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  3370. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  3371. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3372. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  3373. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3374. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3375. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  3376. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3377. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3378. _init c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/thumb/v7-ar/fpv3/softfp/crti.o
  3379. _isatty_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3380. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  3381. _kill_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3382. _link_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3383. _localeconv_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  3384. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3385. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3386. _lseek_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3387. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3388. _mainCRTStartup c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3389. _malloc_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3390. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3391. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  3392. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3393. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3394. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  3395. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  3396. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-makebuf.o)
  3397. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3398. _mbtowc_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mbtowc_r.o)
  3399. _mkdir_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3400. _mprec_log10 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3401. _open_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3402. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3403. _putenv_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  3404. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  3405. _puts_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  3406. _read_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3407. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3408. _realloc_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3409. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3410. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3411. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  3412. _rename_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3413. _reset build\kernel\libcpu\arm\am335x\start_gcc.o
  3414. build\kernel\libcpu\arm\am335x\vector_gcc.o
  3415. _rt_errno build\kernel\src\kservice.o
  3416. build\kernel\components\libc\compilers\newlib\syscalls.o
  3417. _sbrk_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3418. _setenv_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  3419. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  3420. _setlocale_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  3421. _snprintf_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  3422. _start c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3423. _stat_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3424. _strdup_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  3425. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  3426. _strtol_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  3427. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  3428. _svfiprintf_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3429. _svfprintf_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3430. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  3431. _syscall_table_begin build\kernel\components\finsh\shell.o
  3432. build\kernel\components\finsh\finsh_vm.o
  3433. build\kernel\components\finsh\msh.o
  3434. build\kernel\components\finsh\cmd.o
  3435. _syscall_table_end build\kernel\components\finsh\shell.o
  3436. build\kernel\components\finsh\finsh_vm.o
  3437. build\kernel\components\finsh\msh.o
  3438. build\kernel\components\finsh\cmd.o
  3439. _system build\kernel\components\libc\compilers\newlib\syscalls.o
  3440. _sysvar_table_begin build\kernel\components\finsh\shell.o
  3441. build\kernel\components\finsh\finsh_var.o
  3442. build\kernel\components\finsh\cmd.o
  3443. _sysvar_table_end build\kernel\components\finsh\shell.o
  3444. build\kernel\components\finsh\finsh_var.o
  3445. build\kernel\components\finsh\cmd.o
  3446. _times_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3447. _timevalue build\kernel\components\libc\compilers\newlib\syscalls.o
  3448. _unlink_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3449. _unsetenv_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  3450. _wait_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3451. _wctomb_r c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-wctomb_r.o)
  3452. _write_r build\kernel\components\libc\compilers\newlib\syscalls.o
  3453. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-stdio.o)
  3454. abort build\kernel\components\libc\compilers\newlib\syscalls.o
  3455. access build\kernel\components\dfs\src\dfs_posix.o
  3456. asctime build\kernel\components\libc\compilers\common\time.o
  3457. asctime_r build\kernel\components\libc\compilers\common\time.o
  3458. atexit c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3459. atoi c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  3460. build\kernel\components\finsh\finsh_token.o
  3461. cat build\kernel\components\dfs\src\dfs_file.o
  3462. build\kernel\components\finsh\msh_file.o
  3463. chdir build\kernel\components\dfs\src\dfs_posix.o
  3464. build\kernel\components\finsh\msh_file.o
  3465. clock build\kernel\components\libc\compilers\common\time.o
  3466. close build\kernel\components\dfs\src\dfs_posix.o
  3467. build\kernel\components\libc\compilers\newlib\syscalls.o
  3468. build\kernel\components\finsh\msh_file.o
  3469. closedir build\kernel\components\dfs\src\dfs_posix.o
  3470. build\kernel\components\finsh\msh_file.o
  3471. build\kernel\components\finsh\msh.o
  3472. cmd_cat build\kernel\components\finsh\msh_file.o
  3473. cmd_cd build\kernel\components\finsh\msh_file.o
  3474. cmd_cp build\kernel\components\finsh\msh_file.o
  3475. cmd_df build\kernel\components\finsh\msh_file.o
  3476. cmd_echo build\kernel\components\finsh\msh_file.o
  3477. cmd_free build\kernel\components\finsh\msh.o
  3478. cmd_ls build\kernel\components\finsh\msh_file.o
  3479. cmd_mkdir build\kernel\components\finsh\msh_file.o
  3480. cmd_mkfs build\kernel\components\finsh\msh_file.o
  3481. cmd_mv build\kernel\components\finsh\msh_file.o
  3482. cmd_ps build\kernel\components\finsh\msh.o
  3483. cmd_pwd build\kernel\components\finsh\msh_file.o
  3484. cmd_rm build\kernel\components\finsh\msh_file.o
  3485. copy build\kernel\components\dfs\src\dfs_file.o
  3486. build\kernel\components\finsh\msh_file.o
  3487. ctime build\kernel\components\libc\compilers\common\time.o
  3488. devfs_init build\kernel\components\dfs\filesystems\devfs\devfs.o
  3489. build\kernel\components\dfs\src\dfs.o
  3490. df build\kernel\components\dfs\src\dfs_fs.o
  3491. build\kernel\components\finsh\msh_file.o
  3492. dfs_device_fs_close build\kernel\components\dfs\filesystems\devfs\devfs.o
  3493. dfs_device_fs_getdents build\kernel\components\dfs\filesystems\devfs\devfs.o
  3494. dfs_device_fs_ioctl build\kernel\components\dfs\filesystems\devfs\devfs.o
  3495. dfs_device_fs_mount build\kernel\components\dfs\filesystems\devfs\devfs.o
  3496. dfs_device_fs_open build\kernel\components\dfs\filesystems\devfs\devfs.o
  3497. dfs_device_fs_read build\kernel\components\dfs\filesystems\devfs\devfs.o
  3498. dfs_device_fs_stat build\kernel\components\dfs\filesystems\devfs\devfs.o
  3499. dfs_device_fs_write build\kernel\components\dfs\filesystems\devfs\devfs.o
  3500. dfs_fdtable_get build\kernel\components\dfs\src\dfs.o
  3501. dfs_file_close build\kernel\components\dfs\src\dfs_file.o
  3502. build\kernel\components\dfs\src\dfs_posix.o
  3503. build\kernel\components\dfs\src\dfs_fs.o
  3504. dfs_file_flush build\kernel\components\dfs\src\dfs_file.o
  3505. build\kernel\components\dfs\src\dfs_posix.o
  3506. dfs_file_ftruncate build\kernel\components\dfs\src\dfs_file.o
  3507. build\kernel\components\dfs\src\dfs_posix.o
  3508. dfs_file_getdents build\kernel\components\dfs\src\dfs_file.o
  3509. build\kernel\components\dfs\src\dfs_posix.o
  3510. dfs_file_ioctl build\kernel\components\dfs\src\dfs_file.o
  3511. build\kernel\components\dfs\src\dfs_posix.o
  3512. dfs_file_lseek build\kernel\components\dfs\src\dfs_file.o
  3513. build\kernel\components\dfs\src\dfs_posix.o
  3514. dfs_file_open build\kernel\components\dfs\src\dfs_file.o
  3515. build\kernel\components\dfs\src\dfs_posix.o
  3516. build\kernel\components\dfs\src\dfs_fs.o
  3517. dfs_file_read build\kernel\components\dfs\src\dfs_file.o
  3518. build\kernel\components\dfs\src\dfs_posix.o
  3519. dfs_file_rename build\kernel\components\dfs\src\dfs_file.o
  3520. build\kernel\components\dfs\src\dfs_posix.o
  3521. dfs_file_stat build\kernel\components\dfs\src\dfs_file.o
  3522. build\kernel\components\dfs\src\dfs_posix.o
  3523. dfs_file_unlink build\kernel\components\dfs\src\dfs_file.o
  3524. build\kernel\components\dfs\src\dfs_posix.o
  3525. dfs_file_write build\kernel\components\dfs\src\dfs_file.o
  3526. build\kernel\components\dfs\src\dfs_posix.o
  3527. dfs_filesystem_get_mounted_path build\kernel\components\dfs\src\dfs_fs.o
  3528. dfs_filesystem_get_partition build\kernel\components\dfs\src\dfs_fs.o
  3529. dfs_filesystem_lookup build\kernel\components\dfs\src\dfs_fs.o
  3530. build\kernel\components\dfs\src\dfs_file.o
  3531. build\kernel\components\dfs\src\dfs.o
  3532. dfs_init build\kernel\components\dfs\src\dfs.o
  3533. dfs_lock build\kernel\components\dfs\src\dfs.o
  3534. build\kernel\components\dfs\src\dfs_posix.o
  3535. build\kernel\components\dfs\src\dfs_fs.o
  3536. dfs_mkfs build\kernel\components\dfs\src\dfs_fs.o
  3537. build\kernel\components\finsh\msh_file.o
  3538. dfs_mount build\kernel\components\dfs\src\dfs_fs.o
  3539. build\kernel\components\dfs\src\dfs.o
  3540. dfs_normalize_path build\kernel\components\dfs\src\dfs.o
  3541. build\kernel\components\dfs\src\dfs_posix.o
  3542. build\kernel\components\dfs\src\dfs_fs.o
  3543. build\kernel\components\dfs\src\dfs_file.o
  3544. dfs_register build\kernel\components\dfs\src\dfs_fs.o
  3545. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3546. dfs_statfs build\kernel\components\dfs\src\dfs_fs.o
  3547. build\kernel\components\dfs\src\dfs_posix.o
  3548. dfs_subdir build\kernel\components\dfs\src\dfs.o
  3549. build\kernel\components\dfs\src\dfs_file.o
  3550. dfs_unlock build\kernel\components\dfs\src\dfs.o
  3551. build\kernel\components\dfs\src\dfs_posix.o
  3552. build\kernel\components\dfs\src\dfs_fs.o
  3553. dfs_unmount build\kernel\components\dfs\src\dfs_fs.o
  3554. entry build\kernel\src\components.o
  3555. environ c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-environ.o)
  3556. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  3557. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  3558. exit build\kernel\components\libc\compilers\newlib\syscalls.o
  3559. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3560. fclose c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fclose.o)
  3561. build\kernel\components\libc\compilers\newlib\stdio.o
  3562. fcntl build\kernel\components\dfs\src\dfs_posix.o
  3563. fd_get build\kernel\components\dfs\src\dfs.o
  3564. build\kernel\components\dfs\src\dfs_posix.o
  3565. fd_is_open build\kernel\components\dfs\src\dfs.o
  3566. build\kernel\components\dfs\src\dfs_file.o
  3567. fd_new build\kernel\components\dfs\src\dfs.o
  3568. build\kernel\components\dfs\src\dfs_posix.o
  3569. fd_put build\kernel\components\dfs\src\dfs.o
  3570. build\kernel\components\dfs\src\dfs_posix.o
  3571. fflush c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fflush.o)
  3572. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-refill.o)
  3573. fileno c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fileno.o)
  3574. build\kernel\components\libc\compilers\newlib\stdio.o
  3575. filesystem_operation_table build\kernel\components\dfs\src\dfs.o
  3576. build\kernel\components\dfs\src\dfs_fs.o
  3577. filesystem_table build\kernel\components\dfs\src\dfs.o
  3578. build\kernel\components\dfs\src\dfs_fs.o
  3579. finsh_compile_pc build\kernel\components\finsh\finsh_compiler.o
  3580. finsh_compile_sp build\kernel\components\finsh\finsh_compiler.o
  3581. finsh_compiler_run build\kernel\components\finsh\finsh_compiler.o
  3582. build\kernel\components\finsh\shell.o
  3583. finsh_errno build\kernel\components\finsh\finsh_error.o
  3584. build\kernel\components\finsh\shell.o
  3585. finsh_error_init build\kernel\components\finsh\finsh_error.o
  3586. build\kernel\components\finsh\finsh_init.o
  3587. finsh_error_set build\kernel\components\finsh\finsh_error.o
  3588. build\kernel\components\finsh\finsh_token.o
  3589. build\kernel\components\finsh\finsh_parser.o
  3590. build\kernel\components\finsh\finsh_node.o
  3591. build\kernel\components\finsh\finsh_compiler.o
  3592. finsh_error_string build\kernel\components\finsh\finsh_error.o
  3593. build\kernel\components\finsh\shell.o
  3594. finsh_flush build\kernel\components\finsh\finsh_init.o
  3595. build\kernel\components\finsh\shell.o
  3596. finsh_get_device build\kernel\components\finsh\shell.o
  3597. finsh_get_echo build\kernel\components\finsh\shell.o
  3598. finsh_get_prompt build\kernel\components\finsh\shell.o
  3599. finsh_get_prompt_mode build\kernel\components\finsh\shell.o
  3600. finsh_heap build\kernel\components\finsh\finsh_heap.o
  3601. finsh_heap_allocate build\kernel\components\finsh\finsh_heap.o
  3602. build\kernel\components\finsh\finsh_node.o
  3603. finsh_heap_free build\kernel\components\finsh\finsh_heap.o
  3604. finsh_heap_init build\kernel\components\finsh\finsh_heap.o
  3605. build\kernel\components\finsh\finsh_init.o
  3606. finsh_init build\kernel\components\finsh\finsh_init.o
  3607. build\kernel\components\finsh\shell.o
  3608. finsh_node_allocate build\kernel\components\finsh\finsh_node.o
  3609. build\kernel\components\finsh\finsh_parser.o
  3610. finsh_node_init build\kernel\components\finsh\finsh_node.o
  3611. build\kernel\components\finsh\finsh_init.o
  3612. finsh_node_new_char build\kernel\components\finsh\finsh_node.o
  3613. build\kernel\components\finsh\finsh_parser.o
  3614. finsh_node_new_id build\kernel\components\finsh\finsh_node.o
  3615. build\kernel\components\finsh\finsh_parser.o
  3616. finsh_node_new_int build\kernel\components\finsh\finsh_node.o
  3617. build\kernel\components\finsh\finsh_parser.o
  3618. finsh_node_new_long build\kernel\components\finsh\finsh_node.o
  3619. build\kernel\components\finsh\finsh_parser.o
  3620. finsh_node_new_ptr build\kernel\components\finsh\finsh_node.o
  3621. build\kernel\components\finsh\finsh_parser.o
  3622. finsh_node_new_string build\kernel\components\finsh\finsh_node.o
  3623. build\kernel\components\finsh\finsh_parser.o
  3624. finsh_parser_init build\kernel\components\finsh\finsh_parser.o
  3625. build\kernel\components\finsh\finsh_init.o
  3626. finsh_parser_run build\kernel\components\finsh\finsh_parser.o
  3627. build\kernel\components\finsh\shell.o
  3628. finsh_pc build\kernel\components\finsh\finsh_vm.o
  3629. build\kernel\components\finsh\finsh_ops.o
  3630. finsh_reset build\kernel\components\finsh\finsh_init.o
  3631. finsh_run_line build\kernel\components\finsh\shell.o
  3632. finsh_set_device build\kernel\components\finsh\shell.o
  3633. finsh_set_echo build\kernel\components\finsh\shell.o
  3634. finsh_set_prompt build\kernel\components\finsh\shell.o
  3635. finsh_set_prompt_mode build\kernel\components\finsh\shell.o
  3636. finsh_sp build\kernel\components\finsh\finsh_vm.o
  3637. build\kernel\components\finsh\finsh_ops.o
  3638. finsh_stack_bottom build\kernel\components\finsh\finsh_init.o
  3639. build\kernel\components\finsh\shell.o
  3640. finsh_syscall_append build\kernel\components\finsh\finsh_vm.o
  3641. finsh_syscall_lookup build\kernel\components\finsh\finsh_vm.o
  3642. build\kernel\components\finsh\finsh_node.o
  3643. finsh_system_function_init build\kernel\components\finsh\shell.o
  3644. finsh_system_init build\kernel\components\finsh\shell.o
  3645. finsh_system_var_init build\kernel\components\finsh\shell.o
  3646. finsh_sysvar_append build\kernel\components\finsh\finsh_var.o
  3647. finsh_sysvar_lookup build\kernel\components\finsh\finsh_var.o
  3648. build\kernel\components\finsh\finsh_node.o
  3649. finsh_thread_entry build\kernel\components\finsh\shell.o
  3650. finsh_token_get_token build\kernel\components\finsh\finsh_token.o
  3651. finsh_token_init build\kernel\components\finsh\finsh_token.o
  3652. build\kernel\components\finsh\finsh_parser.o
  3653. finsh_token_token build\kernel\components\finsh\finsh_token.o
  3654. build\kernel\components\finsh\finsh_parser.o
  3655. finsh_var_delete build\kernel\components\finsh\finsh_var.o
  3656. finsh_var_init build\kernel\components\finsh\finsh_var.o
  3657. build\kernel\components\finsh\finsh_init.o
  3658. finsh_var_insert build\kernel\components\finsh\finsh_var.o
  3659. build\kernel\components\finsh\finsh_parser.o
  3660. finsh_var_lookup build\kernel\components\finsh\finsh_var.o
  3661. build\kernel\components\finsh\finsh_node.o
  3662. finsh_vm_run build\kernel\components\finsh\finsh_vm.o
  3663. build\kernel\components\finsh\shell.o
  3664. finsh_vm_stack build\kernel\components\finsh\finsh_vm.o
  3665. build\kernel\components\finsh\finsh_init.o
  3666. build\kernel\components\finsh\finsh_compiler.o
  3667. flock build\kernel\components\libc\compilers\newlib\syscalls.o
  3668. fopen c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fopen.o)
  3669. build\kernel\components\libc\compilers\newlib\stdio.o
  3670. free c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  3671. frexp c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-s_frexp.o)
  3672. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3673. fseek c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseek.o)
  3674. fseeko c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3675. fstat build\kernel\components\dfs\src\dfs_posix.o
  3676. fsync build\kernel\components\dfs\src\dfs_posix.o
  3677. ftruncate build\kernel\components\dfs\src\dfs_posix.o
  3678. getcwd build\kernel\components\dfs\src\dfs_posix.o
  3679. build\kernel\components\finsh\msh.o
  3680. build\kernel\components\finsh\shell.o
  3681. gettimeofday build\kernel\components\libc\compilers\common\time.o
  3682. getuid build\kernel\components\libc\compilers\newlib\syscalls.o
  3683. global_errno build\kernel\components\finsh\finsh_error.o
  3684. global_node_table build\kernel\components\finsh\finsh_node.o
  3685. global_syscall_list build\kernel\components\finsh\finsh_vm.o
  3686. build\kernel\components\finsh\cmd.o
  3687. global_sysvar_list build\kernel\components\finsh\finsh_var.o
  3688. build\kernel\components\finsh\cmd.o
  3689. global_variable build\kernel\components\finsh\finsh_var.o
  3690. build\kernel\components\finsh\finsh_heap.o
  3691. gmtime build\kernel\components\libc\compilers\common\time.o
  3692. gmtime_r build\kernel\components\libc\compilers\common\time.o
  3693. hardware_init_hook c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3694. hello build\kernel\components\finsh\cmd.o
  3695. ioctl build\kernel\components\dfs\src\dfs_posix.o
  3696. isr_table build\kernel\libcpu\arm\am335x\interrupt.o
  3697. build\kernel\libcpu\arm\am335x\trap.o
  3698. libc_get_time build\kernel\components\libc\compilers\newlib\syscalls.o
  3699. libc_stdio_get_console build\kernel\components\libc\compilers\newlib\stdio.o
  3700. libc_stdio_set_console build\kernel\components\libc\compilers\newlib\stdio.o
  3701. build\kernel\components\libc\compilers\newlib\libc.o
  3702. libc_system_init build\kernel\components\libc\compilers\newlib\libc.o
  3703. list build\kernel\components\finsh\cmd.o
  3704. list_device build\kernel\components\finsh\cmd.o
  3705. list_event build\kernel\components\finsh\cmd.o
  3706. list_fd build\kernel\components\dfs\src\dfs.o
  3707. list_mailbox build\kernel\components\finsh\cmd.o
  3708. list_mem build\kernel\src\mem.o
  3709. build\kernel\components\finsh\msh.o
  3710. list_mempool build\kernel\components\finsh\cmd.o
  3711. list_msgqueue build\kernel\components\finsh\cmd.o
  3712. list_mutex build\kernel\components\finsh\cmd.o
  3713. list_prefix build\kernel\components\finsh\cmd.o
  3714. build\kernel\components\finsh\shell.o
  3715. list_sem build\kernel\components\finsh\cmd.o
  3716. list_thread build\kernel\components\finsh\cmd.o
  3717. build\kernel\components\finsh\msh.o
  3718. build\kernel\libcpu\arm\am335x\trap.o
  3719. list_timer build\kernel\components\finsh\cmd.o
  3720. localeconv c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-localeconv.o)
  3721. localtime build\kernel\components\libc\compilers\common\time.o
  3722. localtime_r build\kernel\components\libc\compilers\common\time.o
  3723. ls build\kernel\components\dfs\src\dfs_file.o
  3724. build\kernel\components\finsh\msh_file.o
  3725. lseek build\kernel\components\dfs\src\dfs_posix.o
  3726. build\kernel\components\libc\compilers\newlib\syscalls.o
  3727. main build\applications\main.o
  3728. build\kernel\src\components.o
  3729. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3730. main_thread_entry build\kernel\src\components.o
  3731. malloc c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-malloc.o)
  3732. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  3733. memchr c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memchr-stub.o)
  3734. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3735. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3736. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  3737. memcmp c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcmp.o)
  3738. build\kernel\components\finsh\shell.o
  3739. memcpy c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memcpy-stub.o)
  3740. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3741. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-mprec.o)
  3742. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3743. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-dtoa.o)
  3744. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  3745. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  3746. build\kernel\components\finsh\msh_file.o
  3747. build\kernel\components\finsh\msh.o
  3748. build\kernel\components\finsh\cmd.o
  3749. build\kernel\components\finsh\shell.o
  3750. build\kernel\components\drivers\src\ringbuffer.o
  3751. memmove c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memmove.o)
  3752. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  3753. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fvwrite.o)
  3754. memset c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-memset.o)
  3755. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-fseeko.o)
  3756. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-findfp.o)
  3757. build\kernel\components\finsh\finsh_token.o
  3758. build\kernel\components\finsh\finsh_var.o
  3759. build\kernel\components\finsh\finsh_parser.o
  3760. build\kernel\components\finsh\finsh_node.o
  3761. build\kernel\components\finsh\finsh_heap.o
  3762. build\kernel\components\finsh\finsh_compiler.o
  3763. build\kernel\components\finsh\msh.o
  3764. build\kernel\components\finsh\shell.o
  3765. build\kernel\components\dfs\src\dfs_posix.o
  3766. build\kernel\components\dfs\src\dfs_fs.o
  3767. build\kernel\components\dfs\src\dfs_file.o
  3768. build\kernel\components\dfs\src\dfs.o
  3769. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  3770. mkdir build\kernel\components\dfs\src\dfs_posix.o
  3771. build\kernel\components\libc\compilers\newlib\syscalls.o
  3772. build\kernel\components\finsh\msh_file.o
  3773. build\kernel\components\dfs\src\dfs_file.o
  3774. mkfs build\kernel\components\dfs\src\dfs_fs.o
  3775. mktime build\kernel\components\libc\compilers\common\time.o
  3776. mmu_clean_dcache build\kernel\libcpu\arm\am335x\mmu.o
  3777. mmu_clean_invalidated_cache_index build\kernel\libcpu\arm\am335x\mmu.o
  3778. mmu_disable build\kernel\libcpu\arm\am335x\mmu.o
  3779. mmu_disable_alignfault build\kernel\libcpu\arm\am335x\mmu.o
  3780. mmu_disable_dcache build\kernel\libcpu\arm\am335x\mmu.o
  3781. mmu_disable_icache build\kernel\libcpu\arm\am335x\mmu.o
  3782. mmu_enable build\kernel\libcpu\arm\am335x\mmu.o
  3783. mmu_enable_alignfault build\kernel\libcpu\arm\am335x\mmu.o
  3784. mmu_enable_dcache build\kernel\libcpu\arm\am335x\mmu.o
  3785. mmu_enable_icache build\kernel\libcpu\arm\am335x\mmu.o
  3786. mmu_invalidate_dcache build\kernel\libcpu\arm\am335x\mmu.o
  3787. mmu_invalidate_icache build\kernel\libcpu\arm\am335x\mmu.o
  3788. mmu_invalidate_tlb build\kernel\libcpu\arm\am335x\mmu.o
  3789. mmu_set_domain build\kernel\libcpu\arm\am335x\mmu.o
  3790. mmu_setmtt build\kernel\libcpu\arm\am335x\mmu.o
  3791. mmu_setmtts build\kernel\libcpu\arm\am335x\mmu.o
  3792. mmu_setttbase build\kernel\libcpu\arm\am335x\mmu.o
  3793. msh_auto_complete build\kernel\components\finsh\msh.o
  3794. build\kernel\components\finsh\shell.o
  3795. msh_auto_complete_path build\kernel\components\finsh\msh.o
  3796. msh_exec build\kernel\components\finsh\msh.o
  3797. build\kernel\components\finsh\msh_file.o
  3798. build\kernel\components\finsh\shell.o
  3799. msh_exec_script build\kernel\components\finsh\msh_file.o
  3800. build\kernel\components\finsh\msh.o
  3801. msh_help build\kernel\components\finsh\msh.o
  3802. msh_is_used build\kernel\components\finsh\msh.o
  3803. build\kernel\components\finsh\shell.o
  3804. op_table build\kernel\components\finsh\finsh_ops.o
  3805. build\kernel\components\finsh\finsh_vm.o
  3806. open build\kernel\components\dfs\src\dfs_posix.o
  3807. build\kernel\components\libc\compilers\newlib\syscalls.o
  3808. build\kernel\components\finsh\msh_file.o
  3809. opendir build\kernel\components\dfs\src\dfs_posix.o
  3810. build\kernel\components\finsh\msh_file.o
  3811. build\kernel\components\finsh\msh.o
  3812. printkc build\drivers\uart.o
  3813. putenv c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv.o)
  3814. build\kernel\components\libc\compilers\newlib\libc.o
  3815. puts c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  3816. build\applications\main.o
  3817. read build\kernel\components\dfs\src\dfs_posix.o
  3818. build\kernel\components\libc\compilers\newlib\syscalls.o
  3819. build\kernel\components\finsh\msh_file.o
  3820. readdir build\kernel\components\dfs\src\dfs_posix.o
  3821. build\kernel\components\finsh\msh_file.o
  3822. build\kernel\components\finsh\msh.o
  3823. rename build\kernel\components\dfs\src\dfs_posix.o
  3824. build\kernel\components\libc\compilers\newlib\syscalls.o
  3825. build\kernel\components\finsh\msh_file.o
  3826. rewinddir build\kernel\components\dfs\src\dfs_posix.o
  3827. build\kernel\components\finsh\msh.o
  3828. rm build\kernel\components\dfs\src\dfs_file.o
  3829. rmdir build\kernel\components\dfs\src\dfs_posix.o
  3830. rt_application_init build\kernel\src\components.o
  3831. rt_assert_handler build\kernel\src\kservice.o
  3832. build\kernel\components\libc\compilers\newlib\syscalls.o
  3833. build\kernel\components\libc\compilers\common\time.o
  3834. build\kernel\components\finsh\msh.o
  3835. build\kernel\components\finsh\shell.o
  3836. build\kernel\components\drivers\src\workqueue.o
  3837. build\kernel\components\drivers\src\waitqueue.o
  3838. build\kernel\components\drivers\src\ringbuffer.o
  3839. build\kernel\components\drivers\src\ringblk_buf.o
  3840. build\kernel\components\drivers\src\pipe.o
  3841. build\kernel\components\drivers\src\dataqueue.o
  3842. build\kernel\components\drivers\src\completion.o
  3843. build\kernel\components\drivers\serial\serial.o
  3844. build\kernel\components\drivers\misc\pin.o
  3845. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3846. build\kernel\components\dfs\src\dfs_fs.o
  3847. build\kernel\components\dfs\src\dfs.o
  3848. build\kernel\libcpu\arm\am335x\cpu.o
  3849. build\kernel\libcpu\arm\common\showmem.o
  3850. build\kernel\src\timer.o
  3851. build\kernel\src\thread.o
  3852. build\kernel\src\scheduler.o
  3853. build\kernel\src\object.o
  3854. build\kernel\src\mempool.o
  3855. build\kernel\src\mem.o
  3856. build\kernel\src\ipc.o
  3857. build\kernel\src\idle.o
  3858. build\kernel\src\device.o
  3859. build\kernel\src\components.o
  3860. build\drivers\uart.o
  3861. build\drivers\gpio.o
  3862. build\applications\board.o
  3863. rt_assert_hook build\kernel\src\kservice.o
  3864. rt_assert_set_hook build\kernel\src\kservice.o
  3865. rt_calloc build\kernel\src\mem.o
  3866. build\kernel\components\libc\compilers\newlib\syscalls.o
  3867. build\kernel\components\finsh\shell.o
  3868. build\kernel\components\dfs\src\dfs.o
  3869. rt_completion_done build\kernel\components\drivers\src\completion.o
  3870. build\kernel\components\drivers\serial\serial.o
  3871. rt_completion_init build\kernel\components\drivers\src\completion.o
  3872. build\kernel\components\drivers\serial\serial.o
  3873. rt_completion_wait build\kernel\components\drivers\src\completion.o
  3874. build\kernel\components\drivers\serial\serial.o
  3875. rt_components_board_init build\kernel\src\components.o
  3876. build\applications\board.o
  3877. rt_components_init build\kernel\src\components.o
  3878. rt_console_get_device build\kernel\src\kservice.o
  3879. build\kernel\components\libc\compilers\newlib\libc.o
  3880. build\kernel\components\finsh\shell.o
  3881. rt_console_set_device build\kernel\src\kservice.o
  3882. build\applications\board.o
  3883. rt_cpu_dcache_clean_flush build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3884. rt_cpu_dcache_disable build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3885. build\kernel\libcpu\arm\am335x\mmu.o
  3886. rt_cpu_dcache_enable build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3887. rt_cpu_get_sctlr build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3888. rt_cpu_icache_disable build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3889. build\kernel\libcpu\arm\am335x\mmu.o
  3890. rt_cpu_icache_enable build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3891. rt_cpu_mmu_disable build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3892. build\kernel\libcpu\arm\am335x\mmu.o
  3893. rt_cpu_mmu_enable build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3894. build\kernel\libcpu\arm\am335x\mmu.o
  3895. rt_cpu_tlb_set build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3896. build\kernel\libcpu\arm\am335x\mmu.o
  3897. rt_cpu_vector_get_base build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3898. rt_cpu_vector_set_base build\kernel\libcpu\arm\am335x\cp15_gcc.o
  3899. build\kernel\libcpu\arm\am335x\interrupt.o
  3900. rt_critical_level build\kernel\src\scheduler.o
  3901. rt_current_priority build\kernel\src\scheduler.o
  3902. rt_current_thread build\kernel\src\scheduler.o
  3903. build\kernel\libcpu\arm\am335x\start_gcc.o
  3904. build\kernel\libcpu\arm\am335x\trap.o
  3905. build\kernel\src\thread.o
  3906. rt_data_queue_deinit build\kernel\components\drivers\src\dataqueue.o
  3907. build\kernel\components\drivers\serial\serial.o
  3908. rt_data_queue_init build\kernel\components\drivers\src\dataqueue.o
  3909. build\kernel\components\drivers\serial\serial.o
  3910. rt_data_queue_len build\kernel\components\drivers\src\dataqueue.o
  3911. rt_data_queue_peek build\kernel\components\drivers\src\dataqueue.o
  3912. build\kernel\components\drivers\serial\serial.o
  3913. rt_data_queue_pop build\kernel\components\drivers\src\dataqueue.o
  3914. build\kernel\components\drivers\serial\serial.o
  3915. rt_data_queue_push build\kernel\components\drivers\src\dataqueue.o
  3916. build\kernel\components\drivers\serial\serial.o
  3917. rt_data_queue_reset build\kernel\components\drivers\src\dataqueue.o
  3918. rt_delayed_work_init build\kernel\components\drivers\src\workqueue.o
  3919. rt_device_close build\kernel\src\device.o
  3920. build\kernel\components\finsh\shell.o
  3921. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3922. build\kernel\components\dfs\src\dfs_fs.o
  3923. build\kernel\src\kservice.o
  3924. rt_device_control build\kernel\src\device.o
  3925. build\kernel\components\libc\compilers\newlib\syscalls.o
  3926. build\kernel\components\libc\compilers\common\time.o
  3927. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3928. rt_device_create build\kernel\src\device.o
  3929. rt_device_destroy build\kernel\src\device.o
  3930. rt_device_find build\kernel\src\device.o
  3931. build\kernel\components\libc\compilers\newlib\syscalls.o
  3932. build\kernel\components\libc\compilers\common\time.o
  3933. build\kernel\components\finsh\shell.o
  3934. build\kernel\components\drivers\src\pipe.o
  3935. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3936. build\kernel\components\dfs\src\dfs_fs.o
  3937. build\kernel\src\kservice.o
  3938. rt_device_init build\kernel\src\device.o
  3939. rt_device_init_all build\kernel\src\device.o
  3940. rt_device_open build\kernel\src\device.o
  3941. build\kernel\components\finsh\shell.o
  3942. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3943. build\kernel\components\dfs\src\dfs_fs.o
  3944. build\kernel\src\kservice.o
  3945. rt_device_pin_register build\kernel\components\drivers\misc\pin.o
  3946. build\drivers\gpio.o
  3947. rt_device_read build\kernel\src\device.o
  3948. build\kernel\components\finsh\shell.o
  3949. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3950. rt_device_register build\kernel\src\device.o
  3951. build\kernel\components\drivers\src\pipe.o
  3952. build\kernel\components\drivers\serial\serial.o
  3953. build\kernel\components\drivers\misc\pin.o
  3954. rt_device_set_rx_indicate build\kernel\src\device.o
  3955. build\kernel\components\finsh\shell.o
  3956. rt_device_set_tx_complete build\kernel\src\device.o
  3957. rt_device_unregister build\kernel\src\device.o
  3958. build\kernel\components\drivers\src\pipe.o
  3959. rt_device_write build\kernel\src\device.o
  3960. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3961. build\kernel\src\kservice.o
  3962. rt_dump_aintc build\kernel\libcpu\arm\am335x\interrupt.o
  3963. rt_dump_isr_table build\kernel\libcpu\arm\am335x\interrupt.o
  3964. rt_enter_critical build\kernel\src\scheduler.o
  3965. build\kernel\components\drivers\src\workqueue.o
  3966. build\kernel\components\drivers\src\dataqueue.o
  3967. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3968. build\kernel\components\dfs\src\dfs.o
  3969. build\kernel\src\object.o
  3970. rt_event_control build\kernel\src\ipc.o
  3971. rt_event_create build\kernel\src\ipc.o
  3972. rt_event_delete build\kernel\src\ipc.o
  3973. rt_event_detach build\kernel\src\ipc.o
  3974. rt_event_init build\kernel\src\ipc.o
  3975. rt_event_recv build\kernel\src\ipc.o
  3976. rt_event_send build\kernel\src\ipc.o
  3977. rt_exit_critical build\kernel\src\scheduler.o
  3978. build\kernel\components\drivers\src\workqueue.o
  3979. build\kernel\components\drivers\src\dataqueue.o
  3980. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3981. build\kernel\components\dfs\src\dfs.o
  3982. build\kernel\src\object.o
  3983. rt_free build\kernel\src\mem.o
  3984. build\kernel\components\libc\compilers\newlib\syscalls.o
  3985. build\kernel\components\finsh\msh_file.o
  3986. build\kernel\components\finsh\msh.o
  3987. build\kernel\components\finsh\shell.o
  3988. build\kernel\components\drivers\src\workqueue.o
  3989. build\kernel\components\drivers\src\ringbuffer.o
  3990. build\kernel\components\drivers\src\ringblk_buf.o
  3991. build\kernel\components\drivers\src\pipe.o
  3992. build\kernel\components\drivers\src\dataqueue.o
  3993. build\kernel\components\drivers\serial\serial.o
  3994. build\kernel\components\dfs\filesystems\devfs\devfs.o
  3995. build\kernel\components\dfs\src\dfs_posix.o
  3996. build\kernel\components\dfs\src\dfs_fs.o
  3997. build\kernel\components\dfs\src\dfs_file.o
  3998. build\kernel\components\dfs\src\dfs.o
  3999. build\kernel\src\object.o
  4000. build\kernel\src\mempool.o
  4001. build\kernel\src\kservice.o
  4002. build\kernel\src\ipc.o
  4003. build\kernel\src\idle.o
  4004. build\kernel\src\device.o
  4005. rt_free_align build\kernel\src\kservice.o
  4006. rt_free_sethook build\kernel\src\mem.o
  4007. rt_get_errno build\kernel\src\kservice.o
  4008. rt_hw_backtrace build\kernel\libcpu\arm\common\backtrace.o
  4009. rt_hw_board_init build\applications\board.o
  4010. build\kernel\src\components.o
  4011. rt_hw_console_output build\kernel\src\kservice.o
  4012. rt_hw_context_switch build\kernel\libcpu\arm\am335x\context_gcc.o
  4013. build\kernel\src\scheduler.o
  4014. rt_hw_context_switch_interrupt build\kernel\libcpu\arm\am335x\context_gcc.o
  4015. build\kernel\src\scheduler.o
  4016. rt_hw_context_switch_to build\kernel\libcpu\arm\am335x\context_gcc.o
  4017. build\kernel\src\scheduler.o
  4018. rt_hw_cpu_dcache_disable build\kernel\libcpu\arm\am335x\cpu.o
  4019. rt_hw_cpu_dcache_enable build\kernel\libcpu\arm\am335x\cpu.o
  4020. build\kernel\libcpu\arm\am335x\mmu.o
  4021. rt_hw_cpu_dcache_status build\kernel\libcpu\arm\am335x\cpu.o
  4022. rt_hw_cpu_icache_disable build\kernel\libcpu\arm\am335x\cpu.o
  4023. rt_hw_cpu_icache_enable build\kernel\libcpu\arm\am335x\cpu.o
  4024. build\kernel\libcpu\arm\am335x\mmu.o
  4025. rt_hw_cpu_icache_status build\kernel\libcpu\arm\am335x\cpu.o
  4026. rt_hw_cpu_reset build\applications\board.o
  4027. rt_hw_cpu_shutdown build\kernel\libcpu\arm\am335x\cpu.o
  4028. build\kernel\libcpu\arm\am335x\trap.o
  4029. rt_hw_gpio_init build\drivers\gpio.o
  4030. rt_hw_interrupt_ack build\kernel\libcpu\arm\am335x\interrupt.o
  4031. build\kernel\libcpu\arm\am335x\trap.o
  4032. rt_hw_interrupt_clear build\kernel\libcpu\arm\am335x\interrupt.o
  4033. rt_hw_interrupt_control build\kernel\libcpu\arm\am335x\interrupt.o
  4034. build\drivers\uart.o
  4035. build\applications\board.o
  4036. rt_hw_interrupt_disable build\kernel\libcpu\arm\am335x\context_gcc.o
  4037. build\kernel\components\finsh\cmd.o
  4038. build\kernel\components\drivers\src\workqueue.o
  4039. build\kernel\components\drivers\src\waitqueue.o
  4040. build\kernel\components\drivers\src\ringblk_buf.o
  4041. build\kernel\components\drivers\src\dataqueue.o
  4042. build\kernel\components\drivers\src\completion.o
  4043. build\kernel\components\drivers\serial\serial.o
  4044. build\kernel\libcpu\arm\am335x\cpu.o
  4045. build\kernel\src\timer.o
  4046. build\kernel\src\thread.o
  4047. build\kernel\src\scheduler.o
  4048. build\kernel\src\object.o
  4049. build\kernel\src\mempool.o
  4050. build\kernel\src\mem.o
  4051. build\kernel\src\irq.o
  4052. build\kernel\src\ipc.o
  4053. build\kernel\src\idle.o
  4054. build\kernel\src\components.o
  4055. build\kernel\src\clock.o
  4056. rt_hw_interrupt_enable build\kernel\libcpu\arm\am335x\context_gcc.o
  4057. build\kernel\components\finsh\cmd.o
  4058. build\kernel\components\drivers\src\workqueue.o
  4059. build\kernel\components\drivers\src\waitqueue.o
  4060. build\kernel\components\drivers\src\ringblk_buf.o
  4061. build\kernel\components\drivers\src\dataqueue.o
  4062. build\kernel\components\drivers\src\completion.o
  4063. build\kernel\components\drivers\serial\serial.o
  4064. build\kernel\src\timer.o
  4065. build\kernel\src\thread.o
  4066. build\kernel\src\scheduler.o
  4067. build\kernel\src\object.o
  4068. build\kernel\src\mempool.o
  4069. build\kernel\src\mem.o
  4070. build\kernel\src\irq.o
  4071. build\kernel\src\ipc.o
  4072. build\kernel\src\idle.o
  4073. build\kernel\src\clock.o
  4074. rt_hw_interrupt_get_active build\kernel\libcpu\arm\am335x\interrupt.o
  4075. build\kernel\libcpu\arm\am335x\trap.o
  4076. rt_hw_interrupt_init build\kernel\libcpu\arm\am335x\interrupt.o
  4077. rt_hw_interrupt_install build\kernel\libcpu\arm\am335x\interrupt.o
  4078. build\drivers\uart.o
  4079. build\applications\board.o
  4080. rt_hw_interrupt_mask build\kernel\libcpu\arm\am335x\interrupt.o
  4081. build\drivers\uart.o
  4082. rt_hw_interrupt_trigger build\kernel\libcpu\arm\am335x\interrupt.o
  4083. rt_hw_interrupt_umask build\kernel\libcpu\arm\am335x\interrupt.o
  4084. build\drivers\uart.o
  4085. build\applications\board.o
  4086. rt_hw_mmu_init build\kernel\libcpu\arm\am335x\mmu.o
  4087. rt_hw_serial_init build\drivers\uart.o
  4088. rt_hw_serial_isr build\kernel\components\drivers\serial\serial.o
  4089. build\drivers\uart.o
  4090. rt_hw_serial_register build\kernel\components\drivers\serial\serial.o
  4091. build\drivers\uart.o
  4092. rt_hw_show_memory build\kernel\libcpu\arm\common\showmem.o
  4093. rt_hw_show_register build\kernel\libcpu\arm\am335x\trap.o
  4094. rt_hw_stack_init build\kernel\libcpu\arm\am335x\stack.o
  4095. build\kernel\src\thread.o
  4096. rt_hw_timer_init build\applications\board.o
  4097. rt_hw_trap_dabt build\kernel\libcpu\arm\am335x\trap.o
  4098. build\kernel\libcpu\arm\am335x\start_gcc.o
  4099. rt_hw_trap_fiq build\kernel\libcpu\arm\am335x\trap.o
  4100. build\kernel\libcpu\arm\am335x\start_gcc.o
  4101. rt_hw_trap_irq build\kernel\libcpu\arm\am335x\trap.o
  4102. build\kernel\libcpu\arm\am335x\start_gcc.o
  4103. rt_hw_trap_pabt build\kernel\libcpu\arm\am335x\trap.o
  4104. build\kernel\libcpu\arm\am335x\start_gcc.o
  4105. rt_hw_trap_swi build\kernel\libcpu\arm\am335x\trap.o
  4106. build\kernel\libcpu\arm\am335x\start_gcc.o
  4107. rt_hw_trap_udef build\kernel\libcpu\arm\am335x\trap.o
  4108. build\kernel\libcpu\arm\am335x\start_gcc.o
  4109. rt_interrupt_enter build\kernel\src\irq.o
  4110. build\kernel\libcpu\arm\am335x\start_gcc.o
  4111. rt_interrupt_enter_sethook build\kernel\src\irq.o
  4112. rt_interrupt_from_thread build\kernel\libcpu\arm\am335x\interrupt.o
  4113. build\kernel\libcpu\arm\am335x\start_gcc.o
  4114. build\kernel\libcpu\arm\am335x\context_gcc.o
  4115. rt_interrupt_get_nest build\kernel\src\irq.o
  4116. build\kernel\components\drivers\src\waitqueue.o
  4117. build\kernel\components\drivers\src\dataqueue.o
  4118. build\kernel\components\drivers\src\completion.o
  4119. build\kernel\src\object.o
  4120. build\kernel\src\mempool.o
  4121. build\kernel\src\mem.o
  4122. build\kernel\src\kservice.o
  4123. build\kernel\src\ipc.o
  4124. build\kernel\src\idle.o
  4125. rt_interrupt_leave build\kernel\src\irq.o
  4126. build\kernel\libcpu\arm\am335x\start_gcc.o
  4127. rt_interrupt_leave_sethook build\kernel\src\irq.o
  4128. rt_interrupt_nest build\kernel\src\irq.o
  4129. build\kernel\libcpu\arm\am335x\interrupt.o
  4130. build\kernel\src\scheduler.o
  4131. rt_interrupt_to_thread build\kernel\libcpu\arm\am335x\interrupt.o
  4132. build\kernel\libcpu\arm\am335x\start_gcc.o
  4133. build\kernel\libcpu\arm\am335x\context_gcc.o
  4134. rt_ipc_get_highest_priority build\kernel\src\ipc.o
  4135. rt_kprintf build\kernel\src\kservice.o
  4136. build\kernel\components\libc\compilers\newlib\syscalls.o
  4137. build\kernel\components\finsh\msh_file.o
  4138. build\kernel\components\finsh\msh.o
  4139. build\kernel\components\finsh\cmd.o
  4140. build\kernel\components\finsh\shell.o
  4141. build\kernel\components\drivers\src\waitqueue.o
  4142. build\kernel\components\drivers\src\dataqueue.o
  4143. build\kernel\components\drivers\src\completion.o
  4144. build\kernel\components\drivers\serial\serial.o
  4145. build\kernel\components\dfs\src\dfs_posix.o
  4146. build\kernel\components\dfs\src\dfs_fs.o
  4147. build\kernel\components\dfs\src\dfs_file.o
  4148. build\kernel\components\dfs\src\dfs.o
  4149. build\kernel\libcpu\arm\am335x\trap.o
  4150. build\kernel\libcpu\arm\am335x\interrupt.o
  4151. build\kernel\libcpu\arm\am335x\cpu.o
  4152. build\kernel\libcpu\arm\common\showmem.o
  4153. build\kernel\libcpu\arm\common\backtrace.o
  4154. build\kernel\src\scheduler.o
  4155. build\kernel\src\object.o
  4156. build\kernel\src\mempool.o
  4157. build\kernel\src\mem.o
  4158. build\kernel\src\ipc.o
  4159. build\kernel\src\idle.o
  4160. build\kernel\src\device.o
  4161. rt_kputs build\kernel\src\kservice.o
  4162. rt_malloc build\kernel\src\mem.o
  4163. build\kernel\components\libc\compilers\newlib\syscalls.o
  4164. build\kernel\components\finsh\finsh_vm.o
  4165. build\kernel\components\finsh\finsh_var.o
  4166. build\kernel\components\finsh\msh_file.o
  4167. build\kernel\components\finsh\msh.o
  4168. build\kernel\components\finsh\shell.o
  4169. build\kernel\components\drivers\src\workqueue.o
  4170. build\kernel\components\drivers\src\ringbuffer.o
  4171. build\kernel\components\drivers\src\ringblk_buf.o
  4172. build\kernel\components\drivers\src\pipe.o
  4173. build\kernel\components\drivers\src\dataqueue.o
  4174. build\kernel\components\drivers\serial\serial.o
  4175. build\kernel\components\dfs\filesystems\devfs\devfs.o
  4176. build\kernel\components\dfs\src\dfs_posix.o
  4177. build\kernel\components\dfs\src\dfs_file.o
  4178. build\kernel\components\dfs\src\dfs.o
  4179. build\kernel\src\thread.o
  4180. build\kernel\src\object.o
  4181. build\kernel\src\mempool.o
  4182. build\kernel\src\kservice.o
  4183. build\kernel\src\ipc.o
  4184. build\kernel\src\device.o
  4185. rt_malloc_align build\kernel\src\kservice.o
  4186. rt_malloc_sethook build\kernel\src\mem.o
  4187. rt_mb_control build\kernel\src\ipc.o
  4188. rt_mb_create build\kernel\src\ipc.o
  4189. rt_mb_delete build\kernel\src\ipc.o
  4190. rt_mb_detach build\kernel\src\ipc.o
  4191. rt_mb_init build\kernel\src\ipc.o
  4192. rt_mb_recv build\kernel\src\ipc.o
  4193. rt_mb_send build\kernel\src\ipc.o
  4194. rt_mb_send_wait build\kernel\src\ipc.o
  4195. rt_mb_urgent build\kernel\src\ipc.o
  4196. rt_memcmp build\kernel\src\kservice.o
  4197. rt_memcpy build\kernel\src\kservice.o
  4198. build\kernel\components\drivers\serial\serial.o
  4199. build\kernel\libcpu\arm\am335x\interrupt.o
  4200. build\kernel\src\mem.o
  4201. build\kernel\src\ipc.o
  4202. rt_memmove build\kernel\src\kservice.o
  4203. build\kernel\components\finsh\shell.o
  4204. rt_memory_info build\kernel\src\mem.o
  4205. rt_memset build\kernel\src\kservice.o
  4206. build\kernel\components\drivers\src\pipe.o
  4207. build\kernel\components\drivers\serial\serial.o
  4208. build\kernel\libcpu\arm\am335x\interrupt.o
  4209. build\kernel\src\thread.o
  4210. build\kernel\src\object.o
  4211. build\kernel\src\mem.o
  4212. build\kernel\src\device.o
  4213. rt_mp_alloc build\kernel\src\mempool.o
  4214. rt_mp_alloc_sethook build\kernel\src\mempool.o
  4215. rt_mp_create build\kernel\src\mempool.o
  4216. rt_mp_delete build\kernel\src\mempool.o
  4217. rt_mp_detach build\kernel\src\mempool.o
  4218. rt_mp_free build\kernel\src\mempool.o
  4219. rt_mp_free_sethook build\kernel\src\mempool.o
  4220. rt_mp_init build\kernel\src\mempool.o
  4221. rt_mq_control build\kernel\src\ipc.o
  4222. rt_mq_create build\kernel\src\ipc.o
  4223. rt_mq_delete build\kernel\src\ipc.o
  4224. rt_mq_detach build\kernel\src\ipc.o
  4225. rt_mq_init build\kernel\src\ipc.o
  4226. rt_mq_recv build\kernel\src\ipc.o
  4227. rt_mq_send build\kernel\src\ipc.o
  4228. rt_mq_send_wait build\kernel\src\ipc.o
  4229. rt_mq_urgent build\kernel\src\ipc.o
  4230. rt_mutex_control build\kernel\src\ipc.o
  4231. rt_mutex_create build\kernel\src\ipc.o
  4232. rt_mutex_delete build\kernel\src\ipc.o
  4233. rt_mutex_detach build\kernel\src\ipc.o
  4234. build\kernel\components\drivers\src\pipe.o
  4235. rt_mutex_init build\kernel\src\ipc.o
  4236. build\kernel\components\drivers\src\pipe.o
  4237. build\kernel\components\dfs\src\dfs.o
  4238. rt_mutex_release build\kernel\src\ipc.o
  4239. build\kernel\components\drivers\src\pipe.o
  4240. build\kernel\components\dfs\src\dfs.o
  4241. rt_mutex_take build\kernel\src\ipc.o
  4242. build\kernel\components\drivers\src\pipe.o
  4243. build\kernel\components\dfs\src\dfs.o
  4244. rt_object_allocate build\kernel\src\object.o
  4245. build\kernel\src\timer.o
  4246. build\kernel\src\thread.o
  4247. build\kernel\src\mempool.o
  4248. build\kernel\src\ipc.o
  4249. rt_object_attach_sethook build\kernel\src\object.o
  4250. rt_object_delete build\kernel\src\object.o
  4251. build\kernel\src\timer.o
  4252. build\kernel\src\thread.o
  4253. build\kernel\src\mempool.o
  4254. build\kernel\src\ipc.o
  4255. build\kernel\src\idle.o
  4256. rt_object_detach build\kernel\src\object.o
  4257. build\kernel\src\timer.o
  4258. build\kernel\src\thread.o
  4259. build\kernel\src\mempool.o
  4260. build\kernel\src\ipc.o
  4261. build\kernel\src\device.o
  4262. rt_object_detach_sethook build\kernel\src\object.o
  4263. rt_object_find build\kernel\src\object.o
  4264. build\kernel\src\thread.o
  4265. build\kernel\src\device.o
  4266. rt_object_get_information build\kernel\src\object.o
  4267. build\kernel\components\finsh\cmd.o
  4268. build\kernel\components\dfs\filesystems\devfs\devfs.o
  4269. rt_object_get_length build\kernel\src\object.o
  4270. rt_object_get_pointers build\kernel\src\object.o
  4271. rt_object_get_type build\kernel\src\object.o
  4272. build\kernel\src\timer.o
  4273. build\kernel\src\thread.o
  4274. build\kernel\src\mempool.o
  4275. build\kernel\src\ipc.o
  4276. build\kernel\src\device.o
  4277. rt_object_init build\kernel\src\object.o
  4278. build\kernel\src\timer.o
  4279. build\kernel\src\thread.o
  4280. build\kernel\src\mempool.o
  4281. build\kernel\src\ipc.o
  4282. build\kernel\src\device.o
  4283. rt_object_is_systemobject build\kernel\src\object.o
  4284. build\kernel\src\timer.o
  4285. build\kernel\src\thread.o
  4286. build\kernel\src\mempool.o
  4287. build\kernel\src\ipc.o
  4288. build\kernel\src\device.o
  4289. rt_object_put_hook build\kernel\src\object.o
  4290. build\kernel\src\timer.o
  4291. build\kernel\src\ipc.o
  4292. rt_object_put_sethook build\kernel\src\object.o
  4293. rt_object_take_hook build\kernel\src\object.o
  4294. build\kernel\src\timer.o
  4295. build\kernel\src\ipc.o
  4296. rt_object_take_sethook build\kernel\src\object.o
  4297. rt_object_trytake_hook build\kernel\src\object.o
  4298. build\kernel\src\ipc.o
  4299. rt_object_trytake_sethook build\kernel\src\object.o
  4300. rt_pin_attach_irq build\kernel\components\drivers\misc\pin.o
  4301. rt_pin_detach_irq build\kernel\components\drivers\misc\pin.o
  4302. rt_pin_get build\kernel\components\drivers\misc\pin.o
  4303. rt_pin_irq_enable build\kernel\components\drivers\misc\pin.o
  4304. rt_pin_mode build\kernel\components\drivers\misc\pin.o
  4305. rt_pin_read build\kernel\components\drivers\misc\pin.o
  4306. rt_pin_write build\kernel\components\drivers\misc\pin.o
  4307. rt_pipe_close build\kernel\components\drivers\src\pipe.o
  4308. rt_pipe_control build\kernel\components\drivers\src\pipe.o
  4309. rt_pipe_create build\kernel\components\drivers\src\pipe.o
  4310. rt_pipe_delete build\kernel\components\drivers\src\pipe.o
  4311. rt_pipe_open build\kernel\components\drivers\src\pipe.o
  4312. rt_pipe_read build\kernel\components\drivers\src\pipe.o
  4313. rt_pipe_write build\kernel\components\drivers\src\pipe.o
  4314. rt_rbb_blk_alloc build\kernel\components\drivers\src\ringblk_buf.o
  4315. rt_rbb_blk_buf build\kernel\components\drivers\src\ringblk_buf.o
  4316. rt_rbb_blk_free build\kernel\components\drivers\src\ringblk_buf.o
  4317. rt_rbb_blk_get build\kernel\components\drivers\src\ringblk_buf.o
  4318. rt_rbb_blk_put build\kernel\components\drivers\src\ringblk_buf.o
  4319. rt_rbb_blk_queue_buf build\kernel\components\drivers\src\ringblk_buf.o
  4320. rt_rbb_blk_queue_free build\kernel\components\drivers\src\ringblk_buf.o
  4321. rt_rbb_blk_queue_get build\kernel\components\drivers\src\ringblk_buf.o
  4322. rt_rbb_blk_queue_len build\kernel\components\drivers\src\ringblk_buf.o
  4323. rt_rbb_blk_size build\kernel\components\drivers\src\ringblk_buf.o
  4324. rt_rbb_create build\kernel\components\drivers\src\ringblk_buf.o
  4325. rt_rbb_destroy build\kernel\components\drivers\src\ringblk_buf.o
  4326. rt_rbb_get_buf_size build\kernel\components\drivers\src\ringblk_buf.o
  4327. rt_rbb_init build\kernel\components\drivers\src\ringblk_buf.o
  4328. rt_rbb_next_blk_queue_len build\kernel\components\drivers\src\ringblk_buf.o
  4329. rt_realloc build\kernel\src\mem.o
  4330. build\kernel\components\libc\compilers\newlib\syscalls.o
  4331. build\kernel\components\dfs\src\dfs.o
  4332. rt_ringbuffer_create build\kernel\components\drivers\src\ringbuffer.o
  4333. build\kernel\components\drivers\src\pipe.o
  4334. rt_ringbuffer_data_len build\kernel\components\drivers\src\ringbuffer.o
  4335. rt_ringbuffer_destroy build\kernel\components\drivers\src\ringbuffer.o
  4336. build\kernel\components\drivers\src\pipe.o
  4337. rt_ringbuffer_get build\kernel\components\drivers\src\ringbuffer.o
  4338. build\kernel\components\drivers\src\pipe.o
  4339. rt_ringbuffer_getchar build\kernel\components\drivers\src\ringbuffer.o
  4340. rt_ringbuffer_init build\kernel\components\drivers\src\ringbuffer.o
  4341. rt_ringbuffer_peak build\kernel\components\drivers\src\ringbuffer.o
  4342. rt_ringbuffer_put build\kernel\components\drivers\src\ringbuffer.o
  4343. build\kernel\components\drivers\src\pipe.o
  4344. rt_ringbuffer_put_force build\kernel\components\drivers\src\ringbuffer.o
  4345. rt_ringbuffer_putchar build\kernel\components\drivers\src\ringbuffer.o
  4346. rt_ringbuffer_putchar_force build\kernel\components\drivers\src\ringbuffer.o
  4347. rt_ringbuffer_reset build\kernel\components\drivers\src\ringbuffer.o
  4348. rt_schedule build\kernel\src\scheduler.o
  4349. build\kernel\components\libc\compilers\newlib\syscalls.o
  4350. build\kernel\components\drivers\src\workqueue.o
  4351. build\kernel\components\drivers\src\waitqueue.o
  4352. build\kernel\components\drivers\src\dataqueue.o
  4353. build\kernel\components\drivers\src\completion.o
  4354. build\kernel\src\thread.o
  4355. build\kernel\src\mempool.o
  4356. build\kernel\src\ipc.o
  4357. build\kernel\src\clock.o
  4358. rt_schedule_insert_thread build\kernel\src\scheduler.o
  4359. build\kernel\src\thread.o
  4360. rt_schedule_remove_thread build\kernel\src\scheduler.o
  4361. build\kernel\src\thread.o
  4362. rt_scheduler_sethook build\kernel\src\scheduler.o
  4363. rt_sem_control build\kernel\src\ipc.o
  4364. rt_sem_create build\kernel\src\ipc.o
  4365. rt_sem_delete build\kernel\src\ipc.o
  4366. rt_sem_detach build\kernel\src\ipc.o
  4367. rt_sem_init build\kernel\src\ipc.o
  4368. build\kernel\components\finsh\shell.o
  4369. build\kernel\components\drivers\src\workqueue.o
  4370. build\kernel\src\mem.o
  4371. rt_sem_release build\kernel\src\ipc.o
  4372. build\kernel\components\finsh\shell.o
  4373. build\kernel\components\drivers\src\workqueue.o
  4374. build\kernel\src\mem.o
  4375. rt_sem_take build\kernel\src\ipc.o
  4376. build\kernel\components\finsh\shell.o
  4377. build\kernel\components\drivers\src\workqueue.o
  4378. build\kernel\src\mem.o
  4379. rt_sem_trytake build\kernel\src\ipc.o
  4380. build\kernel\components\drivers\src\workqueue.o
  4381. rt_set_errno build\kernel\src\kservice.o
  4382. build\kernel\components\drivers\src\pipe.o
  4383. build\kernel\components\drivers\serial\serial.o
  4384. build\kernel\components\dfs\src\dfs_posix.o
  4385. build\kernel\components\dfs\src\dfs_fs.o
  4386. build\kernel\src\mempool.o
  4387. build\kernel\src\device.o
  4388. rt_show_version build\kernel\src\kservice.o
  4389. build\kernel\components\finsh\cmd.o
  4390. build\kernel\src\components.o
  4391. rt_snprintf build\kernel\src\kservice.o
  4392. build\kernel\components\finsh\msh_file.o
  4393. build\kernel\components\dfs\src\dfs.o
  4394. rt_sprintf build\kernel\src\kservice.o
  4395. build\kernel\components\finsh\msh_file.o
  4396. build\kernel\src\idle.o
  4397. rt_strcasecmp build\kernel\src\kservice.o
  4398. rt_strcmp build\kernel\src\kservice.o
  4399. build\kernel\components\finsh\msh_file.o
  4400. rt_strdup build\kernel\src\kservice.o
  4401. build\kernel\components\finsh\finsh_vm.o
  4402. build\kernel\components\finsh\finsh_var.o
  4403. build\kernel\components\dfs\src\dfs_file.o
  4404. build\kernel\components\dfs\src\dfs.o
  4405. rt_strlen build\kernel\src\kservice.o
  4406. build\kernel\components\finsh\msh_file.o
  4407. build\kernel\components\finsh\msh.o
  4408. build\kernel\components\finsh\shell.o
  4409. rt_strncmp build\kernel\src\kservice.o
  4410. build\kernel\src\object.o
  4411. rt_strncpy build\kernel\src\kservice.o
  4412. build\kernel\components\finsh\msh.o
  4413. build\kernel\components\finsh\cmd.o
  4414. build\kernel\components\dfs\filesystems\devfs\devfs.o
  4415. build\kernel\src\object.o
  4416. rt_strnlen build\kernel\src\kservice.o
  4417. rt_strstr build\kernel\src\kservice.o
  4418. rt_system_heap_init build\kernel\src\mem.o
  4419. rt_system_scheduler_init build\kernel\src\scheduler.o
  4420. build\kernel\src\components.o
  4421. rt_system_scheduler_start build\kernel\src\scheduler.o
  4422. build\kernel\src\components.o
  4423. rt_system_timer_init build\kernel\src\timer.o
  4424. build\kernel\src\components.o
  4425. rt_system_timer_thread_init build\kernel\src\timer.o
  4426. build\kernel\src\components.o
  4427. rt_thread_control build\kernel\src\thread.o
  4428. build\kernel\src\ipc.o
  4429. rt_thread_create build\kernel\src\thread.o
  4430. build\kernel\components\finsh\shell.o
  4431. build\kernel\components\drivers\src\workqueue.o
  4432. build\kernel\src\components.o
  4433. rt_thread_defunct build\kernel\src\scheduler.o
  4434. build\kernel\src\thread.o
  4435. build\kernel\src\idle.o
  4436. rt_thread_delay build\kernel\src\thread.o
  4437. rt_thread_delay_until build\kernel\src\thread.o
  4438. rt_thread_delete build\kernel\src\thread.o
  4439. build\kernel\components\drivers\src\workqueue.o
  4440. rt_thread_detach build\kernel\src\thread.o
  4441. rt_thread_exit build\kernel\src\thread.o
  4442. rt_thread_find build\kernel\src\thread.o
  4443. rt_thread_idle_delhook build\kernel\src\idle.o
  4444. rt_thread_idle_excute build\kernel\src\idle.o
  4445. rt_thread_idle_gethandler build\kernel\src\idle.o
  4446. rt_thread_idle_init build\kernel\src\idle.o
  4447. build\kernel\src\components.o
  4448. rt_thread_idle_sethook build\kernel\src\idle.o
  4449. rt_thread_init build\kernel\src\thread.o
  4450. build\kernel\src\idle.o
  4451. rt_thread_inited_sethook build\kernel\src\thread.o
  4452. rt_thread_mdelay build\kernel\src\thread.o
  4453. rt_thread_priority_table build\kernel\src\scheduler.o
  4454. rt_thread_ready_priority_group build\kernel\src\scheduler.o
  4455. rt_thread_resume build\kernel\src\thread.o
  4456. build\kernel\components\drivers\src\workqueue.o
  4457. build\kernel\components\drivers\src\waitqueue.o
  4458. build\kernel\components\drivers\src\dataqueue.o
  4459. build\kernel\components\drivers\src\completion.o
  4460. build\kernel\src\mempool.o
  4461. build\kernel\src\ipc.o
  4462. rt_thread_resume_sethook build\kernel\src\thread.o
  4463. rt_thread_self build\kernel\src\thread.o
  4464. build\kernel\components\libc\compilers\newlib\syscalls.o
  4465. build\kernel\components\drivers\src\workqueue.o
  4466. build\kernel\components\drivers\src\waitqueue.o
  4467. build\kernel\components\drivers\src\dataqueue.o
  4468. build\kernel\components\drivers\src\completion.o
  4469. build\kernel\src\mempool.o
  4470. build\kernel\src\kservice.o
  4471. build\kernel\src\ipc.o
  4472. build\kernel\src\clock.o
  4473. rt_thread_sleep build\kernel\src\thread.o
  4474. rt_thread_startup build\kernel\src\thread.o
  4475. build\kernel\components\finsh\shell.o
  4476. build\kernel\components\drivers\src\workqueue.o
  4477. build\kernel\src\idle.o
  4478. build\kernel\src\components.o
  4479. rt_thread_suspend build\kernel\src\thread.o
  4480. build\kernel\components\libc\compilers\newlib\syscalls.o
  4481. build\kernel\components\drivers\src\workqueue.o
  4482. build\kernel\components\drivers\src\waitqueue.o
  4483. build\kernel\components\drivers\src\dataqueue.o
  4484. build\kernel\components\drivers\src\completion.o
  4485. build\kernel\src\mempool.o
  4486. build\kernel\src\ipc.o
  4487. rt_thread_suspend_sethook build\kernel\src\thread.o
  4488. rt_thread_switch_interrupt_flag build\kernel\libcpu\arm\am335x\interrupt.o
  4489. build\kernel\libcpu\arm\am335x\start_gcc.o
  4490. build\kernel\libcpu\arm\am335x\context_gcc.o
  4491. rt_thread_timeout build\kernel\src\thread.o
  4492. rt_thread_yield build\kernel\src\thread.o
  4493. rt_tick_from_millisecond build\kernel\src\clock.o
  4494. build\kernel\components\drivers\src\waitqueue.o
  4495. build\kernel\src\thread.o
  4496. rt_tick_get build\kernel\src\clock.o
  4497. build\kernel\components\libc\compilers\newlib\syscalls.o
  4498. build\kernel\components\libc\compilers\common\time.o
  4499. build\kernel\components\finsh\cmd.o
  4500. build\kernel\src\timer.o
  4501. build\kernel\src\thread.o
  4502. build\kernel\src\mempool.o
  4503. build\kernel\src\ipc.o
  4504. rt_tick_get_millisecond build\kernel\src\clock.o
  4505. rt_tick_increase build\kernel\src\clock.o
  4506. build\applications\board.o
  4507. rt_tick_set build\kernel\src\clock.o
  4508. rt_timer_check build\kernel\src\timer.o
  4509. build\kernel\src\clock.o
  4510. rt_timer_control build\kernel\src\timer.o
  4511. build\kernel\components\drivers\src\waitqueue.o
  4512. build\kernel\components\drivers\src\dataqueue.o
  4513. build\kernel\components\drivers\src\completion.o
  4514. build\kernel\src\thread.o
  4515. build\kernel\src\mempool.o
  4516. build\kernel\src\ipc.o
  4517. rt_timer_create build\kernel\src\timer.o
  4518. rt_timer_delete build\kernel\src\timer.o
  4519. rt_timer_detach build\kernel\src\timer.o
  4520. build\kernel\components\drivers\src\workqueue.o
  4521. build\kernel\src\thread.o
  4522. rt_timer_enter_sethook build\kernel\src\timer.o
  4523. rt_timer_exit_sethook build\kernel\src\timer.o
  4524. rt_timer_init build\kernel\src\timer.o
  4525. build\kernel\components\drivers\src\workqueue.o
  4526. build\kernel\src\thread.o
  4527. rt_timer_next_timeout_tick build\kernel\src\timer.o
  4528. rt_timer_start build\kernel\src\timer.o
  4529. build\kernel\components\drivers\src\workqueue.o
  4530. build\kernel\components\drivers\src\waitqueue.o
  4531. build\kernel\components\drivers\src\dataqueue.o
  4532. build\kernel\components\drivers\src\completion.o
  4533. build\kernel\src\thread.o
  4534. build\kernel\src\mempool.o
  4535. build\kernel\src\ipc.o
  4536. rt_timer_stop build\kernel\src\timer.o
  4537. build\kernel\components\drivers\src\workqueue.o
  4538. build\kernel\src\thread.o
  4539. rt_vsnprintf build\kernel\src\kservice.o
  4540. rt_vsprintf build\kernel\src\kservice.o
  4541. rt_workqueue_cancel_all_work build\kernel\components\drivers\src\workqueue.o
  4542. rt_workqueue_cancel_work build\kernel\components\drivers\src\workqueue.o
  4543. rt_workqueue_cancel_work_sync build\kernel\components\drivers\src\workqueue.o
  4544. rt_workqueue_create build\kernel\components\drivers\src\workqueue.o
  4545. rt_workqueue_critical_work build\kernel\components\drivers\src\workqueue.o
  4546. rt_workqueue_destroy build\kernel\components\drivers\src\workqueue.o
  4547. rt_workqueue_dowork build\kernel\components\drivers\src\workqueue.o
  4548. rt_workqueue_submit_work build\kernel\components\drivers\src\workqueue.o
  4549. rt_wqueue_add build\kernel\components\drivers\src\waitqueue.o
  4550. rt_wqueue_remove build\kernel\components\drivers\src\waitqueue.o
  4551. rt_wqueue_wait build\kernel\components\drivers\src\waitqueue.o
  4552. rt_wqueue_wakeup build\kernel\components\drivers\src\waitqueue.o
  4553. rtthread_startup build\kernel\src\components.o
  4554. build\kernel\libcpu\arm\am335x\start_gcc.o
  4555. seekdir build\kernel\components\dfs\src\dfs_posix.o
  4556. serial1 build\drivers\uart.o
  4557. setlocale c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  4558. setvbuf c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setvbuf.o)
  4559. build\kernel\components\libc\compilers\newlib\stdio.o
  4560. shell build\kernel\components\finsh\shell.o
  4561. snprintf c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-snprintf.o)
  4562. build\kernel\components\libc\compilers\newlib\stdio.o
  4563. software_init_hook c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp/crt0.o
  4564. stack_start build\kernel\libcpu\arm\am335x\start_gcc.o
  4565. stack_top build\kernel\libcpu\arm\am335x\start_gcc.o
  4566. stat build\kernel\components\dfs\src\dfs_posix.o
  4567. build\kernel\components\libc\compilers\newlib\syscalls.o
  4568. build\kernel\components\finsh\msh_file.o
  4569. statfs build\kernel\components\dfs\src\dfs_posix.o
  4570. strchr c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strchr.o)
  4571. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  4572. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  4573. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-putenv_r.o)
  4574. strcmp c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcmp.o)
  4575. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-locale.o)
  4576. build\kernel\components\finsh\finsh_token.o
  4577. build\kernel\components\finsh\finsh_vm.o
  4578. build\kernel\components\finsh\finsh_var.o
  4579. build\kernel\components\finsh\msh_file.o
  4580. build\kernel\components\dfs\src\dfs_fs.o
  4581. build\kernel\components\dfs\src\dfs_file.o
  4582. build\kernel\components\dfs\src\dfs.o
  4583. strcpy c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strcpy.o)
  4584. build\kernel\components\finsh\msh.o
  4585. build\kernel\components\finsh\shell.o
  4586. strlen c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strlen.o)
  4587. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  4588. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  4589. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strdup_r.o)
  4590. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-setenv_r.o)
  4591. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-puts.o)
  4592. build\kernel\components\finsh\finsh_token.o
  4593. build\kernel\components\finsh\finsh_vm.o
  4594. build\kernel\components\finsh\finsh_var.o
  4595. build\kernel\components\finsh\finsh_node.o
  4596. build\kernel\components\finsh\msh_file.o
  4597. build\kernel\components\finsh\msh.o
  4598. build\kernel\components\finsh\cmd.o
  4599. build\kernel\components\finsh\shell.o
  4600. build\kernel\components\dfs\src\dfs_posix.o
  4601. build\kernel\components\dfs\src\dfs_fs.o
  4602. build\kernel\components\dfs\src\dfs.o
  4603. strncmp c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncmp.o)
  4604. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-getenv_r.o)
  4605. build\kernel\components\finsh\finsh_vm.o
  4606. build\kernel\components\finsh\finsh_var.o
  4607. build\kernel\components\finsh\msh.o
  4608. build\kernel\components\finsh\cmd.o
  4609. build\kernel\components\dfs\src\dfs_fs.o
  4610. strncpy c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strncpy.o)
  4611. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfiprintf.o)
  4612. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-svfprintf.o)
  4613. build\kernel\components\finsh\finsh_token.o
  4614. build\kernel\components\finsh\finsh_var.o
  4615. build\kernel\components\finsh\finsh_parser.o
  4616. build\kernel\components\finsh\finsh_node.o
  4617. build\kernel\components\finsh\shell.o
  4618. build\kernel\components\dfs\src\dfs_posix.o
  4619. strrchr c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strrchr.o)
  4620. build\kernel\components\dfs\src\dfs_file.o
  4621. strstr c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strstr.o)
  4622. build\kernel\components\finsh\msh_file.o
  4623. strtol c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  4624. c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-atoi.o)
  4625. strtol_l c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_gcc/mingw/bin/../lib/gcc/arm-none-eabi/7.3.1/../../../../arm-none-eabi/lib/thumb/v7-ar/fpv3/softfp\libc.a(lib_a-strtol.o)
  4626. system_vectors build\kernel\libcpu\arm\am335x\vector_gcc.o
  4627. build\kernel\libcpu\arm\am335x\interrupt.o
  4628. telldir build\kernel\components\dfs\src\dfs_posix.o
  4629. text_segment build\kernel\components\finsh\finsh_vm.o
  4630. build\kernel\components\finsh\finsh_compiler.o
  4631. time build\kernel\components\libc\compilers\common\time.o
  4632. token_get_string build\kernel\components\finsh\finsh_token.o
  4633. uart1 build\drivers\uart.o
  4634. umask build\kernel\components\libc\compilers\newlib\syscalls.o
  4635. unlink build\kernel\components\dfs\src\dfs_posix.o
  4636. build\kernel\components\libc\compilers\newlib\syscalls.o
  4637. build\kernel\components\finsh\msh_file.o
  4638. vector_dabt build\kernel\libcpu\arm\am335x\start_gcc.o
  4639. build\kernel\libcpu\arm\am335x\vector_gcc.o
  4640. vector_fiq build\kernel\libcpu\arm\am335x\start_gcc.o
  4641. build\kernel\libcpu\arm\am335x\vector_gcc.o
  4642. vector_irq build\kernel\libcpu\arm\am335x\start_gcc.o
  4643. build\kernel\libcpu\arm\am335x\vector_gcc.o
  4644. vector_pabt build\kernel\libcpu\arm\am335x\start_gcc.o
  4645. build\kernel\libcpu\arm\am335x\vector_gcc.o
  4646. vector_resv build\kernel\libcpu\arm\am335x\start_gcc.o
  4647. build\kernel\libcpu\arm\am335x\vector_gcc.o
  4648. vector_swi build\kernel\libcpu\arm\am335x\start_gcc.o
  4649. build\kernel\libcpu\arm\am335x\vector_gcc.o
  4650. vector_undef build\kernel\libcpu\arm\am335x\start_gcc.o
  4651. build\kernel\libcpu\arm\am335x\vector_gcc.o
  4652. version build\kernel\components\finsh\cmd.o
  4653. vmm_thread build\kernel\libcpu\arm\am335x\start_gcc.o
  4654. vmm_virq_check build\kernel\libcpu\arm\am335x\start_gcc.o
  4655. working_directory build\kernel\components\dfs\src\dfs.o
  4656. build\kernel\components\finsh\msh_file.o
  4657. build\kernel\components\dfs\src\dfs_posix.o
  4658. build\kernel\components\dfs\src\dfs_file.o
  4659. write build\kernel\components\dfs\src\dfs_posix.o
  4660. build\kernel\components\libc\compilers\newlib\syscalls.o
  4661. build\kernel\components\finsh\msh_file.o