| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704 |
- Archive member included to satisfy reference by file (symbol)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_token.o (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-fclose.o)
- build\kernel\components\libc\compilers\newlib\stdio.o (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-fflush.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\libc\compilers\newlib\stdio.o (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-findfp.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\libc\compilers\newlib\stdio.o (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-fseek.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\libc\compilers\newlib\stdio.o (_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-lock.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\shell.o (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-memcpy-stub.o)
- build\kernel\components\drivers\src\ringbuffer.o (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-memset.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\libc\compilers\newlib\libc.o (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_r.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\applications\main.o (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-refill.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\libc\compilers\newlib\stdio.o (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-snprintf.o)
- build\kernel\components\libc\compilers\newlib\stdio.o (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-stdio.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\dfs\src\dfs.o (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-strcpy.o)
- build\kernel\components\finsh\shell.o (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-strdup_r.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\dfs\src\dfs.o (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-strncmp.o)
- build\kernel\components\dfs\src\dfs_fs.o (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-strncpy.o)
- build\kernel\components\dfs\src\dfs_posix.o (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-strrchr.o)
- build\kernel\components\dfs\src\dfs_file.o (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-strstr.o)
- build\kernel\components\finsh\msh_file.o (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-strtol.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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_)
- c:/users/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)
- build\kernel\src\ipc.o (__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(_divsi3.o)
- build\kernel\components\finsh\finsh_ops.o (__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(_dvmd_tls.o)
- c:/users/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)
- c:/users/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)
- build\kernel\components\libc\compilers\common\time.o (__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_uldivmod.o)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/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)
- c:/users/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)
- Allocating common symbols
- Common symbol size file
- __lock___atexit_recursive_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)
- rt_interrupt_to_thread
- 0x4 build\kernel\libcpu\arm\am335x\interrupt.o
- rt_interrupt_from_thread
- 0x4 build\kernel\libcpu\arm\am335x\interrupt.o
- __lock___arc4random_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)
- global_sysvar_list 0x4 build\kernel\components\finsh\finsh_var.o
- finsh_heap 0x80 build\kernel\components\finsh\finsh_heap.o
- shell 0x4 build\kernel\components\finsh\shell.o
- rt_thread_switch_interrupt_flag
- 0x4 build\kernel\libcpu\arm\am335x\interrupt.o
- text_segment 0x80 build\kernel\components\finsh\finsh_vm.o
- __lock___env_recursive_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)
- __lock___sinit_recursive_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)
- finsh_compile_pc 0x4 build\kernel\components\finsh\finsh_compiler.o
- finsh_vm_stack 0x100 build\kernel\components\finsh\finsh_vm.o
- global_errno 0x1 build\kernel\components\finsh\finsh_error.o
- __lock___malloc_recursive_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)
- rt_thread_priority_table
- 0x100 build\kernel\src\scheduler.o
- serial1 0x54 build\drivers\uart.o
- rt_object_put_hook 0x4 build\kernel\src\object.o
- rt_current_priority
- 0x1 build\kernel\src\scheduler.o
- filesystem_table 0x20 build\kernel\components\dfs\src\dfs.o
- rt_assert_hook 0x4 build\kernel\src\kservice.o
- isr_table 0x400 build\kernel\libcpu\arm\am335x\interrupt.o
- rt_object_take_hook
- 0x4 build\kernel\src\object.o
- rt_thread_ready_priority_group
- 0x4 build\kernel\src\scheduler.o
- rt_thread_defunct 0x8 build\kernel\src\scheduler.o
- global_node_table 0x140 build\kernel\components\finsh\finsh_node.o
- finsh_compile_sp 0x4 build\kernel\components\finsh\finsh_compiler.o
- __lock___at_quick_exit_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)
- finsh_pc 0x4 build\kernel\components\finsh\finsh_vm.o
- filesystem_operation_table
- 0x8 build\kernel\components\dfs\src\dfs.o
- rt_object_trytake_hook
- 0x4 build\kernel\src\object.o
- __lock___dd_hash_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)
- __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)
- finsh_sp 0x4 build\kernel\components\finsh\finsh_vm.o
- global_variable 0xc0 build\kernel\components\finsh\finsh_var.o
- __lock___sfp_recursive_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)
- Discarded input sections
- .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
- .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
- .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
- .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
- .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
- .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
- .ARM.attributes
- 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
- .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
- .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
- .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
- .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
- .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
- .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
- .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
- .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
- .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
- .ARM.attributes
- 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
- .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
- .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
- .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
- .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
- .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
- .ARM.attributes
- 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
- .data 0x0000000000000000 0x0 build\applications\board.o
- .bss 0x0000000000000000 0x0 build\applications\board.o
- .data 0x0000000000000000 0x0 build\applications\main.o
- .bss 0x0000000000000000 0x0 build\applications\main.o
- .bss 0x0000000000000000 0x0 build\drivers\gpio.o
- .bss 0x0000000000000000 0x0 build\drivers\uart.o
- .data 0x0000000000000000 0x0 build\kernel\src\clock.o
- .data 0x0000000000000000 0x0 build\kernel\src\components.o
- .bss 0x0000000000000000 0x0 build\kernel\src\components.o
- .data 0x0000000000000000 0x0 build\kernel\src\device.o
- .bss 0x0000000000000000 0x0 build\kernel\src\device.o
- .data 0x0000000000000000 0x0 build\kernel\src\idle.o
- .data 0x0000000000000000 0x0 build\kernel\src\ipc.o
- .bss 0x0000000000000000 0x0 build\kernel\src\ipc.o
- .data 0x0000000000000000 0x0 build\kernel\src\irq.o
- .data 0x0000000000000000 0x0 build\kernel\src\kservice.o
- .data 0x0000000000000000 0x0 build\kernel\src\mem.o
- .text 0x0000000000000000 0xb00 build\kernel\src\mempool.o
- .data 0x0000000000000000 0x0 build\kernel\src\mempool.o
- .bss 0x0000000000000000 0x8 build\kernel\src\mempool.o
- .rodata 0x0000000000000000 0x198 build\kernel\src\mempool.o
- .debug_info 0x0000000000000000 0x12a4 build\kernel\src\mempool.o
- .debug_abbrev 0x0000000000000000 0x2ec build\kernel\src\mempool.o
- .debug_loc 0x0000000000000000 0x2a4 build\kernel\src\mempool.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\src\mempool.o
- .debug_line 0x0000000000000000 0x3ed build\kernel\src\mempool.o
- .debug_str 0x0000000000000000 0xa5c build\kernel\src\mempool.o
- .comment 0x0000000000000000 0x7c build\kernel\src\mempool.o
- .debug_frame 0x0000000000000000 0x188 build\kernel\src\mempool.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\src\mempool.o
- .data 0x0000000000000000 0x0 build\kernel\src\scheduler.o
- .data 0x0000000000000000 0x0 build\kernel\src\thread.o
- .data 0x0000000000000000 0x0 build\kernel\src\timer.o
- .text 0x0000000000000000 0xd8 build\kernel\libcpu\arm\common\backtrace.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\backtrace.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\backtrace.o
- .rodata 0x0000000000000000 0x19 build\kernel\libcpu\arm\common\backtrace.o
- .debug_info 0x0000000000000000 0xaf7 build\kernel\libcpu\arm\common\backtrace.o
- .debug_abbrev 0x0000000000000000 0x1d5 build\kernel\libcpu\arm\common\backtrace.o
- .debug_loc 0x0000000000000000 0x38 build\kernel\libcpu\arm\common\backtrace.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\libcpu\arm\common\backtrace.o
- .debug_line 0x0000000000000000 0x25e build\kernel\libcpu\arm\common\backtrace.o
- .debug_str 0x0000000000000000 0x654 build\kernel\libcpu\arm\common\backtrace.o
- .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\common\backtrace.o
- .debug_frame 0x0000000000000000 0x30 build\kernel\libcpu\arm\common\backtrace.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\libcpu\arm\common\backtrace.o
- .text 0x0000000000000000 0xc build\kernel\libcpu\arm\common\div0.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\div0.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\div0.o
- .debug_info 0x0000000000000000 0x3c build\kernel\libcpu\arm\common\div0.o
- .debug_abbrev 0x0000000000000000 0x2c build\kernel\libcpu\arm\common\div0.o
- .debug_loc 0x0000000000000000 0x2c build\kernel\libcpu\arm\common\div0.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\libcpu\arm\common\div0.o
- .debug_line 0x0000000000000000 0x57 build\kernel\libcpu\arm\common\div0.o
- .debug_str 0x0000000000000000 0x108 build\kernel\libcpu\arm\common\div0.o
- .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\common\div0.o
- .debug_frame 0x0000000000000000 0x28 build\kernel\libcpu\arm\common\div0.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\libcpu\arm\common\div0.o
- .text 0x0000000000000000 0xf4 build\kernel\libcpu\arm\common\showmem.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\showmem.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\common\showmem.o
- .rodata 0x0000000000000000 0x36 build\kernel\libcpu\arm\common\showmem.o
- .debug_info 0x0000000000000000 0xb08 build\kernel\libcpu\arm\common\showmem.o
- .debug_abbrev 0x0000000000000000 0x1c4 build\kernel\libcpu\arm\common\showmem.o
- .debug_loc 0x0000000000000000 0x38 build\kernel\libcpu\arm\common\showmem.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\libcpu\arm\common\showmem.o
- .debug_line 0x0000000000000000 0x267 build\kernel\libcpu\arm\common\showmem.o
- .debug_str 0x0000000000000000 0x653 build\kernel\libcpu\arm\common\showmem.o
- .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\common\showmem.o
- .debug_frame 0x0000000000000000 0x30 build\kernel\libcpu\arm\common\showmem.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\libcpu\arm\common\showmem.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cpu.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cpu.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\interrupt.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\interrupt.o
- .text 0x0000000000000000 0x3b4 build\kernel\libcpu\arm\am335x\mmu.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\mmu.o
- .bss 0x0000000000000000 0x4000 build\kernel\libcpu\arm\am335x\mmu.o
- .debug_info 0x0000000000000000 0xd77 build\kernel\libcpu\arm\am335x\mmu.o
- .debug_abbrev 0x0000000000000000 0x26d build\kernel\libcpu\arm\am335x\mmu.o
- .debug_loc 0x0000000000000000 0x3f0 build\kernel\libcpu\arm\am335x\mmu.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\libcpu\arm\am335x\mmu.o
- .debug_line 0x0000000000000000 0x29b build\kernel\libcpu\arm\am335x\mmu.o
- .debug_str 0x0000000000000000 0x7b6 build\kernel\libcpu\arm\am335x\mmu.o
- .comment 0x0000000000000000 0x7c build\kernel\libcpu\arm\am335x\mmu.o
- .debug_frame 0x0000000000000000 0x238 build\kernel\libcpu\arm\am335x\mmu.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\libcpu\arm\am335x\mmu.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\stack.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\stack.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\trap.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\trap.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\context_gcc.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\context_gcc.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cp15_gcc.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\cp15_gcc.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\start_gcc.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\start_gcc.o
- .text 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\vector_gcc.o
- .data 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\vector_gcc.o
- .bss 0x0000000000000000 0x0 build\kernel\libcpu\arm\am335x\vector_gcc.o
- .data 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_file.o
- .data 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_fs.o
- .bss 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_fs.o
- .data 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_posix.o
- .bss 0x0000000000000000 0x0 build\kernel\components\dfs\src\dfs_posix.o
- .data 0x0000000000000000 0x0 build\kernel\components\dfs\filesystems\devfs\devfs.o
- .bss 0x0000000000000000 0x0 build\kernel\components\dfs\filesystems\devfs\devfs.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\misc\pin.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\serial\serial.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\completion.o
- .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\completion.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\dataqueue.o
- .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\dataqueue.o
- .text 0x0000000000000000 0x67c build\kernel\components\drivers\src\pipe.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\pipe.o
- .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\pipe.o
- .rodata 0x0000000000000000 0x43 build\kernel\components\drivers\src\pipe.o
- .debug_info 0x0000000000000000 0x1551 build\kernel\components\drivers\src\pipe.o
- .debug_abbrev 0x0000000000000000 0x2b0 build\kernel\components\drivers\src\pipe.o
- .debug_loc 0x0000000000000000 0x210 build\kernel\components\drivers\src\pipe.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\components\drivers\src\pipe.o
- .debug_ranges 0x0000000000000000 0x30 build\kernel\components\drivers\src\pipe.o
- .debug_line 0x0000000000000000 0x3d2 build\kernel\components\drivers\src\pipe.o
- .debug_str 0x0000000000000000 0xc3b build\kernel\components\drivers\src\pipe.o
- .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\pipe.o
- .debug_frame 0x0000000000000000 0x130 build\kernel\components\drivers\src\pipe.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\components\drivers\src\pipe.o
- .text 0x0000000000000000 0x1088 build\kernel\components\drivers\src\ringblk_buf.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringblk_buf.o
- .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringblk_buf.o
- .rodata 0x0000000000000000 0x1b0 build\kernel\components\drivers\src\ringblk_buf.o
- .debug_info 0x0000000000000000 0x1437 build\kernel\components\drivers\src\ringblk_buf.o
- .debug_abbrev 0x0000000000000000 0x310 build\kernel\components\drivers\src\ringblk_buf.o
- .debug_loc 0x0000000000000000 0x5a0 build\kernel\components\drivers\src\ringblk_buf.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\components\drivers\src\ringblk_buf.o
- .debug_line 0x0000000000000000 0x50a build\kernel\components\drivers\src\ringblk_buf.o
- .debug_str 0x0000000000000000 0x978 build\kernel\components\drivers\src\ringblk_buf.o
- .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\ringblk_buf.o
- .debug_frame 0x0000000000000000 0x314 build\kernel\components\drivers\src\ringblk_buf.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\components\drivers\src\ringblk_buf.o
- .text 0x0000000000000000 0x1100 build\kernel\components\drivers\src\ringbuffer.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringbuffer.o
- .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\ringbuffer.o
- .rodata 0x0000000000000000 0x112 build\kernel\components\drivers\src\ringbuffer.o
- .debug_info 0x0000000000000000 0xfea build\kernel\components\drivers\src\ringbuffer.o
- .debug_abbrev 0x0000000000000000 0x2b7 build\kernel\components\drivers\src\ringbuffer.o
- .debug_loc 0x0000000000000000 0x2e4 build\kernel\components\drivers\src\ringbuffer.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\components\drivers\src\ringbuffer.o
- .debug_line 0x0000000000000000 0x3b6 build\kernel\components\drivers\src\ringbuffer.o
- .debug_str 0x0000000000000000 0x83e build\kernel\components\drivers\src\ringbuffer.o
- .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\ringbuffer.o
- .debug_frame 0x0000000000000000 0x1c0 build\kernel\components\drivers\src\ringbuffer.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\components\drivers\src\ringbuffer.o
- .text 0x0000000000000000 0x448 build\kernel\components\drivers\src\waitqueue.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\waitqueue.o
- .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\waitqueue.o
- .rodata 0x0000000000000000 0x3b build\kernel\components\drivers\src\waitqueue.o
- .debug_info 0x0000000000000000 0x10cd build\kernel\components\drivers\src\waitqueue.o
- .debug_abbrev 0x0000000000000000 0x287 build\kernel\components\drivers\src\waitqueue.o
- .debug_loc 0x0000000000000000 0x234 build\kernel\components\drivers\src\waitqueue.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\components\drivers\src\waitqueue.o
- .debug_line 0x0000000000000000 0x308 build\kernel\components\drivers\src\waitqueue.o
- .debug_str 0x0000000000000000 0x8e8 build\kernel\components\drivers\src\waitqueue.o
- .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\waitqueue.o
- .debug_frame 0x0000000000000000 0x134 build\kernel\components\drivers\src\waitqueue.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\components\drivers\src\waitqueue.o
- .text 0x0000000000000000 0xd18 build\kernel\components\drivers\src\workqueue.o
- .data 0x0000000000000000 0x0 build\kernel\components\drivers\src\workqueue.o
- .bss 0x0000000000000000 0x0 build\kernel\components\drivers\src\workqueue.o
- .rodata 0x0000000000000000 0x109 build\kernel\components\drivers\src\workqueue.o
- .debug_info 0x0000000000000000 0x1592 build\kernel\components\drivers\src\workqueue.o
- .debug_abbrev 0x0000000000000000 0x2e8 build\kernel\components\drivers\src\workqueue.o
- .debug_loc 0x0000000000000000 0x4bc build\kernel\components\drivers\src\workqueue.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\components\drivers\src\workqueue.o
- .debug_line 0x0000000000000000 0x3e7 build\kernel\components\drivers\src\workqueue.o
- .debug_str 0x0000000000000000 0xab4 build\kernel\components\drivers\src\workqueue.o
- .comment 0x0000000000000000 0x7c build\kernel\components\drivers\src\workqueue.o
- .debug_frame 0x0000000000000000 0x2ac build\kernel\components\drivers\src\workqueue.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\components\drivers\src\workqueue.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\shell.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\cmd.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\msh.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\msh_file.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\msh_file.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_compiler.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_compiler.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_error.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_heap.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_init.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_init.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_node.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_node.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_ops.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_ops.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_parser.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_parser.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_var.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_var.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_vm.o
- .data 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_token.o
- .bss 0x0000000000000000 0x0 build\kernel\components\finsh\finsh_token.o
- .text 0x0000000000000000 0xd2c build\kernel\components\libc\compilers\common\time.o
- .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\common\time.o
- .bss 0x0000000000000000 0x61 build\kernel\components\libc\compilers\common\time.o
- .rodata 0x0000000000000000 0x95 build\kernel\components\libc\compilers\common\time.o
- .debug_info 0x0000000000000000 0x1296 build\kernel\components\libc\compilers\common\time.o
- .debug_abbrev 0x0000000000000000 0x2a3 build\kernel\components\libc\compilers\common\time.o
- .debug_loc 0x0000000000000000 0x2f0 build\kernel\components\libc\compilers\common\time.o
- .debug_aranges
- 0x0000000000000000 0x20 build\kernel\components\libc\compilers\common\time.o
- .debug_ranges 0x0000000000000000 0x18 build\kernel\components\libc\compilers\common\time.o
- .debug_line 0x0000000000000000 0x3df build\kernel\components\libc\compilers\common\time.o
- .debug_str 0x0000000000000000 0xa8a build\kernel\components\libc\compilers\common\time.o
- .comment 0x0000000000000000 0x7c build\kernel\components\libc\compilers\common\time.o
- .debug_frame 0x0000000000000000 0x1c8 build\kernel\components\libc\compilers\common\time.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\components\libc\compilers\common\time.o
- .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc.o
- .bss 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc.o
- .text 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc_syms.o
- .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc_syms.o
- .bss 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\libc_syms.o
- .debug_info 0x0000000000000000 0xa8e build\kernel\components\libc\compilers\newlib\libc_syms.o
- .debug_abbrev 0x0000000000000000 0x17b build\kernel\components\libc\compilers\newlib\libc_syms.o
- .debug_aranges
- 0x0000000000000000 0x18 build\kernel\components\libc\compilers\newlib\libc_syms.o
- .debug_line 0x0000000000000000 0x20a build\kernel\components\libc\compilers\newlib\libc_syms.o
- .debug_str 0x0000000000000000 0x639 build\kernel\components\libc\compilers\newlib\libc_syms.o
- .comment 0x0000000000000000 0x7c build\kernel\components\libc\compilers\newlib\libc_syms.o
- .ARM.attributes
- 0x0000000000000000 0x2d build\kernel\components\libc\compilers\newlib\libc_syms.o
- .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\stdio.o
- .data 0x0000000000000000 0x0 build\kernel\components\libc\compilers\newlib\syscalls.o
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text.__fp_lock
- 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)
- .text.__fp_unlock
- 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)
- .text._cleanup
- 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)
- .text.__fp_lock_all
- 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)
- .text.__fp_unlock_all
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text.__retarget_lock_init
- 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)
- .text.__retarget_lock_close
- 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)
- .text.__retarget_lock_acquire
- 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)
- .text.__retarget_lock_try_acquire
- 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)
- .text.__retarget_lock_try_acquire_recursive
- 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)
- .text.__retarget_lock_release
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text._unsetenv_r
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text._snprintf_r
- 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)
- .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)
- .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)
- .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)
- .text.__seofread
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text._strtol_r
- 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)
- .text.strtol_l
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text._getenv_r
- 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)
- .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)
- .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)
- .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)
- .text._setlocale_r
- 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)
- .text.__locale_mb_cur_max
- 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)
- .text.__locale_ctype_ptr
- 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)
- .text.setlocale
- 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)
- .bss._PathLocale
- 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)
- .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)
- .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)
- .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)
- .text.__localeconv_l
- 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)
- .text.localeconv
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text._mbtowc_r
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text._mprec_log10
- 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)
- .text.__copybits
- 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)
- .text.__any_on
- 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)
- .rodata.__mprec_tinytens
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .text._svfiprintf_r
- 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)
- .rodata._svfiprintf_r.str1.1
- 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)
- .rodata.blanks.8569
- 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)
- .rodata.zeroes.8570
- 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)
- .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)
- .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)
- .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)
- .text._wctomb_r
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .ARM.attributes
- 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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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
- .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
- .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
- .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
- .ARM.attributes
- 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
- .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
- .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
- .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
- .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
- .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
- .ARM.attributes
- 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
- Memory Configuration
- Name Origin Length Attributes
- *default* 0x0000000000000000 0xffffffffffffffff
- Linker script and memory map
- 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
- 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
- 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
- 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
- LOAD build\applications\board.o
- LOAD build\applications\main.o
- LOAD build\drivers\gpio.o
- LOAD build\drivers\uart.o
- LOAD build\kernel\src\clock.o
- LOAD build\kernel\src\components.o
- LOAD build\kernel\src\device.o
- LOAD build\kernel\src\idle.o
- LOAD build\kernel\src\ipc.o
- LOAD build\kernel\src\irq.o
- LOAD build\kernel\src\kservice.o
- LOAD build\kernel\src\mem.o
- LOAD build\kernel\src\mempool.o
- LOAD build\kernel\src\object.o
- LOAD build\kernel\src\scheduler.o
- LOAD build\kernel\src\thread.o
- LOAD build\kernel\src\timer.o
- LOAD build\kernel\libcpu\arm\common\backtrace.o
- LOAD build\kernel\libcpu\arm\common\div0.o
- LOAD build\kernel\libcpu\arm\common\showmem.o
- LOAD build\kernel\libcpu\arm\am335x\cpu.o
- LOAD build\kernel\libcpu\arm\am335x\interrupt.o
- LOAD build\kernel\libcpu\arm\am335x\mmu.o
- LOAD build\kernel\libcpu\arm\am335x\stack.o
- LOAD build\kernel\libcpu\arm\am335x\trap.o
- LOAD build\kernel\libcpu\arm\am335x\context_gcc.o
- LOAD build\kernel\libcpu\arm\am335x\cp15_gcc.o
- LOAD build\kernel\libcpu\arm\am335x\start_gcc.o
- LOAD build\kernel\libcpu\arm\am335x\vector_gcc.o
- LOAD build\kernel\components\dfs\src\dfs.o
- LOAD build\kernel\components\dfs\src\dfs_file.o
- LOAD build\kernel\components\dfs\src\dfs_fs.o
- LOAD build\kernel\components\dfs\src\dfs_posix.o
- LOAD build\kernel\components\dfs\filesystems\devfs\devfs.o
- LOAD build\kernel\components\drivers\misc\pin.o
- LOAD build\kernel\components\drivers\serial\serial.o
- LOAD build\kernel\components\drivers\src\completion.o
- LOAD build\kernel\components\drivers\src\dataqueue.o
- LOAD build\kernel\components\drivers\src\pipe.o
- LOAD build\kernel\components\drivers\src\ringblk_buf.o
- LOAD build\kernel\components\drivers\src\ringbuffer.o
- LOAD build\kernel\components\drivers\src\waitqueue.o
- LOAD build\kernel\components\drivers\src\workqueue.o
- LOAD build\kernel\components\finsh\shell.o
- LOAD build\kernel\components\finsh\cmd.o
- LOAD build\kernel\components\finsh\msh.o
- LOAD build\kernel\components\finsh\msh_file.o
- LOAD build\kernel\components\finsh\finsh_compiler.o
- LOAD build\kernel\components\finsh\finsh_error.o
- LOAD build\kernel\components\finsh\finsh_heap.o
- LOAD build\kernel\components\finsh\finsh_init.o
- LOAD build\kernel\components\finsh\finsh_node.o
- LOAD build\kernel\components\finsh\finsh_ops.o
- LOAD build\kernel\components\finsh\finsh_parser.o
- LOAD build\kernel\components\finsh\finsh_var.o
- LOAD build\kernel\components\finsh\finsh_vm.o
- LOAD build\kernel\components\finsh\finsh_token.o
- LOAD build\kernel\components\libc\compilers\common\time.o
- LOAD build\kernel\components\libc\compilers\newlib\libc.o
- LOAD build\kernel\components\libc\compilers\newlib\libc_syms.o
- LOAD build\kernel\components\libc\compilers\newlib\stdio.o
- LOAD build\kernel\components\libc\compilers\newlib\syscalls.o
- 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
- 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
- START GROUP
- 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
- 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
- END GROUP
- 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
- 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
- 0x0000000080200000 . = 0x80200000
- 0x0000000080200000 __text_start = .
- .text 0x0000000080200000 0x29b30
- *(.vectors)
- .vectors 0x0000000080200000 0x40 build\kernel\libcpu\arm\am335x\vector_gcc.o
- 0x0000000080200000 system_vectors
- *(.text)
- .text 0x0000000080200040 0x32c build\applications\board.o
- 0x00000000802001bc rt_hw_timer_init
- 0x00000000802002fc rt_hw_board_init
- 0x000000008020031c rt_hw_cpu_reset
- .text 0x000000008020036c 0x20 build\applications\main.o
- 0x000000008020036c main
- .text 0x000000008020038c 0x2bc build\drivers\gpio.o
- 0x000000008020061c rt_hw_gpio_init
- .text 0x0000000080200648 0x804 build\drivers\uart.o
- 0x00000000802009e0 printkc
- 0x0000000080200d54 rt_hw_serial_init
- .text 0x0000000080200e4c 0x1d4 build\kernel\src\clock.o
- 0x0000000080200e4c rt_tick_get
- 0x0000000080200e70 rt_tick_set
- 0x0000000080200eac rt_tick_increase
- 0x0000000080200f3c rt_tick_from_millisecond
- 0x0000000080201000 rt_tick_get_millisecond
- .text 0x0000000080201020 0x200 build\kernel\src\components.o
- 0x0000000080201090 rt_components_board_init
- 0x00000000802010e4 rt_components_init
- 0x0000000080201138 entry
- 0x0000000080201150 main_thread_entry
- 0x0000000080201174 rt_application_init
- 0x00000000802011e8 rtthread_startup
- .text 0x0000000080201220 0x9f0 build\kernel\src\device.o
- 0x0000000080201220 rt_device_register
- 0x00000000802012b4 rt_device_unregister
- 0x0000000080201364 rt_device_init_all
- 0x0000000080201380 rt_device_find
- 0x00000000802013ac rt_device_create
- 0x0000000080201434 rt_device_destroy
- 0x00000000802014e8 rt_device_init
- 0x00000000802015ac rt_device_open
- 0x0000000080201798 rt_device_close
- 0x00000000802018a4 rt_device_read
- 0x0000000080201980 rt_device_write
- 0x0000000080201a5c rt_device_control
- 0x0000000080201b08 rt_device_set_rx_indicate
- 0x0000000080201b8c rt_device_set_tx_complete
- .text 0x0000000080201c10 0x400 build\kernel\src\idle.o
- 0x0000000080201c74 rt_thread_idle_sethook
- 0x0000000080201d08 rt_thread_idle_delhook
- 0x0000000080201de4 rt_thread_idle_excute
- 0x0000000080201f1c rt_thread_idle_init
- 0x0000000080201fe4 rt_thread_idle_gethandler
- .text 0x0000000080202010 0x3f30 build\kernel\src\ipc.o
- 0x00000000802022bc rt_ipc_get_highest_priority
- 0x000000008020233c rt_sem_init
- 0x00000000802023ec rt_sem_detach
- 0x00000000802024ac rt_sem_create
- 0x0000000080202594 rt_sem_delete
- 0x00000000802026a0 rt_sem_take
- 0x00000000802028ec rt_sem_trytake
- 0x0000000080202918 rt_sem_release
- 0x0000000080202a4c rt_sem_control
- 0x0000000080202b20 rt_mutex_init
- 0x0000000080202bcc rt_mutex_detach
- 0x0000000080202c8c rt_mutex_create
- 0x0000000080202d6c rt_mutex_delete
- 0x0000000080202e78 rt_mutex_take
- 0x00000000802031b4 rt_mutex_release
- 0x00000000802034f8 rt_mutex_control
- 0x0000000080203574 rt_event_init
- 0x00000000802035fc rt_event_detach
- 0x00000000802036bc rt_event_create
- 0x0000000080203778 rt_event_delete
- 0x0000000080203884 rt_event_send
- 0x0000000080203ad4 rt_event_recv
- 0x0000000080203e74 rt_event_control
- 0x0000000080203f3c rt_mb_init
- 0x0000000080204008 rt_mb_detach
- 0x00000000802040d8 rt_mb_create
- 0x0000000080204214 rt_mb_delete
- 0x0000000080204340 rt_mb_send_wait
- 0x00000000802046e0 rt_mb_send
- 0x0000000080204714 rt_mb_urgent
- 0x00000000802048bc rt_mb_recv
- 0x0000000080204c98 rt_mb_control
- 0x0000000080204d88 rt_mq_init
- 0x0000000080204ef4 rt_mq_detach
- 0x0000000080204fc4 rt_mq_create
- 0x0000000080205194 rt_mq_delete
- 0x00000000802052c0 rt_mq_send_wait
- 0x0000000080205704 rt_mq_send
- 0x0000000080205740 rt_mq_urgent
- 0x0000000080205994 rt_mq_recv
- 0x0000000080205dfc rt_mq_control
- .text 0x0000000080205f40 0x17c build\kernel\src\irq.o
- 0x0000000080205f40 rt_interrupt_enter_sethook
- 0x0000000080205f70 rt_interrupt_leave_sethook
- 0x0000000080205fa0 rt_interrupt_enter
- 0x0000000080206010 rt_interrupt_leave
- 0x0000000080206080 rt_interrupt_get_nest
- .text 0x00000000802060bc 0x1df4 build\kernel\src\kservice.o
- 0x00000000802060bc rt_get_errno
- 0x0000000080206120 rt_set_errno
- 0x0000000080206190 _rt_errno
- 0x00000000802061ec rt_memset
- 0x000000008020634c rt_memcpy
- 0x00000000802064e4 rt_memmove
- 0x00000000802065e0 rt_memcmp
- 0x0000000080206688 rt_strstr
- 0x0000000080206734 rt_strcasecmp
- 0x00000000802067f0 rt_strncpy
- 0x00000000802068b0 rt_strncmp
- 0x0000000080206940 rt_strcmp
- 0x00000000802069c0 rt_strnlen
- 0x0000000080206a34 rt_strlen
- 0x0000000080206a88 rt_strdup
- 0x0000000080206aec rt_show_version
- 0x0000000080206fb4 rt_vsnprintf
- 0x000000008020787c rt_snprintf
- 0x00000000802078cc rt_vsprintf
- 0x0000000080207908 rt_sprintf
- 0x0000000080207950 rt_console_get_device
- 0x0000000080207974 rt_console_set_device
- 0x0000000080207a18 rt_hw_console_output
- 0x0000000080207a38 rt_kputs
- 0x0000000080207afc rt_kprintf
- 0x0000000080207bf0 rt_malloc_align
- 0x0000000080207ce8 rt_free_align
- 0x0000000080207d1c __rt_ffs
- 0x0000000080207df4 rt_assert_set_hook
- 0x0000000080207e24 rt_assert_handler
- .text 0x0000000080207eb0 0x1060 build\kernel\src\mem.o
- 0x0000000080207eb0 rt_malloc_sethook
- 0x0000000080207ee0 rt_free_sethook
- 0x000000008020811c rt_system_heap_init
- 0x0000000080208318 rt_malloc
- 0x0000000080208818 rt_realloc
- 0x0000000080208b20 rt_calloc
- 0x0000000080208b84 rt_free
- 0x0000000080208e24 rt_memory_info
- 0x0000000080208eac list_mem
- .text 0x0000000080208f10 0x9ec build\kernel\src\object.o
- 0x0000000080208fd0 rt_object_attach_sethook
- 0x0000000080209000 rt_object_detach_sethook
- 0x0000000080209030 rt_object_trytake_sethook
- 0x0000000080209060 rt_object_take_sethook
- 0x0000000080209090 rt_object_put_sethook
- 0x00000000802090c0 rt_object_get_information
- 0x0000000080209140 rt_object_get_length
- 0x00000000802091f4 rt_object_get_pointers
- 0x0000000080209300 rt_object_init
- 0x000000008020945c rt_object_detach
- 0x00000000802094f0 rt_object_allocate
- 0x0000000080209658 rt_object_delete
- 0x0000000080209720 rt_object_is_systemobject
- 0x0000000080209780 rt_object_get_type
- 0x00000000802097d0 rt_object_find
- .text 0x00000000802098fc 0x8f0 build\kernel\src\scheduler.o
- 0x0000000080209a34 rt_scheduler_sethook
- 0x0000000080209bc0 rt_system_scheduler_init
- 0x0000000080209c28 rt_system_scheduler_start
- 0x0000000080209c78 rt_schedule
- 0x0000000080209f2c rt_schedule_insert_thread
- 0x000000008020a038 rt_schedule_remove_thread
- 0x000000008020a0ec rt_enter_critical
- 0x000000008020a134 rt_exit_critical
- 0x000000008020a1c4 rt_critical_level
- .text 0x000000008020a1ec 0x1084 build\kernel\src\thread.o
- 0x000000008020a2e8 rt_thread_suspend_sethook
- 0x000000008020a318 rt_thread_resume_sethook
- 0x000000008020a348 rt_thread_inited_sethook
- 0x000000008020a3c4 rt_thread_exit
- 0x000000008020a608 rt_thread_init
- 0x000000008020a6c0 rt_thread_self
- 0x000000008020a6e4 rt_thread_startup
- 0x000000008020a7d8 rt_thread_detach
- 0x000000008020a918 rt_thread_create
- 0x000000008020a9c4 rt_thread_delete
- 0x000000008020aae4 rt_thread_yield
- 0x000000008020ab44 rt_thread_sleep
- 0x000000008020ac1c rt_thread_delay
- 0x000000008020ac44 rt_thread_delay_until
- 0x000000008020ada4 rt_thread_mdelay
- 0x000000008020add8 rt_thread_control
- 0x000000008020af50 rt_thread_suspend
- 0x000000008020b090 rt_thread_resume
- 0x000000008020b17c rt_thread_timeout
- 0x000000008020b244 rt_thread_find
- .text 0x000000008020b270 0xd80 build\kernel\src\timer.o
- 0x000000008020b3a8 rt_timer_enter_sethook
- 0x000000008020b3d8 rt_timer_exit_sethook
- 0x000000008020b590 rt_timer_init
- 0x000000008020b608 rt_timer_detach
- 0x000000008020b6e4 rt_timer_create
- 0x000000008020b750 rt_timer_delete
- 0x000000008020b82c rt_timer_start
- 0x000000008020bb6c rt_timer_stop
- 0x000000008020bc58 rt_timer_control
- 0x000000008020bda0 rt_timer_check
- 0x000000008020bf60 rt_timer_next_timeout_tick
- 0x000000008020bf80 rt_system_timer_init
- 0x000000008020bfd8 rt_system_timer_thread_init
- .text 0x000000008020bff0 0x178 build\kernel\libcpu\arm\am335x\cpu.o
- 0x000000008020c078 rt_hw_cpu_icache_enable
- 0x000000008020c090 rt_hw_cpu_icache_disable
- 0x000000008020c0a8 rt_hw_cpu_icache_status
- 0x000000008020c0c4 rt_hw_cpu_dcache_enable
- 0x000000008020c0dc rt_hw_cpu_dcache_disable
- 0x000000008020c0f4 rt_hw_cpu_dcache_status
- 0x000000008020c110 rt_hw_cpu_shutdown
- .text 0x000000008020c168 0x530 build\kernel\libcpu\arm\am335x\interrupt.o
- 0x000000008020c168 rt_dump_aintc
- 0x000000008020c2a8 rt_hw_interrupt_init
- 0x000000008020c310 rt_hw_interrupt_mask
- 0x000000008020c360 rt_hw_interrupt_umask
- 0x000000008020c3b0 rt_hw_interrupt_control
- 0x000000008020c428 rt_hw_interrupt_get_active
- 0x000000008020c484 rt_hw_interrupt_ack
- 0x000000008020c4ec rt_hw_interrupt_install
- 0x000000008020c580 rt_hw_interrupt_trigger
- 0x000000008020c5d0 rt_hw_interrupt_clear
- 0x000000008020c620 rt_dump_isr_table
- .text 0x000000008020c698 0x22c build\kernel\libcpu\arm\am335x\stack.o
- 0x000000008020c698 rt_hw_stack_init
- .text 0x000000008020c8c4 0x374 build\kernel\libcpu\arm\am335x\trap.o
- 0x000000008020c8c4 rt_hw_show_register
- 0x000000008020c9d4 rt_hw_trap_udef
- 0x000000008020ca2c rt_hw_trap_swi
- 0x000000008020ca60 rt_hw_trap_pabt
- 0x000000008020cab8 rt_hw_trap_dabt
- 0x000000008020cb10 rt_hw_trap_irq
- 0x000000008020cbc4 rt_hw_trap_fiq
- .text 0x000000008020cc38 0x90 build\kernel\libcpu\arm\am335x\context_gcc.o
- 0x000000008020cc38 rt_hw_interrupt_disable
- 0x000000008020cc44 rt_hw_interrupt_enable
- 0x000000008020cc4c rt_hw_context_switch
- 0x000000008020cc78 rt_hw_context_switch_to
- 0x000000008020cc90 rt_hw_context_switch_interrupt
- .text 0x000000008020ccc8 0x13c build\kernel\libcpu\arm\am335x\cp15_gcc.o
- 0x000000008020ccc8 rt_cpu_vector_set_base
- 0x000000008020ccd4 rt_cpu_vector_get_base
- 0x000000008020ccdc rt_cpu_get_sctlr
- 0x000000008020cce4 rt_cpu_dcache_enable
- 0x000000008020ccf4 rt_cpu_icache_enable
- 0x000000008020cd0c rt_cpu_dcache_clean_flush
- 0x000000008020cda0 rt_cpu_dcache_disable
- 0x000000008020cdbc rt_cpu_icache_disable
- 0x000000008020cdcc rt_cpu_mmu_disable
- 0x000000008020cde4 rt_cpu_mmu_enable
- 0x000000008020cdf8 rt_cpu_tlb_set
- *fill* 0x000000008020ce04 0x1c 00000000
- .text 0x000000008020ce20 0x1270 build\kernel\libcpu\arm\am335x\start_gcc.o
- 0x000000008020ce20 stack_start
- 0x000000008020de20 stack_top
- 0x000000008020de20 _reset
- 0x000000008020dee0 vector_undef
- 0x000000008020df40 vector_swi
- 0x000000008020df60 vector_pabt
- 0x000000008020df80 vector_dabt
- 0x000000008020dfc0 vector_resv
- 0x000000008020dfe0 vector_fiq
- 0x000000008020dff0 vector_irq
- .text 0x000000008020e090 0xe34 build\kernel\components\dfs\src\dfs.o
- 0x000000008020e090 dfs_init
- 0x000000008020e184 dfs_lock
- 0x000000008020e1ec dfs_unlock
- 0x000000008020e41c fd_new
- 0x000000008020e4d8 fd_get
- 0x000000008020e59c fd_put
- 0x000000008020e68c fd_is_open
- 0x000000008020e820 dfs_subdir
- 0x000000008020e8b0 dfs_normalize_path
- 0x000000008020ec7c dfs_fdtable_get
- 0x000000008020eca8 list_fd
- .text 0x000000008020eec4 0x1474 build\kernel\components\dfs\src\dfs_file.o
- 0x000000008020eec4 dfs_file_open
- 0x000000008020f104 dfs_file_close
- 0x000000008020f19c dfs_file_ioctl
- 0x000000008020f2b0 dfs_file_read
- 0x000000008020f350 dfs_file_getdents
- 0x000000008020f3d4 dfs_file_unlink
- 0x000000008020f534 dfs_file_write
- 0x000000008020f5a8 dfs_file_flush
- 0x000000008020f60c dfs_file_lseek
- 0x000000008020f694 dfs_file_stat
- 0x000000008020f890 dfs_file_rename
- 0x000000008020fa0c dfs_file_ftruncate
- 0x000000008020fabc ls
- 0x000000008020fc78 rm
- 0x000000008020fcb8 cat
- 0x000000008021011c copy
- .text 0x0000000080210338 0xf5c build\kernel\components\dfs\src\dfs_fs.o
- 0x0000000080210338 dfs_register
- 0x0000000080210470 dfs_filesystem_lookup
- 0x00000000802105c8 dfs_filesystem_get_mounted_path
- 0x0000000080210660 dfs_filesystem_get_partition
- 0x00000000802108b8 dfs_mount
- 0x0000000080210c5c dfs_unmount
- 0x0000000080210dd4 dfs_mkfs
- 0x0000000080210f7c dfs_statfs
- 0x0000000080210fec mkfs
- 0x0000000080211018 df
- .text 0x0000000080211294 0xe0c build\kernel\components\dfs\src\dfs_posix.o
- 0x0000000080211294 open
- 0x0000000080211338 close
- 0x00000000802113b8 read
- 0x0000000080211448 write
- 0x00000000802114d8 lseek
- 0x00000000802115f4 rename
- 0x0000000080211644 unlink
- 0x000000008021168c stat
- 0x00000000802116dc fstat
- 0x00000000802117a8 fsync
- 0x0000000080211804 fcntl
- 0x00000000802118b0 ioctl
- 0x0000000080211908 ftruncate
- 0x00000000802119b4 statfs
- 0x0000000080211a04 mkdir
- 0x0000000080211ab4 rmdir
- 0x0000000080211afc opendir
- 0x0000000080211be4 readdir
- 0x0000000080211d10 telldir
- 0x0000000080211d8c seekdir
- 0x0000000080211e10 rewinddir
- 0x0000000080211e90 closedir
- 0x0000000080211f20 chdir
- 0x0000000080212018 access
- 0x0000000080212060 getcwd
- .text 0x00000000802120a0 0x8b8 build\kernel\components\dfs\filesystems\devfs\devfs.o
- 0x00000000802120a0 dfs_device_fs_mount
- 0x00000000802120cc dfs_device_fs_ioctl
- 0x0000000080212170 dfs_device_fs_read
- 0x0000000080212224 dfs_device_fs_write
- 0x00000000802122d8 dfs_device_fs_close
- 0x00000000802123c8 dfs_device_fs_open
- 0x00000000802125f4 dfs_device_fs_stat
- 0x0000000080212790 dfs_device_fs_getdents
- 0x0000000080212938 devfs_init
- .text 0x0000000080212958 0x6a8 build\kernel\components\drivers\misc\pin.o
- 0x0000000080212b48 rt_device_pin_register
- 0x0000000080212c40 rt_pin_attach_irq
- 0x0000000080212ce8 rt_pin_detach_irq
- 0x0000000080212d74 rt_pin_irq_enable
- 0x0000000080212e08 rt_pin_mode
- 0x0000000080212e78 rt_pin_write
- 0x0000000080212ee8 rt_pin_read
- 0x0000000080212f54 rt_pin_get
- .text 0x0000000080213000 0x1e68 build\kernel\components\drivers\serial\serial.o
- 0x0000000080214944 rt_hw_serial_register
- 0x0000000080214a48 rt_hw_serial_isr
- .text 0x0000000080214e68 0x394 build\kernel\components\drivers\src\completion.o
- 0x0000000080214f3c rt_completion_init
- 0x0000000080214fa8 rt_completion_wait
- 0x0000000080215148 rt_completion_done
- .text 0x00000000802151fc 0xdd0 build\kernel\components\drivers\src\dataqueue.o
- 0x00000000802152d0 rt_data_queue_init
- 0x0000000080215414 rt_data_queue_push
- 0x0000000080215758 rt_data_queue_pop
- 0x0000000080215b40 rt_data_queue_peek
- 0x0000000080215c4c rt_data_queue_reset
- 0x0000000080215dd8 rt_data_queue_deinit
- 0x0000000080215e88 rt_data_queue_len
- .text 0x0000000080215fcc 0x1998 build\kernel\components\finsh\shell.o
- 0x0000000080215fcc finsh_set_prompt
- 0x0000000080216084 finsh_get_prompt
- 0x00000000802161e4 finsh_get_prompt_mode
- 0x0000000080216238 finsh_set_prompt_mode
- 0x00000000802163a0 finsh_set_device
- 0x000000008021652c finsh_get_device
- 0x0000000080216578 finsh_set_echo
- 0x00000000802165e4 finsh_get_echo
- 0x00000000802166a0 finsh_run_line
- 0x0000000080216a88 finsh_thread_entry
- 0x00000000802177d0 finsh_system_function_init
- 0x0000000080217814 finsh_system_var_init
- 0x0000000080217858 finsh_system_init
- .text 0x0000000080217964 0x1c14 build\kernel\components\finsh\cmd.o
- 0x0000000080217a04 hello
- 0x0000000080217a44 version
- 0x0000000080217c98 list_thread
- 0x0000000080217fe0 list_sem
- 0x00000000802181c4 list_event
- 0x0000000080218388 list_mutex
- 0x0000000080218504 list_mailbox
- 0x0000000080218708 list_msgqueue
- 0x00000000802188ec list_mempool
- 0x0000000080218b0c list_timer
- 0x0000000080218ca8 list_device
- 0x0000000080218e28 list
- 0x00000000802190d4 list_prefix
- .text 0x0000000080219578 0xde8 build\kernel\components\finsh\msh.o
- 0x0000000080219578 msh_is_used
- 0x0000000080219600 msh_help
- 0x00000000802196c8 cmd_ps
- 0x00000000802196f0 cmd_free
- 0x0000000080219c24 msh_exec
- 0x0000000080219dc4 msh_auto_complete_path
- 0x000000008021a198 msh_auto_complete
- .text 0x000000008021a360 0x1000 build\kernel\components\finsh\msh_file.o
- 0x000000008021a490 msh_exec_script
- 0x000000008021a714 cmd_ls
- 0x000000008021a768 cmd_cp
- 0x000000008021a7d8 cmd_mv
- 0x000000008021a9e8 cmd_cat
- 0x000000008021ac94 cmd_rm
- 0x000000008021af98 cmd_cd
- 0x000000008021b028 cmd_pwd
- 0x000000008021b060 cmd_mkdir
- 0x000000008021b0c4 cmd_mkfs
- 0x000000008021b1b8 cmd_df
- 0x000000008021b26c cmd_echo
- .text 0x000000008021b360 0x3c40 build\kernel\components\finsh\finsh_compiler.o
- 0x000000008021eea8 finsh_compiler_run
- .text 0x000000008021efa0 0xbc build\kernel\components\finsh\finsh_error.o
- 0x000000008021efa0 finsh_error_init
- 0x000000008021efcc finsh_error_set
- 0x000000008021f004 finsh_errno
- 0x000000008021f028 finsh_error_string
- .text 0x000000008021f05c 0x6d8 build\kernel\components\finsh\finsh_heap.o
- 0x000000008021f05c finsh_heap_init
- 0x000000008021f0d0 finsh_heap_allocate
- 0x000000008021f200 finsh_heap_free
- .text 0x000000008021f734 0xbc build\kernel\components\finsh\finsh_init.o
- 0x000000008021f734 finsh_init
- 0x000000008021f76c finsh_stack_bottom
- 0x000000008021f790 finsh_flush
- 0x000000008021f7c0 finsh_reset
- .text 0x000000008021f7f0 0x424 build\kernel\components\finsh\finsh_node.o
- 0x000000008021f7f0 finsh_node_init
- 0x000000008021f818 finsh_node_allocate
- 0x000000008021f8d8 finsh_node_new_id
- 0x000000008021fa10 finsh_node_new_char
- 0x000000008021fa68 finsh_node_new_int
- 0x000000008021fabc finsh_node_new_long
- 0x000000008021fb10 finsh_node_new_string
- 0x000000008021fbc0 finsh_node_new_ptr
- .text 0x000000008021fc14 0x1c6c build\kernel\components\finsh\finsh_ops.o
- 0x000000008021fc14 OP_no_op
- 0x000000008021fc2c OP_add_byte
- 0x000000008021fca4 OP_add_word
- 0x000000008021fd28 OP_add_dword
- 0x000000008021fd9c OP_sub_byte
- 0x000000008021fe14 OP_sub_word
- 0x000000008021fe98 OP_sub_dword
- 0x000000008021ff0c OP_div_byte
- 0x000000008021ff84 OP_div_word
- 0x0000000080220008 OP_div_dword
- 0x000000008022007c OP_mod_byte
- 0x00000000802200f4 OP_mod_word
- 0x0000000080220178 OP_mod_dword
- 0x00000000802201ec OP_mul_byte
- 0x0000000080220264 OP_mul_word
- 0x00000000802202e8 OP_mul_dword
- 0x000000008022035c OP_and_byte
- 0x00000000802203d4 OP_and_word
- 0x000000008022044c OP_and_dword
- 0x00000000802204c0 OP_or_byte
- 0x0000000080220538 OP_or_word
- 0x00000000802205b0 OP_or_dword
- 0x0000000080220624 OP_xor_byte
- 0x000000008022069c OP_xor_word
- 0x0000000080220714 OP_xor_dword
- 0x0000000080220788 OP_bw_byte
- 0x00000000802207d0 OP_bw_word
- 0x0000000080220818 OP_bw_dword
- 0x000000008022085c OP_shl_byte
- 0x00000000802208d8 OP_shl_word
- 0x0000000080220954 OP_shl_dword
- 0x00000000802209c8 OP_shr_byte
- 0x0000000080220a44 OP_shr_word
- 0x0000000080220ac0 OP_shr_dword
- 0x0000000080220b34 OP_ld_byte
- 0x0000000080220ba4 OP_ld_word
- 0x0000000080220c3c OP_ld_dword
- 0x0000000080220d04 OP_ld_value_byte
- 0x0000000080220ddc OP_ld_value_byte_stack
- 0x0000000080220e2c OP_ld_value_word
- 0x0000000080220f04 OP_ld_value_word_stack
- 0x0000000080220f54 OP_ld_value_dword
- 0x000000008022102c OP_ld_value_dword_stack
- 0x000000008022107c OP_st_byte
- 0x00000000802210dc OP_st_word
- 0x0000000080221140 OP_st_dword
- 0x00000000802211a4 OP_pop
- 0x00000000802211d8 OP_call
- .text 0x0000000080221880 0x1748 build\kernel\components\finsh\finsh_parser.o
- 0x0000000080222d24 finsh_parser_run
- 0x0000000080222f98 finsh_parser_init
- .text 0x0000000080222fc8 0x468 build\kernel\components\finsh\finsh_var.o
- 0x0000000080222fc8 finsh_var_init
- 0x0000000080222ff0 finsh_var_insert
- 0x0000000080223120 finsh_var_delete
- 0x00000000802231dc finsh_var_lookup
- 0x0000000080223284 finsh_sysvar_append
- 0x0000000080223348 finsh_sysvar_lookup
- .text 0x0000000080223430 0x25c build\kernel\components\finsh\finsh_vm.o
- 0x0000000080223430 finsh_vm_run
- 0x00000000802234f4 finsh_syscall_append
- 0x00000000802235a4 finsh_syscall_lookup
- .text 0x000000008022368c 0x12b4 build\kernel\components\finsh\finsh_token.o
- 0x000000008022368c finsh_token_init
- 0x00000000802236c8 finsh_token_token
- 0x0000000080223714 finsh_token_get_token
- 0x000000008022374c token_get_string
- .text 0x0000000080224940 0x58 build\kernel\components\libc\compilers\newlib\libc.o
- 0x0000000080224940 libc_system_init
- .text 0x0000000080224998 0x23c build\kernel\components\libc\compilers\newlib\stdio.o
- 0x0000000080224998 libc_stdio_set_console
- 0x0000000080224b90 libc_stdio_get_console
- .text 0x0000000080224bd4 0x92c build\kernel\components\libc\compilers\newlib\syscalls.o
- 0x0000000080224bd4 __errno
- 0x0000000080224bec _close_r
- 0x0000000080224c18 _execve_r
- 0x0000000080224c54 _fcntl_r
- 0x0000000080224c90 _fork_r
- 0x0000000080224cc0 _fstat_r
- 0x0000000080224cf8 _getpid_r
- 0x0000000080224d1c _isatty_r
- 0x0000000080224d70 _kill_r
- 0x0000000080224da8 _link_r
- 0x0000000080224de0 _lseek_r
- 0x0000000080224e20 _mkdir_r
- 0x0000000080224e5c _open_r
- 0x0000000080224e9c _read_r
- 0x0000000080224edc _rename_r
- 0x0000000080224f14 _sbrk_r
- 0x0000000080224f3c _stat_r
- 0x0000000080224f74 _times_r
- 0x0000000080224fa8 _unlink_r
- 0x0000000080224fd8 _wait_r
- 0x000000008022500c _write_r
- 0x000000008022512c libc_get_time
- 0x0000000080225228 _gettimeofday_r
- 0x00000000802252bc _malloc_r
- 0x0000000080225304 _realloc_r
- 0x0000000080225354 _calloc_r
- 0x00000000802253a4 _free_r
- 0x00000000802253cc exit
- 0x0000000080225414 _system
- 0x0000000080225434 __libc_init_array
- 0x000000008022544c abort
- 0x0000000080225498 getuid
- 0x00000000802254b4 umask
- 0x00000000802254d8 flock
- .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)
- 0x0000000080225500 strcmp
- .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)
- 0x0000000080225514 strlen
- *fill* 0x0000000080225524 0x4 00000000
- .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)
- 0x0000000080225528 __aeabi_uidiv
- 0x0000000080225528 __udivsi3
- 0x0000000080225784 __aeabi_uidivmod
- .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)
- 0x00000000802257a0 __divsi3
- 0x00000000802257a0 __aeabi_idiv
- 0x0000000080225a34 __aeabi_idivmod
- .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)
- 0x0000000080225a50 __aeabi_idiv0
- 0x0000000080225a50 __aeabi_ldiv0
- .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)
- 0x0000000080225a54 __aeabi_uldivmod
- .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)
- 0x0000000080225a84 __udivmoddi4
- *(.text.*)
- .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)
- 0x0000000080225bc8 atoi
- .text._fclose_r
- 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)
- 0x0000000080225bd0 _fclose_r
- *fill* 0x0000000080225c7e 0x2 00000000
- .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)
- 0x0000000080225c80 fclose
- .text.__sflush_r
- 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)
- 0x0000000080225c90 __sflush_r
- .text._fflush_r
- 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)
- 0x0000000080225db0 _fflush_r
- *fill* 0x0000000080225dfa 0x2 00000000
- .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)
- 0x0000000080225dfc fflush
- .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)
- 0x0000000080225e20 fileno
- .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)
- .text._cleanup_r
- 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)
- 0x0000000080225ec8 _cleanup_r
- .text.__sfmoreglue
- 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)
- 0x0000000080225ed4 __sfmoreglue
- .text.__sfp_lock_acquire
- 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)
- 0x0000000080225f00 __sfp_lock_acquire
- .text.__sfp_lock_release
- 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)
- 0x0000000080225f0c __sfp_lock_release
- .text.__sinit_lock_acquire
- 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)
- 0x0000000080225f18 __sinit_lock_acquire
- .text.__sinit_lock_release
- 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)
- 0x0000000080225f24 __sinit_lock_release
- .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)
- 0x0000000080225f30 __sinit
- .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)
- 0x0000000080225f80 __sfp
- .text._fopen_r
- 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)
- 0x000000008022600c _fopen_r
- .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)
- 0x00000000802260b4 fopen
- .text._fseek_r
- 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)
- 0x00000000802260c4 _fseek_r
- .text._fseeko_r
- 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)
- 0x00000000802260c8 _fseeko_r
- .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)
- 0x0000000080226378 _fwalk
- .text._fwalk_reent
- 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)
- 0x00000000802263b0 _fwalk_reent
- .text.__retarget_lock_init_recursive
- 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)
- 0x00000000802263ec __retarget_lock_init_recursive
- .text.__retarget_lock_close_recursive
- 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)
- 0x00000000802263ee __retarget_lock_close_recursive
- .text.__retarget_lock_acquire_recursive
- 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)
- 0x00000000802263f0 __retarget_lock_acquire_recursive
- .text.__retarget_lock_release_recursive
- 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)
- 0x00000000802263f2 __retarget_lock_release_recursive
- .text.__swhatbuf_r
- 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)
- 0x00000000802263f4 __swhatbuf_r
- *fill* 0x000000008022644a 0x2 00000000
- .text.__smakebuf_r
- 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)
- 0x000000008022644c __smakebuf_r
- .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)
- 0x00000000802264cc memcmp
- .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)
- 0x00000000802264ea memcpy
- .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)
- 0x0000000080226500 memset
- .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)
- 0x0000000080226510 putenv
- .text._putenv_r
- 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)
- 0x0000000080226520 _putenv_r
- .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)
- 0x0000000080226560 _puts_r
- .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)
- 0x00000000802265ec puts
- .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)
- *fill* 0x000000008022660e 0x2 00000000
- .text.__srefill_r
- 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)
- 0x0000000080226610 __srefill_r
- .text._setenv_r
- 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)
- 0x0000000080226714 _setenv_r
- .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)
- 0x000000008022684c setvbuf
- .text.snprintf
- 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)
- 0x00000000802269b4 snprintf
- .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)
- 0x0000000080226a1c __sread
- .text.__swrite
- 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)
- 0x0000000080226a3e __swrite
- .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)
- 0x0000000080226a76 __sseek
- .text.__sclose
- 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)
- 0x0000000080226a9a __sclose
- .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)
- 0x0000000080226aa2 strchr
- .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)
- 0x0000000080226abc strcpy
- .text._strdup_r
- 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)
- 0x0000000080226acc _strdup_r
- .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)
- 0x0000000080226af2 strncmp
- .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)
- 0x0000000080226b16 strncpy
- .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)
- 0x0000000080226b40 strrchr
- .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)
- 0x0000000080226b68 strstr
- .text._strtol_l.isra.0
- 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)
- *fill* 0x0000000080226ca6 0x2 00000000
- .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)
- 0x0000000080226ca8 strtol
- *fill* 0x0000000080226cd4 0x4 00000000
- .text._svfprintf_r
- 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)
- 0x0000000080226cd8 _svfprintf_r
- .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)
- *fill* 0x00000000802281e4 0x4 00000000
- .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)
- 0x00000000802281e8 _dtoa_r
- .text.__env_lock
- 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)
- 0x0000000080228c54 __env_lock
- .text.__env_unlock
- 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)
- 0x0000000080228c60 __env_unlock
- .text.__sflags
- 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)
- 0x0000000080228c6c __sflags
- *fill* 0x0000000080228cd6 0x2 00000000
- .text.__sfvwrite_r
- 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)
- 0x0000000080228cd8 __sfvwrite_r
- .text._findenv_r
- 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)
- 0x0000000080228f7c _findenv_r
- .text.__locale_ctype_ptr_l
- 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)
- 0x0000000080228ff4 __locale_ctype_ptr_l
- *fill* 0x0000000080228ffa 0x2 00000000
- .text._localeconv_r
- 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)
- 0x0000000080228ffc _localeconv_r
- .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)
- 0x0000000080229018 malloc
- .text.__ascii_mbtowc
- 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)
- 0x0000000080229028 __ascii_mbtowc
- .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)
- 0x000000008022904c memchr
- .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)
- 0x0000000080229068 memmove
- .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)
- 0x000000008022909a _Balloc
- .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)
- 0x00000000802290e4 _Bfree
- .text.__multadd
- 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)
- 0x00000000802290f6 __multadd
- .text.__hi0bits
- 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)
- 0x0000000080229170 __hi0bits
- .text.__lo0bits
- 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)
- 0x00000000802291ae __lo0bits
- .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)
- 0x000000008022920c __i2b
- .text.__multiply
- 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)
- 0x000000008022921e __multiply
- *fill* 0x000000008022934a 0x2 00000000
- .text.__pow5mult
- 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)
- 0x000000008022934c __pow5mult
- .text.__lshift
- 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)
- 0x00000000802293cc __lshift
- .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)
- 0x0000000080229474 __mcmp
- .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)
- 0x00000000802294a8 __mdiff
- .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)
- 0x0000000080229568 __d2b
- *fill* 0x0000000080229606 0x2 00000000
- .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)
- 0x0000000080229608 frexp
- .text.__ssprint_r
- 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)
- 0x0000000080229684 __ssprint_r
- .text.__ascii_wctomb
- 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)
- 0x0000000080229774 __ascii_wctomb
- *fill* 0x000000008022978e 0x2 00000000
- .text.__swsetup_r
- 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)
- 0x0000000080229790 __swsetup_r
- .text.__swsetup_r.__stub
- 0x0000000080229840 0x18 linker stubs
- 0x0000000080229858 . = ALIGN (0x4)
- 0x0000000080229858 __fsymtab_start = .
- *(FSymTab)
- FSymTab 0x0000000080229858 0x18 build\applications\board.o
- 0x0000000080229858 __fsym_reboot
- 0x0000000080229864 __fsym___cmd_reboot
- FSymTab 0x0000000080229870 0xc build\kernel\src\mem.o
- 0x0000000080229870 __fsym_list_mem
- FSymTab 0x000000008022987c 0xc build\kernel\components\dfs\src\dfs.o
- 0x000000008022987c __fsym___cmd_list_fd
- FSymTab 0x0000000080229888 0x30 build\kernel\components\dfs\src\dfs_file.o
- 0x0000000080229888 __fsym_ls
- 0x0000000080229894 __fsym_rm
- 0x00000000802298a0 __fsym_cat
- 0x00000000802298ac __fsym_copy
- FSymTab 0x00000000802298b8 0x18 build\kernel\components\dfs\src\dfs_fs.o
- 0x00000000802298b8 __fsym_mkfs
- 0x00000000802298c4 __fsym_df
- FSymTab 0x00000000802298d0 0x18 build\kernel\components\dfs\src\dfs_posix.o
- 0x00000000802298d0 __fsym_mkdir
- 0x00000000802298dc __fsym_cd
- FSymTab 0x00000000802298e8 0x30 build\kernel\components\drivers\misc\pin.o
- 0x00000000802298e8 __fsym_pinMode
- 0x00000000802298f4 __fsym_pinWrite
- 0x0000000080229900 __fsym_pinRead
- 0x000000008022990c __fsym_pinGet
- FSymTab 0x0000000080229918 0x120 build\kernel\components\finsh\cmd.o
- 0x0000000080229918 __fsym_hello
- 0x0000000080229924 __fsym_clear
- 0x0000000080229930 __fsym___cmd_clear
- 0x000000008022993c __fsym_version
- 0x0000000080229948 __fsym___cmd_version
- 0x0000000080229954 __fsym_list_thread
- 0x0000000080229960 __fsym___cmd_list_thread
- 0x000000008022996c __fsym_list_sem
- 0x0000000080229978 __fsym___cmd_list_sem
- 0x0000000080229984 __fsym_list_event
- 0x0000000080229990 __fsym___cmd_list_event
- 0x000000008022999c __fsym_list_mutex
- 0x00000000802299a8 __fsym___cmd_list_mutex
- 0x00000000802299b4 __fsym_list_mailbox
- 0x00000000802299c0 __fsym___cmd_list_mailbox
- 0x00000000802299cc __fsym_list_msgqueue
- 0x00000000802299d8 __fsym___cmd_list_msgqueue
- 0x00000000802299e4 __fsym_list_mempool
- 0x00000000802299f0 __fsym___cmd_list_mempool
- 0x00000000802299fc __fsym_list_timer
- 0x0000000080229a08 __fsym___cmd_list_timer
- 0x0000000080229a14 __fsym_list_device
- 0x0000000080229a20 __fsym___cmd_list_device
- 0x0000000080229a2c __fsym_list
- FSymTab 0x0000000080229a38 0x3c build\kernel\components\finsh\msh.o
- 0x0000000080229a38 __fsym___cmd_exit
- 0x0000000080229a44 __fsym_msh
- 0x0000000080229a50 __fsym___cmd_help
- 0x0000000080229a5c __fsym___cmd_ps
- 0x0000000080229a68 __fsym___cmd_free
- FSymTab 0x0000000080229a74 0x84 build\kernel\components\finsh\msh_file.o
- 0x0000000080229a74 __fsym___cmd_ls
- 0x0000000080229a80 __fsym___cmd_cp
- 0x0000000080229a8c __fsym___cmd_mv
- 0x0000000080229a98 __fsym___cmd_cat
- 0x0000000080229aa4 __fsym___cmd_rm
- 0x0000000080229ab0 __fsym___cmd_cd
- 0x0000000080229abc __fsym___cmd_pwd
- 0x0000000080229ac8 __fsym___cmd_mkdir
- 0x0000000080229ad4 __fsym___cmd_mkfs
- 0x0000000080229ae0 __fsym___cmd_df
- 0x0000000080229aec __fsym___cmd_echo
- 0x0000000080229af8 __fsymtab_end = .
- 0x0000000080229af8 . = ALIGN (0x4)
- 0x0000000080229af8 __vsymtab_start = .
- *(VSymTab)
- VSymTab 0x0000000080229af8 0x10 build\kernel\components\finsh\cmd.o
- 0x0000000080229af8 __vsym_dummy
- 0x0000000080229b08 __vsymtab_end = .
- 0x0000000080229b08 . = ALIGN (0x4)
- 0x0000000080229b08 . = ALIGN (0x4)
- 0x0000000080229b08 __rtmsymtab_start = .
- *(RTMSymTab)
- 0x0000000080229b08 __rtmsymtab_end = .
- 0x0000000080229b08 . = ALIGN (0x4)
- 0x0000000080229b08 __rt_init_start = .
- *(SORT_BY_NAME(.rti_fn*))
- .rti_fn.0 0x0000000080229b08 0x4 build\kernel\src\components.o
- 0x0000000080229b08 __rt_init_rti_start
- .rti_fn.0.end 0x0000000080229b0c 0x4 build\kernel\src\components.o
- 0x0000000080229b0c __rt_init_rti_board_start
- .rti_fn.1 0x0000000080229b10 0x4 build\applications\board.o
- 0x0000000080229b10 __rt_init_rt_hw_timer_init
- .rti_fn.1 0x0000000080229b14 0x4 build\drivers\gpio.o
- 0x0000000080229b14 __rt_init_rt_hw_gpio_init
- .rti_fn.1 0x0000000080229b18 0x4 build\drivers\uart.o
- 0x0000000080229b18 __rt_init_rt_hw_serial_init
- .rti_fn.1.end 0x0000000080229b1c 0x4 build\kernel\src\components.o
- 0x0000000080229b1c __rt_init_rti_board_end
- .rti_fn.2 0x0000000080229b20 0x4 build\kernel\components\dfs\src\dfs.o
- 0x0000000080229b20 __rt_init_dfs_init
- .rti_fn.4 0x0000000080229b24 0x4 build\kernel\components\libc\compilers\newlib\libc.o
- 0x0000000080229b24 __rt_init_libc_system_init
- .rti_fn.6 0x0000000080229b28 0x4 build\kernel\components\finsh\shell.o
- 0x0000000080229b28 __rt_init_finsh_system_init
- .rti_fn.6.end 0x0000000080229b2c 0x4 build\kernel\src\components.o
- 0x0000000080229b2c __rt_init_rti_end
- 0x0000000080229b30 __rt_init_end = .
- 0x0000000080229b30 __text_end = .
- 0x0000000080229b30 __rodata_start = .
- .glue_7 0x0000000080229b30 0x0
- .glue_7 0x0000000080229b30 0x0 linker stubs
- .glue_7t 0x0000000080229b30 0x0
- .glue_7t 0x0000000080229b30 0x0 linker stubs
- .vfp11_veneer 0x0000000080229b30 0x0
- .vfp11_veneer 0x0000000080229b30 0x0 linker stubs
- .v4_bx 0x0000000080229b30 0x0
- .v4_bx 0x0000000080229b30 0x0 linker stubs
- .init 0x0000000080229b30 0x4
- .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
- 0x0000000080229b30 _init
- .fini 0x0000000080229b34 0x4
- .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
- 0x0000000080229b34 _fini
- .iplt 0x0000000080229b38 0x0
- .iplt 0x0000000080229b38 0x0 build\applications\board.o
- .rodata 0x0000000080229b38 0x3bf5
- *(.rodata)
- .rodata 0x0000000080229b38 0x24 build\applications\board.o
- .rodata 0x0000000080229b5c 0x10 build\applications\main.o
- .rodata 0x0000000080229b6c 0x74 build\drivers\gpio.o
- .rodata 0x0000000080229be0 0x80 build\drivers\uart.o
- .rodata 0x0000000080229c60 0x2c build\kernel\src\components.o
- .rodata 0x0000000080229c8c 0x1ba build\kernel\src\device.o
- *fill* 0x0000000080229e46 0x2
- .rodata 0x0000000080229e48 0x4a build\kernel\src\idle.o
- *fill* 0x0000000080229e92 0x2
- .rodata 0x0000000080229e94 0x6ba build\kernel\src\ipc.o
- *fill* 0x000000008022a54e 0x2
- .rodata 0x000000008022a550 0x1ed build\kernel\src\kservice.o
- 0x000000008022a5e0 __lowest_bit_bitmap
- *fill* 0x000000008022a73d 0x3
- .rodata 0x000000008022a740 0x33c build\kernel\src\mem.o
- .rodata 0x000000008022aa7c 0x11f build\kernel\src\object.o
- *fill* 0x000000008022ab9b 0x1
- .rodata 0x000000008022ab9c 0xba build\kernel\src\scheduler.o
- *fill* 0x000000008022ac56 0x2
- .rodata 0x000000008022ac58 0x272 build\kernel\src\thread.o
- *fill* 0x000000008022aeca 0x2
- .rodata 0x000000008022aecc 0x139 build\kernel\src\timer.o
- *fill* 0x000000008022b005 0x3
- .rodata 0x000000008022b008 0x27 build\kernel\libcpu\arm\am335x\cpu.o
- *fill* 0x000000008022b02f 0x1
- .rodata 0x000000008022b030 0x73 build\kernel\libcpu\arm\am335x\interrupt.o
- 0x000000008022b078 AM335X_VECTOR_BASE
- *fill* 0x000000008022b0a3 0x1
- .rodata 0x000000008022b0a4 0x138 build\kernel\libcpu\arm\am335x\trap.o
- .rodata 0x000000008022b1dc 0x16b build\kernel\components\dfs\src\dfs.o
- *fill* 0x000000008022b347 0x1
- .rodata 0x000000008022b348 0x1d4 build\kernel\components\dfs\src\dfs_file.o
- .rodata 0x000000008022b51c 0x201 build\kernel\components\dfs\src\dfs_fs.o
- *fill* 0x000000008022b71d 0x3
- .rodata 0x000000008022b720 0x4 build\kernel\components\dfs\src\dfs_posix.o
- .rodata 0x000000008022b724 0x123 build\kernel\components\dfs\filesystems\devfs\devfs.o
- *fill* 0x000000008022b847 0x1
- .rodata 0x000000008022b848 0xcf build\kernel\components\drivers\misc\pin.o
- *fill* 0x000000008022b917 0x1
- .rodata 0x000000008022b918 0x2e1 build\kernel\components\drivers\serial\serial.o
- *fill* 0x000000008022bbf9 0x3
- .rodata 0x000000008022bbfc 0xaf build\kernel\components\drivers\src\completion.o
- *fill* 0x000000008022bcab 0x1
- .rodata 0x000000008022bcac 0x11e build\kernel\components\drivers\src\dataqueue.o
- *fill* 0x000000008022bdca 0x2
- .rodata 0x000000008022bdcc 0x15b build\kernel\components\finsh\shell.o
- *fill* 0x000000008022bf27 0x1
- .rodata 0x000000008022bf28 0x6e8 build\kernel\components\finsh\cmd.o
- .rodata 0x000000008022c610 0x92 build\kernel\components\finsh\msh.o
- *fill* 0x000000008022c6a2 0x2
- .rodata 0x000000008022c6a4 0x2e5 build\kernel\components\finsh\msh_file.o
- *fill* 0x000000008022c989 0x3
- .rodata 0x000000008022c98c 0xf2 build\kernel\components\finsh\finsh_error.o
- *fill* 0x000000008022ca7e 0x2
- .rodata 0x000000008022ca80 0xc4 build\kernel\components\finsh\finsh_ops.o
- 0x000000008022ca80 op_table
- .rodata 0x000000008022cb44 0x80 build\kernel\components\finsh\finsh_token.o
- .rodata 0x000000008022cbc4 0x17 build\kernel\components\libc\compilers\newlib\libc.o
- *fill* 0x000000008022cbdb 0x1
- .rodata 0x000000008022cbdc 0x13 build\kernel\components\libc\compilers\newlib\stdio.o
- *fill* 0x000000008022cbef 0x1
- .rodata 0x000000008022cbf0 0x5d build\kernel\components\libc\compilers\newlib\syscalls.o
- *(.rodata.*)
- *fill* 0x000000008022cc4d 0x3
- .rodata.name 0x000000008022cc50 0x37 build\applications\board.o
- 0x000000008022cc50 __fsym_reboot_name
- 0x000000008022cc58 __fsym_reboot_desc
- 0x000000008022cc68 __fsym___cmd_reboot_name
- 0x000000008022cc78 __fsym___cmd_reboot_desc
- *fill* 0x000000008022cc87 0x1
- .rodata.name 0x000000008022cc88 0x2a build\kernel\src\mem.o
- 0x000000008022cc88 __fsym_list_mem_name
- 0x000000008022cc94 __fsym_list_mem_desc
- *fill* 0x000000008022ccb2 0x2
- .rodata.name 0x000000008022ccb4 0x25 build\kernel\components\dfs\src\dfs.o
- 0x000000008022ccb4 __fsym___cmd_list_fd_name
- 0x000000008022ccc4 __fsym___cmd_list_fd_desc
- *fill* 0x000000008022ccd9 0x3
- .rodata.name 0x000000008022ccdc 0x65 build\kernel\components\dfs\src\dfs_file.o
- 0x000000008022ccdc __fsym_ls_name
- 0x000000008022cce0 __fsym_ls_desc
- 0x000000008022ccf8 __fsym_rm_name
- 0x000000008022ccfc __fsym_rm_desc
- 0x000000008022cd18 __fsym_cat_name
- 0x000000008022cd1c __fsym_cat_desc
- 0x000000008022cd28 __fsym_copy_name
- 0x000000008022cd30 __fsym_copy_desc
- *fill* 0x000000008022cd41 0x3
- .rodata.name 0x000000008022cd44 0x2e build\kernel\components\dfs\src\dfs_fs.o
- 0x000000008022cd44 __fsym_mkfs_name
- 0x000000008022cd4c __fsym_mkfs_desc
- 0x000000008022cd60 __fsym_df_name
- 0x000000008022cd64 __fsym_df_desc
- *fill* 0x000000008022cd72 0x2
- .rodata.name 0x000000008022cd74 0x41 build\kernel\components\dfs\src\dfs_posix.o
- 0x000000008022cd74 __fsym_mkdir_name
- 0x000000008022cd7c __fsym_mkdir_desc
- 0x000000008022cd90 __fsym_cd_name
- 0x000000008022cd94 __fsym_cd_desc
- *fill* 0x000000008022cdb5 0x3
- .rodata.name 0x000000008022cdb8 0x99 build\kernel\components\drivers\misc\pin.o
- 0x000000008022cdb8 __fsym_pinMode_name
- 0x000000008022cdc0 __fsym_pinMode_desc
- 0x000000008022cdd8 __fsym_pinWrite_name
- 0x000000008022cde4 __fsym_pinWrite_desc
- 0x000000008022ce00 __fsym_pinRead_name
- 0x000000008022ce08 __fsym_pinRead_desc
- 0x000000008022ce28 __fsym_pinGet_name
- 0x000000008022ce30 __fsym_pinGet_desc
- *fill* 0x000000008022ce51 0x3
- .rodata.name 0x000000008022ce54 0x3e9 build\kernel\components\finsh\cmd.o
- 0x000000008022ce54 __fsym_hello_name
- 0x000000008022ce5c __fsym_hello_desc
- 0x000000008022ce6c __fsym_clear_name
- 0x000000008022ce74 __fsym_clear_desc
- 0x000000008022ce90 __fsym___cmd_clear_name
- 0x000000008022ce9c __fsym___cmd_clear_desc
- 0x000000008022ceb8 __fsym_version_name
- 0x000000008022cec0 __fsym_version_desc
- 0x000000008022cee4 __fsym___cmd_version_name
- 0x000000008022cef4 __fsym___cmd_version_desc
- 0x000000008022cf18 __fsym_list_thread_name
- 0x000000008022cf24 __fsym_list_thread_desc
- 0x000000008022cf30 __fsym___cmd_list_thread_name
- 0x000000008022cf44 __fsym___cmd_list_thread_desc
- 0x000000008022cf50 __fsym_list_sem_name
- 0x000000008022cf5c __fsym_list_sem_desc
- 0x000000008022cf78 __fsym___cmd_list_sem_name
- 0x000000008022cf88 __fsym___cmd_list_sem_desc
- 0x000000008022cfa4 __fsym_list_event_name
- 0x000000008022cfb0 __fsym_list_event_desc
- 0x000000008022cfc8 __fsym___cmd_list_event_name
- 0x000000008022cfdc __fsym___cmd_list_event_desc
- 0x000000008022cff4 __fsym_list_mutex_name
- 0x000000008022d000 __fsym_list_mutex_desc
- 0x000000008022d018 __fsym___cmd_list_mutex_name
- 0x000000008022d02c __fsym___cmd_list_mutex_desc
- 0x000000008022d044 __fsym_list_mailbox_name
- 0x000000008022d054 __fsym_list_mailbox_desc
- 0x000000008022d06c __fsym___cmd_list_mailbox_name
- 0x000000008022d080 __fsym___cmd_list_mailbox_desc
- 0x000000008022d098 __fsym_list_msgqueue_name
- 0x000000008022d0a8 __fsym_list_msgqueue_desc
- 0x000000008022d0c8 __fsym___cmd_list_msgqueue_name
- 0x000000008022d0dc __fsym___cmd_list_msgqueue_desc
- 0x000000008022d0fc __fsym_list_mempool_name
- 0x000000008022d10c __fsym_list_mempool_desc
- 0x000000008022d128 __fsym___cmd_list_mempool_name
- 0x000000008022d13c __fsym___cmd_list_mempool_desc
- 0x000000008022d158 __fsym_list_timer_name
- 0x000000008022d164 __fsym_list_timer_desc
- 0x000000008022d17c __fsym___cmd_list_timer_name
- 0x000000008022d190 __fsym___cmd_list_timer_desc
- 0x000000008022d1a8 __fsym_list_device_name
- 0x000000008022d1b4 __fsym_list_device_desc
- 0x000000008022d1cc __fsym___cmd_list_device_name
- 0x000000008022d1e0 __fsym___cmd_list_device_desc
- 0x000000008022d1f8 __fsym_list_name
- 0x000000008022d200 __fsym_list_desc
- 0x000000008022d21c __vsym_dummy_name
- 0x000000008022d224 __vsym_dummy_desc
- *fill* 0x000000008022d23d 0x3
- .rodata.name 0x000000008022d240 0xc1 build\kernel\components\finsh\msh.o
- 0x000000008022d240 __fsym___cmd_exit_name
- 0x000000008022d24c __fsym___cmd_exit_desc
- 0x000000008022d26c __fsym_msh_name
- 0x000000008022d270 __fsym_msh_desc
- 0x000000008022d284 __fsym___cmd_help_name
- 0x000000008022d290 __fsym___cmd_help_desc
- 0x000000008022d2a8 __fsym___cmd_ps_name
- 0x000000008022d2b4 __fsym___cmd_ps_desc
- 0x000000008022d2d0 __fsym___cmd_free_name
- 0x000000008022d2dc __fsym___cmd_free_desc
- *fill* 0x000000008022d301 0x3
- .rodata.name 0x000000008022d304 0x1b8 build\kernel\components\finsh\msh_file.o
- 0x000000008022d304 __fsym___cmd_ls_name
- 0x000000008022d310 __fsym___cmd_ls_desc
- 0x000000008022d334 __fsym___cmd_cp_name
- 0x000000008022d340 __fsym___cmd_cp_desc
- 0x000000008022d358 __fsym___cmd_mv_name
- 0x000000008022d364 __fsym___cmd_mv_desc
- 0x000000008022d37c __fsym___cmd_cat_name
- 0x000000008022d388 __fsym___cmd_cat_desc
- 0x000000008022d39c __fsym___cmd_rm_name
- 0x000000008022d3a8 __fsym___cmd_rm_desc
- 0x000000008022d3c4 __fsym___cmd_cd_name
- 0x000000008022d3d0 __fsym___cmd_cd_desc
- 0x000000008022d3f4 __fsym___cmd_pwd_name
- 0x000000008022d400 __fsym___cmd_pwd_desc
- 0x000000008022d434 __fsym___cmd_mkdir_name
- 0x000000008022d440 __fsym___cmd_mkdir_desc
- 0x000000008022d458 __fsym___cmd_mkfs_name
- 0x000000008022d464 __fsym___cmd_mkfs_desc
- 0x000000008022d484 __fsym___cmd_df_name
- 0x000000008022d490 __fsym___cmd_df_desc
- 0x000000008022d49c __fsym___cmd_echo_name
- 0x000000008022d4a8 __fsym___cmd_echo_desc
- .rodata._global_impure_ptr
- 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)
- 0x000000008022d4bc _global_impure_ptr
- .rodata._puts_r.str1.1
- 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)
- .rodata._svfprintf_r.str1.1
- 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)
- .rodata.blanks.8590
- 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)
- .rodata.zeroes.8591
- 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)
- .rodata._dtoa_r.str1.1
- 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)
- 0xf (size before relaxing)
- .rodata._setlocale_r.str1.1
- 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)
- 0x9 (size before relaxing)
- .rodata.str1.1
- 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)
- *fill* 0x000000008022d52d 0x3
- .rodata.__mprec_bigtens
- 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)
- 0x000000008022d530 __mprec_bigtens
- .rodata.__mprec_tens
- 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)
- 0x000000008022d558 __mprec_tens
- .rodata.p05.7368
- 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)
- .rodata._ctype_
- 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)
- 0x000000008022d62c _ctype_
- 0x000000008022d72d __rodata_end = .
- .ARM.exidx 0x000000008022d730 0x8
- .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)
- .rel.dyn 0x000000008022d738 0x0
- .rel.iplt 0x000000008022d738 0x0 build\applications\board.o
- 0x000000008022d738 . = ALIGN (0x4)
- .ctors 0x000000008022d738 0x0
- 0x000000008022d738 PROVIDE (__ctors_start__ = .)
- *(SORT_BY_NAME(.ctors.*))
- *(.ctors)
- 0x000000008022d738 PROVIDE (__ctors_end__ = .)
- .dtors 0x000000008022d738 0x0
- [!provide] PROVIDE (__dtors_start__ = .)
- *(SORT_BY_NAME(.dtors.*))
- *(.dtors)
- [!provide] PROVIDE (__dtors_end__ = .)
- 0x000000008022d738 . = ALIGN (0x8)
- 0x000000008022d738 __data_start = .
- .data 0x000000008022d738 0x7a0
- *(.data)
- .data 0x000000008022d738 0x2c build\drivers\gpio.o
- .data 0x000000008022d764 0x8 build\drivers\uart.o
- 0x000000008022d764 uart1
- .data 0x000000008022d76c 0x90 build\kernel\src\object.o
- .data 0x000000008022d7fc 0x100 build\kernel\components\dfs\src\dfs.o
- 0x000000008022d7fc working_directory
- .data 0x000000008022d8fc 0x4 build\kernel\components\finsh\msh.o
- .data 0x000000008022d900 0x3c build\kernel\components\finsh\finsh_error.o
- *(.data.*)
- .data._impure_ptr
- 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)
- 0x000000008022d93c _impure_ptr
- .data.impure_data
- 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)
- .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)
- 0x000000008022dd68 environ
- .data.__global_locale
- 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)
- 0x000000008022dd6c __global_locale
- 0x000000008022ded8 __data_end = .
- .igot.plt 0x000000008022ded8 0x0
- .igot.plt 0x000000008022ded8 0x0 build\applications\board.o
- 0x000000008022ded8 . = ALIGN (0x8)
- 0x000000008022ded8 __bss_start = .
- .bss 0x000000008022ded8 0xed4
- *(.bss)
- .bss 0x000000008022ded8 0x4 build\kernel\src\clock.o
- .bss 0x000000008022dedc 0x190 build\kernel\src\idle.o
- .bss 0x000000008022e06c 0x9 build\kernel\src\irq.o
- 0x000000008022e074 rt_interrupt_nest
- *fill* 0x000000008022e075 0x3
- .bss 0x000000008022e078 0x88 build\kernel\src\kservice.o
- .bss 0x000000008022e100 0x40 build\kernel\src\mem.o
- .bss 0x000000008022e140 0x8 build\kernel\src\object.o
- .bss 0x000000008022e148 0xc build\kernel\src\scheduler.o
- 0x000000008022e14c rt_current_thread
- .bss 0x000000008022e154 0xc build\kernel\src\thread.o
- .bss 0x000000008022e160 0x14 build\kernel\src\timer.o
- .bss 0x000000008022e174 0x30 build\kernel\components\dfs\src\dfs.o
- .bss 0x000000008022e1a4 0x128 build\kernel\components\dfs\src\dfs_file.o
- .bss 0x000000008022e2cc 0x44 build\kernel\components\drivers\misc\pin.o
- .bss 0x000000008022e310 0x4 build\kernel\components\drivers\serial\serial.o
- .bss 0x000000008022e314 0x95 build\kernel\components\finsh\shell.o
- 0x000000008022e314 _syscall_table_begin
- 0x000000008022e318 _syscall_table_end
- 0x000000008022e31c _sysvar_table_begin
- 0x000000008022e320 _sysvar_table_end
- *fill* 0x000000008022e3a9 0x3
- .bss 0x000000008022e3ac 0x4 build\kernel\components\finsh\cmd.o
- .bss 0x000000008022e3b0 0x8 build\kernel\components\finsh\finsh_heap.o
- .bss 0x000000008022e3b8 0x4 build\kernel\components\finsh\finsh_vm.o
- 0x000000008022e3b8 global_syscall_list
- .bss 0x000000008022e3bc 0x4 build\kernel\components\libc\compilers\newlib\stdio.o
- .bss 0x000000008022e3c0 0x14 build\kernel\components\libc\compilers\newlib\syscalls.o
- 0x000000008022e3c0 _timevalue
- *(.bss.*)
- .bss.alloced.6018
- 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)
- .bss.initial_env
- 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)
- *(COMMON)
- COMMON 0x000000008022e3dc 0x54 build\drivers\uart.o
- 0x000000008022e3dc serial1
- COMMON 0x000000008022e430 0x4 build\kernel\src\kservice.o
- 0x000000008022e430 rt_assert_hook
- COMMON 0x000000008022e434 0xc build\kernel\src\object.o
- 0x000000008022e434 rt_object_put_hook
- 0x000000008022e438 rt_object_take_hook
- 0x000000008022e43c rt_object_trytake_hook
- COMMON 0x000000008022e440 0x110 build\kernel\src\scheduler.o
- 0x000000008022e440 rt_thread_priority_table
- 0x000000008022e540 rt_current_priority
- 0x000000008022e544 rt_thread_ready_priority_group
- 0x000000008022e548 rt_thread_defunct
- COMMON 0x000000008022e550 0x40c build\kernel\libcpu\arm\am335x\interrupt.o
- 0x000000008022e550 rt_interrupt_to_thread
- 0x000000008022e554 rt_interrupt_from_thread
- 0x000000008022e558 rt_thread_switch_interrupt_flag
- 0x000000008022e55c isr_table
- COMMON 0x000000008022e95c 0x28 build\kernel\components\dfs\src\dfs.o
- 0x000000008022e95c filesystem_table
- 0x000000008022e97c filesystem_operation_table
- COMMON 0x000000008022e984 0x4 build\kernel\components\finsh\shell.o
- 0x000000008022e984 shell
- COMMON 0x000000008022e988 0x8 build\kernel\components\finsh\finsh_compiler.o
- 0x000000008022e988 finsh_compile_pc
- 0x000000008022e98c finsh_compile_sp
- COMMON 0x000000008022e990 0x1 build\kernel\components\finsh\finsh_error.o
- 0x000000008022e990 global_errno
- *fill* 0x000000008022e991 0x3
- COMMON 0x000000008022e994 0x80 build\kernel\components\finsh\finsh_heap.o
- 0x000000008022e994 finsh_heap
- COMMON 0x000000008022ea14 0x140 build\kernel\components\finsh\finsh_node.o
- 0x000000008022ea14 global_node_table
- COMMON 0x000000008022eb54 0xc4 build\kernel\components\finsh\finsh_var.o
- 0x000000008022eb54 global_sysvar_list
- 0x000000008022eb58 global_variable
- COMMON 0x000000008022ec18 0x188 build\kernel\components\finsh\finsh_vm.o
- 0x000000008022ec18 text_segment
- 0x000000008022ec98 finsh_vm_stack
- 0x000000008022ed98 finsh_pc
- 0x000000008022ed9c finsh_sp
- 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)
- 0x000000008022eda0 __lock___atexit_recursive_mutex
- 0x000000008022eda1 __lock___arc4random_mutex
- 0x000000008022eda2 __lock___env_recursive_mutex
- 0x000000008022eda3 __lock___sinit_recursive_mutex
- 0x000000008022eda4 __lock___malloc_recursive_mutex
- 0x000000008022eda5 __lock___at_quick_exit_mutex
- 0x000000008022eda6 __lock___dd_hash_mutex
- 0x000000008022eda7 __lock___tz_mutex
- 0x000000008022eda8 __lock___sfp_recursive_mutex
- 0x000000008022edac . = ALIGN (0x4)
- *fill* 0x000000008022eda9 0x3
- 0x000000008022edac . = ALIGN (0x4)
- 0x000000008022edac __bss_end = .
- .stab
- *(.stab)
- .stabstr
- *(.stabstr)
- .stab.excl
- *(.stab.excl)
- .stab.exclstr
- *(.stab.exclstr)
- .stab.index
- *(.stab.index)
- .stab.indexstr
- *(.stab.indexstr)
- .comment 0x0000000000000000 0x7b
- *(.comment)
- .comment 0x0000000000000000 0x7b build\applications\board.o
- 0x7c (size before relaxing)
- .comment 0x000000000000007b 0x7c build\applications\main.o
- .comment 0x000000000000007b 0x7c build\drivers\gpio.o
- .comment 0x000000000000007b 0x7c build\drivers\uart.o
- .comment 0x000000000000007b 0x7c build\kernel\src\clock.o
- .comment 0x000000000000007b 0x7c build\kernel\src\components.o
- .comment 0x000000000000007b 0x7c build\kernel\src\device.o
- .comment 0x000000000000007b 0x7c build\kernel\src\idle.o
- .comment 0x000000000000007b 0x7c build\kernel\src\ipc.o
- .comment 0x000000000000007b 0x7c build\kernel\src\irq.o
- .comment 0x000000000000007b 0x7c build\kernel\src\kservice.o
- .comment 0x000000000000007b 0x7c build\kernel\src\mem.o
- .comment 0x000000000000007b 0x7c build\kernel\src\object.o
- .comment 0x000000000000007b 0x7c build\kernel\src\scheduler.o
- .comment 0x000000000000007b 0x7c build\kernel\src\thread.o
- .comment 0x000000000000007b 0x7c build\kernel\src\timer.o
- .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\cpu.o
- .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\interrupt.o
- .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\stack.o
- .comment 0x000000000000007b 0x7c build\kernel\libcpu\arm\am335x\trap.o
- .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs.o
- .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs_file.o
- .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs_fs.o
- .comment 0x000000000000007b 0x7c build\kernel\components\dfs\src\dfs_posix.o
- .comment 0x000000000000007b 0x7c build\kernel\components\dfs\filesystems\devfs\devfs.o
- .comment 0x000000000000007b 0x7c build\kernel\components\drivers\misc\pin.o
- .comment 0x000000000000007b 0x7c build\kernel\components\drivers\serial\serial.o
- .comment 0x000000000000007b 0x7c build\kernel\components\drivers\src\completion.o
- .comment 0x000000000000007b 0x7c build\kernel\components\drivers\src\dataqueue.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\shell.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\cmd.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\msh.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\msh_file.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_compiler.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_error.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_heap.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_init.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_node.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_ops.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_parser.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_var.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_vm.o
- .comment 0x000000000000007b 0x7c build\kernel\components\finsh\finsh_token.o
- .comment 0x000000000000007b 0x7c build\kernel\components\libc\compilers\newlib\libc.o
- .comment 0x000000000000007b 0x7c build\kernel\components\libc\compilers\newlib\stdio.o
- .comment 0x000000000000007b 0x7c build\kernel\components\libc\compilers\newlib\syscalls.o
- 0x00000000000000f7 _end = .
- OUTPUT(rtthread-beaglebone.elf elf32-littlearm)
- .ARM.attributes
- 0x0000000000000000 0x2d
- .ARM.attributes
- 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
- .ARM.attributes
- 0x000000000000001b 0x2d build\applications\board.o
- .ARM.attributes
- 0x0000000000000048 0x2d build\applications\main.o
- .ARM.attributes
- 0x0000000000000075 0x2d build\drivers\gpio.o
- .ARM.attributes
- 0x00000000000000a2 0x2d build\drivers\uart.o
- .ARM.attributes
- 0x00000000000000cf 0x2d build\kernel\src\clock.o
- .ARM.attributes
- 0x00000000000000fc 0x2d build\kernel\src\components.o
- .ARM.attributes
- 0x0000000000000129 0x2d build\kernel\src\device.o
- .ARM.attributes
- 0x0000000000000156 0x2d build\kernel\src\idle.o
- .ARM.attributes
- 0x0000000000000183 0x2d build\kernel\src\ipc.o
- .ARM.attributes
- 0x00000000000001b0 0x2d build\kernel\src\irq.o
- .ARM.attributes
- 0x00000000000001dd 0x2d build\kernel\src\kservice.o
- .ARM.attributes
- 0x000000000000020a 0x2d build\kernel\src\mem.o
- .ARM.attributes
- 0x0000000000000237 0x2d build\kernel\src\object.o
- .ARM.attributes
- 0x0000000000000264 0x2d build\kernel\src\scheduler.o
- .ARM.attributes
- 0x0000000000000291 0x2d build\kernel\src\thread.o
- .ARM.attributes
- 0x00000000000002be 0x2d build\kernel\src\timer.o
- .ARM.attributes
- 0x00000000000002eb 0x2d build\kernel\libcpu\arm\am335x\cpu.o
- .ARM.attributes
- 0x0000000000000318 0x2d build\kernel\libcpu\arm\am335x\interrupt.o
- .ARM.attributes
- 0x0000000000000345 0x2d build\kernel\libcpu\arm\am335x\stack.o
- .ARM.attributes
- 0x0000000000000372 0x2d build\kernel\libcpu\arm\am335x\trap.o
- .ARM.attributes
- 0x000000000000039f 0x1f build\kernel\libcpu\arm\am335x\context_gcc.o
- .ARM.attributes
- 0x00000000000003be 0x1f build\kernel\libcpu\arm\am335x\cp15_gcc.o
- .ARM.attributes
- 0x00000000000003dd 0x1f build\kernel\libcpu\arm\am335x\start_gcc.o
- .ARM.attributes
- 0x00000000000003fc 0x1f build\kernel\libcpu\arm\am335x\vector_gcc.o
- .ARM.attributes
- 0x000000000000041b 0x2d build\kernel\components\dfs\src\dfs.o
- .ARM.attributes
- 0x0000000000000448 0x2d build\kernel\components\dfs\src\dfs_file.o
- .ARM.attributes
- 0x0000000000000475 0x2d build\kernel\components\dfs\src\dfs_fs.o
- .ARM.attributes
- 0x00000000000004a2 0x2d build\kernel\components\dfs\src\dfs_posix.o
- .ARM.attributes
- 0x00000000000004cf 0x2d build\kernel\components\dfs\filesystems\devfs\devfs.o
- .ARM.attributes
- 0x00000000000004fc 0x2d build\kernel\components\drivers\misc\pin.o
- .ARM.attributes
- 0x0000000000000529 0x2d build\kernel\components\drivers\serial\serial.o
- .ARM.attributes
- 0x0000000000000556 0x2d build\kernel\components\drivers\src\completion.o
- .ARM.attributes
- 0x0000000000000583 0x2d build\kernel\components\drivers\src\dataqueue.o
- .ARM.attributes
- 0x00000000000005b0 0x2d build\kernel\components\finsh\shell.o
- .ARM.attributes
- 0x00000000000005dd 0x2d build\kernel\components\finsh\cmd.o
- .ARM.attributes
- 0x000000000000060a 0x2d build\kernel\components\finsh\msh.o
- .ARM.attributes
- 0x0000000000000637 0x2d build\kernel\components\finsh\msh_file.o
- .ARM.attributes
- 0x0000000000000664 0x2d build\kernel\components\finsh\finsh_compiler.o
- .ARM.attributes
- 0x0000000000000691 0x2d build\kernel\components\finsh\finsh_error.o
- .ARM.attributes
- 0x00000000000006be 0x2d build\kernel\components\finsh\finsh_heap.o
- .ARM.attributes
- 0x00000000000006eb 0x2d build\kernel\components\finsh\finsh_init.o
- .ARM.attributes
- 0x0000000000000718 0x2d build\kernel\components\finsh\finsh_node.o
- .ARM.attributes
- 0x0000000000000745 0x2d build\kernel\components\finsh\finsh_ops.o
- .ARM.attributes
- 0x0000000000000772 0x2d build\kernel\components\finsh\finsh_parser.o
- .ARM.attributes
- 0x000000000000079f 0x2d build\kernel\components\finsh\finsh_var.o
- .ARM.attributes
- 0x00000000000007cc 0x2d build\kernel\components\finsh\finsh_vm.o
- .ARM.attributes
- 0x00000000000007f9 0x2d build\kernel\components\finsh\finsh_token.o
- .ARM.attributes
- 0x0000000000000826 0x2d build\kernel\components\libc\compilers\newlib\libc.o
- .ARM.attributes
- 0x0000000000000853 0x2d build\kernel\components\libc\compilers\newlib\stdio.o
- .ARM.attributes
- 0x0000000000000880 0x2d build\kernel\components\libc\compilers\newlib\syscalls.o
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .ARM.attributes
- 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)
- .debug_info 0x0000000000000000 0x38a48
- .debug_info 0x0000000000000000 0xd87 build\applications\board.o
- .debug_info 0x0000000000000d87 0x99c build\applications\main.o
- .debug_info 0x0000000000001723 0x10ed build\drivers\gpio.o
- .debug_info 0x0000000000002810 0x1348 build\drivers\uart.o
- .debug_info 0x0000000000003b58 0xe2b build\kernel\src\clock.o
- .debug_info 0x0000000000004983 0xf39 build\kernel\src\components.o
- .debug_info 0x00000000000058bc 0x12aa build\kernel\src\device.o
- .debug_info 0x0000000000006b66 0x1008 build\kernel\src\idle.o
- .debug_info 0x0000000000007b6e 0x258c build\kernel\src\ipc.o
- .debug_info 0x000000000000a0fa 0xbb3 build\kernel\src\irq.o
- .debug_info 0x000000000000acad 0x1c51 build\kernel\src\kservice.o
- .debug_info 0x000000000000c8fe 0x1224 build\kernel\src\mem.o
- .debug_info 0x000000000000db22 0x1253 build\kernel\src\object.o
- .debug_info 0x000000000000ed75 0x11ab build\kernel\src\scheduler.o
- .debug_info 0x000000000000ff20 0x15dc build\kernel\src\thread.o
- .debug_info 0x00000000000114fc 0x12de build\kernel\src\timer.o
- .debug_info 0x00000000000127da 0xbef build\kernel\libcpu\arm\am335x\cpu.o
- .debug_info 0x00000000000133c9 0xdd5 build\kernel\libcpu\arm\am335x\interrupt.o
- .debug_info 0x000000000001419e 0xb10 build\kernel\libcpu\arm\am335x\stack.o
- .debug_info 0x0000000000014cae 0x1020 build\kernel\libcpu\arm\am335x\trap.o
- .debug_info 0x0000000000015cce 0x26 build\kernel\libcpu\arm\am335x\context_gcc.o
- .debug_info 0x0000000000015cf4 0x26 build\kernel\libcpu\arm\am335x\cp15_gcc.o
- .debug_info 0x0000000000015d1a 0x26 build\kernel\libcpu\arm\am335x\start_gcc.o
- .debug_info 0x0000000000015d40 0x26 build\kernel\libcpu\arm\am335x\vector_gcc.o
- .debug_info 0x0000000000015d66 0x1ea5 build\kernel\components\dfs\src\dfs.o
- .debug_info 0x0000000000017c0b 0x1f52 build\kernel\components\dfs\src\dfs_file.o
- .debug_info 0x0000000000019b5d 0x1cd0 build\kernel\components\dfs\src\dfs_fs.o
- .debug_info 0x000000000001b82d 0x2010 build\kernel\components\dfs\src\dfs_posix.o
- .debug_info 0x000000000001d83d 0x1a62 build\kernel\components\dfs\filesystems\devfs\devfs.o
- .debug_info 0x000000000001f29f 0x165e build\kernel\components\drivers\misc\pin.o
- .debug_info 0x00000000000208fd 0x1c0c build\kernel\components\drivers\serial\serial.o
- .debug_info 0x0000000000022509 0xf69 build\kernel\components\drivers\src\completion.o
- .debug_info 0x0000000000023472 0x12a3 build\kernel\components\drivers\src\dataqueue.o
- .debug_info 0x0000000000024715 0x1a20 build\kernel\components\finsh\shell.o
- .debug_info 0x0000000000026135 0x27a1 build\kernel\components\finsh\cmd.o
- .debug_info 0x00000000000288d6 0x137c build\kernel\components\finsh\msh.o
- .debug_info 0x0000000000029c52 0x1757 build\kernel\components\finsh\msh_file.o
- .debug_info 0x000000000002b3a9 0x1045 build\kernel\components\finsh\finsh_compiler.o
- .debug_info 0x000000000002c3ee 0xc67 build\kernel\components\finsh\finsh_error.o
- .debug_info 0x000000000002d055 0xf38 build\kernel\components\finsh\finsh_heap.o
- .debug_info 0x000000000002df8d 0xf37 build\kernel\components\finsh\finsh_init.o
- .debug_info 0x000000000002eec4 0xf13 build\kernel\components\finsh\finsh_node.o
- .debug_info 0x000000000002fdd7 0x1223 build\kernel\components\finsh\finsh_ops.o
- .debug_info 0x0000000000030ffa 0x1676 build\kernel\components\finsh\finsh_parser.o
- .debug_info 0x0000000000032670 0xe4e build\kernel\components\finsh\finsh_var.o
- .debug_info 0x00000000000334be 0xe0b build\kernel\components\finsh\finsh_vm.o
- .debug_info 0x00000000000342c9 0x11d5 build\kernel\components\finsh\finsh_token.o
- .debug_info 0x000000000003549e 0xe22 build\kernel\components\libc\compilers\newlib\libc.o
- .debug_info 0x00000000000362c0 0xb42 build\kernel\components\libc\compilers\newlib\stdio.o
- .debug_info 0x0000000000036e02 0x1c46 build\kernel\components\libc\compilers\newlib\syscalls.o
- .debug_abbrev 0x0000000000000000 0x77ed
- .debug_abbrev 0x0000000000000000 0x237 build\applications\board.o
- .debug_abbrev 0x0000000000000237 0x18b build\applications\main.o
- .debug_abbrev 0x00000000000003c2 0x24d build\drivers\gpio.o
- .debug_abbrev 0x000000000000060f 0x2c7 build\drivers\uart.o
- .debug_abbrev 0x00000000000008d6 0x225 build\kernel\src\clock.o
- .debug_abbrev 0x0000000000000afb 0x23f build\kernel\src\components.o
- .debug_abbrev 0x0000000000000d3a 0x28d build\kernel\src\device.o
- .debug_abbrev 0x0000000000000fc7 0x2af build\kernel\src\idle.o
- .debug_abbrev 0x0000000000001276 0x2f3 build\kernel\src\ipc.o
- .debug_abbrev 0x0000000000001569 0x22c build\kernel\src\irq.o
- .debug_abbrev 0x0000000000001795 0x3b2 build\kernel\src\kservice.o
- .debug_abbrev 0x0000000000001b47 0x2db build\kernel\src\mem.o
- .debug_abbrev 0x0000000000001e22 0x2e5 build\kernel\src\object.o
- .debug_abbrev 0x0000000000002107 0x30e build\kernel\src\scheduler.o
- .debug_abbrev 0x0000000000002415 0x2f7 build\kernel\src\thread.o
- .debug_abbrev 0x000000000000270c 0x368 build\kernel\src\timer.o
- .debug_abbrev 0x0000000000002a74 0x235 build\kernel\libcpu\arm\am335x\cpu.o
- .debug_abbrev 0x0000000000002ca9 0x25c build\kernel\libcpu\arm\am335x\interrupt.o
- .debug_abbrev 0x0000000000002f05 0x1b9 build\kernel\libcpu\arm\am335x\stack.o
- .debug_abbrev 0x00000000000030be 0x205 build\kernel\libcpu\arm\am335x\trap.o
- .debug_abbrev 0x00000000000032c3 0x14 build\kernel\libcpu\arm\am335x\context_gcc.o
- .debug_abbrev 0x00000000000032d7 0x14 build\kernel\libcpu\arm\am335x\cp15_gcc.o
- .debug_abbrev 0x00000000000032eb 0x14 build\kernel\libcpu\arm\am335x\start_gcc.o
- .debug_abbrev 0x00000000000032ff 0x14 build\kernel\libcpu\arm\am335x\vector_gcc.o
- .debug_abbrev 0x0000000000003313 0x34b build\kernel\components\dfs\src\dfs.o
- .debug_abbrev 0x000000000000365e 0x302 build\kernel\components\dfs\src\dfs_file.o
- .debug_abbrev 0x0000000000003960 0x2c5 build\kernel\components\dfs\src\dfs_fs.o
- .debug_abbrev 0x0000000000003c25 0x2d3 build\kernel\components\dfs\src\dfs_posix.o
- .debug_abbrev 0x0000000000003ef8 0x2a5 build\kernel\components\dfs\filesystems\devfs\devfs.o
- .debug_abbrev 0x000000000000419d 0x24a build\kernel\components\drivers\misc\pin.o
- .debug_abbrev 0x00000000000043e7 0x2e9 build\kernel\components\drivers\serial\serial.o
- .debug_abbrev 0x00000000000046d0 0x25c build\kernel\components\drivers\src\completion.o
- .debug_abbrev 0x000000000000492c 0x2cc build\kernel\components\drivers\src\dataqueue.o
- .debug_abbrev 0x0000000000004bf8 0x3a9 build\kernel\components\finsh\shell.o
- .debug_abbrev 0x0000000000004fa1 0x38a build\kernel\components\finsh\cmd.o
- .debug_abbrev 0x000000000000532b 0x35c build\kernel\components\finsh\msh.o
- .debug_abbrev 0x0000000000005687 0x2cf build\kernel\components\finsh\msh_file.o
- .debug_abbrev 0x0000000000005956 0x2a0 build\kernel\components\finsh\finsh_compiler.o
- .debug_abbrev 0x0000000000005bf6 0x1e4 build\kernel\components\finsh\finsh_error.o
- .debug_abbrev 0x0000000000005dda 0x278 build\kernel\components\finsh\finsh_heap.o
- .debug_abbrev 0x0000000000006052 0x1fa build\kernel\components\finsh\finsh_init.o
- .debug_abbrev 0x000000000000624c 0x22b build\kernel\components\finsh\finsh_node.o
- .debug_abbrev 0x0000000000006477 0x24d build\kernel\components\finsh\finsh_ops.o
- .debug_abbrev 0x00000000000066c4 0x2b4 build\kernel\components\finsh\finsh_parser.o
- .debug_abbrev 0x0000000000006978 0x232 build\kernel\components\finsh\finsh_var.o
- .debug_abbrev 0x0000000000006baa 0x22f build\kernel\components\finsh\finsh_vm.o
- .debug_abbrev 0x0000000000006dd9 0x300 build\kernel\components\finsh\finsh_token.o
- .debug_abbrev 0x00000000000070d9 0x1da build\kernel\components\libc\compilers\newlib\libc.o
- .debug_abbrev 0x00000000000072b3 0x1e9 build\kernel\components\libc\compilers\newlib\stdio.o
- .debug_abbrev 0x000000000000749c 0x351 build\kernel\components\libc\compilers\newlib\syscalls.o
- .debug_loc 0x0000000000000000 0x8b0c
- .debug_loc 0x0000000000000000 0x118 build\applications\board.o
- .debug_loc 0x0000000000000118 0x2c build\applications\main.o
- .debug_loc 0x0000000000000144 0xd4 build\drivers\gpio.o
- .debug_loc 0x0000000000000218 0x260 build\drivers\uart.o
- .debug_loc 0x0000000000000478 0x124 build\kernel\src\clock.o
- .debug_loc 0x000000000000059c 0x248 build\kernel\src\components.o
- .debug_loc 0x00000000000007e4 0x31c build\kernel\src\device.o
- .debug_loc 0x0000000000000b00 0x1d8 build\kernel\src\idle.o
- .debug_loc 0x0000000000000cd8 0xab0 build\kernel\src\ipc.o
- .debug_loc 0x0000000000001788 0x130 build\kernel\src\irq.o
- .debug_loc 0x00000000000018b8 0x864 build\kernel\src\kservice.o
- .debug_loc 0x000000000000211c 0x248 build\kernel\src\mem.o
- .debug_loc 0x0000000000002364 0x418 build\kernel\src\object.o
- .debug_loc 0x000000000000277c 0x36c build\kernel\src\scheduler.o
- .debug_loc 0x0000000000002ae8 0x5cc build\kernel\src\thread.o
- .debug_loc 0x00000000000030b4 0x4a8 build\kernel\src\timer.o
- .debug_loc 0x000000000000355c 0x20c build\kernel\libcpu\arm\am335x\cpu.o
- .debug_loc 0x0000000000003768 0x2f4 build\kernel\libcpu\arm\am335x\interrupt.o
- .debug_loc 0x0000000000003a5c 0x44 build\kernel\libcpu\arm\am335x\stack.o
- .debug_loc 0x0000000000003aa0 0x188 build\kernel\libcpu\arm\am335x\trap.o
- .debug_loc 0x0000000000003c28 0x2a0 build\kernel\components\dfs\src\dfs.o
- .debug_loc 0x0000000000003ec8 0x428 build\kernel\components\dfs\src\dfs_file.o
- .debug_loc 0x00000000000042f0 0x230 build\kernel\components\dfs\src\dfs_fs.o
- .debug_loc 0x0000000000004520 0x5e4 build\kernel\components\dfs\src\dfs_posix.o
- .debug_loc 0x0000000000004b04 0x23c build\kernel\components\dfs\filesystems\devfs\devfs.o
- .debug_loc 0x0000000000004d40 0x268 build\kernel\components\drivers\misc\pin.o
- .debug_loc 0x0000000000004fa8 0x41c build\kernel\components\drivers\serial\serial.o
- .debug_loc 0x00000000000053c4 0x174 build\kernel\components\drivers\src\completion.o
- .debug_loc 0x0000000000005538 0x254 build\kernel\components\drivers\src\dataqueue.o
- .debug_loc 0x000000000000578c 0x3cc build\kernel\components\finsh\shell.o
- .debug_loc 0x0000000000005b58 0x4dc build\kernel\components\finsh\cmd.o
- .debug_loc 0x0000000000006034 0x308 build\kernel\components\finsh\msh.o
- .debug_loc 0x000000000000633c 0x310 build\kernel\components\finsh\msh_file.o
- .debug_loc 0x000000000000664c 0xa8 build\kernel\components\finsh\finsh_compiler.o
- .debug_loc 0x00000000000066f4 0x110 build\kernel\components\finsh\finsh_error.o
- .debug_loc 0x0000000000006804 0x1e4 build\kernel\components\finsh\finsh_heap.o
- .debug_loc 0x00000000000069e8 0xec build\kernel\components\finsh\finsh_init.o
- .debug_loc 0x0000000000006ad4 0x1c0 build\kernel\components\finsh\finsh_node.o
- .debug_loc 0x0000000000006c94 0xc24 build\kernel\components\finsh\finsh_ops.o
- .debug_loc 0x00000000000078b8 0x460 build\kernel\components\finsh\finsh_parser.o
- .debug_loc 0x0000000000007d18 0x144 build\kernel\components\finsh\finsh_var.o
- .debug_loc 0x0000000000007e5c 0xa8 build\kernel\components\finsh\finsh_vm.o
- .debug_loc 0x0000000000007f04 0x328 build\kernel\components\finsh\finsh_token.o
- .debug_loc 0x000000000000822c 0x38 build\kernel\components\libc\compilers\newlib\libc.o
- .debug_loc 0x0000000000008264 0x64 build\kernel\components\libc\compilers\newlib\stdio.o
- .debug_loc 0x00000000000082c8 0x844 build\kernel\components\libc\compilers\newlib\syscalls.o
- .debug_aranges 0x0000000000000000 0x640
- .debug_aranges
- 0x0000000000000000 0x20 build\applications\board.o
- .debug_aranges
- 0x0000000000000020 0x20 build\applications\main.o
- .debug_aranges
- 0x0000000000000040 0x20 build\drivers\gpio.o
- .debug_aranges
- 0x0000000000000060 0x20 build\drivers\uart.o
- .debug_aranges
- 0x0000000000000080 0x20 build\kernel\src\clock.o
- .debug_aranges
- 0x00000000000000a0 0x20 build\kernel\src\components.o
- .debug_aranges
- 0x00000000000000c0 0x20 build\kernel\src\device.o
- .debug_aranges
- 0x00000000000000e0 0x20 build\kernel\src\idle.o
- .debug_aranges
- 0x0000000000000100 0x20 build\kernel\src\ipc.o
- .debug_aranges
- 0x0000000000000120 0x20 build\kernel\src\irq.o
- .debug_aranges
- 0x0000000000000140 0x20 build\kernel\src\kservice.o
- .debug_aranges
- 0x0000000000000160 0x20 build\kernel\src\mem.o
- .debug_aranges
- 0x0000000000000180 0x20 build\kernel\src\object.o
- .debug_aranges
- 0x00000000000001a0 0x20 build\kernel\src\scheduler.o
- .debug_aranges
- 0x00000000000001c0 0x20 build\kernel\src\thread.o
- .debug_aranges
- 0x00000000000001e0 0x20 build\kernel\src\timer.o
- .debug_aranges
- 0x0000000000000200 0x20 build\kernel\libcpu\arm\am335x\cpu.o
- .debug_aranges
- 0x0000000000000220 0x20 build\kernel\libcpu\arm\am335x\interrupt.o
- .debug_aranges
- 0x0000000000000240 0x20 build\kernel\libcpu\arm\am335x\stack.o
- .debug_aranges
- 0x0000000000000260 0x20 build\kernel\libcpu\arm\am335x\trap.o
- .debug_aranges
- 0x0000000000000280 0x20 build\kernel\libcpu\arm\am335x\context_gcc.o
- .debug_aranges
- 0x00000000000002a0 0x20 build\kernel\libcpu\arm\am335x\cp15_gcc.o
- .debug_aranges
- 0x00000000000002c0 0x20 build\kernel\libcpu\arm\am335x\start_gcc.o
- .debug_aranges
- 0x00000000000002e0 0x20 build\kernel\libcpu\arm\am335x\vector_gcc.o
- .debug_aranges
- 0x0000000000000300 0x20 build\kernel\components\dfs\src\dfs.o
- .debug_aranges
- 0x0000000000000320 0x20 build\kernel\components\dfs\src\dfs_file.o
- .debug_aranges
- 0x0000000000000340 0x20 build\kernel\components\dfs\src\dfs_fs.o
- .debug_aranges
- 0x0000000000000360 0x20 build\kernel\components\dfs\src\dfs_posix.o
- .debug_aranges
- 0x0000000000000380 0x20 build\kernel\components\dfs\filesystems\devfs\devfs.o
- .debug_aranges
- 0x00000000000003a0 0x20 build\kernel\components\drivers\misc\pin.o
- .debug_aranges
- 0x00000000000003c0 0x20 build\kernel\components\drivers\serial\serial.o
- .debug_aranges
- 0x00000000000003e0 0x20 build\kernel\components\drivers\src\completion.o
- .debug_aranges
- 0x0000000000000400 0x20 build\kernel\components\drivers\src\dataqueue.o
- .debug_aranges
- 0x0000000000000420 0x20 build\kernel\components\finsh\shell.o
- .debug_aranges
- 0x0000000000000440 0x20 build\kernel\components\finsh\cmd.o
- .debug_aranges
- 0x0000000000000460 0x20 build\kernel\components\finsh\msh.o
- .debug_aranges
- 0x0000000000000480 0x20 build\kernel\components\finsh\msh_file.o
- .debug_aranges
- 0x00000000000004a0 0x20 build\kernel\components\finsh\finsh_compiler.o
- .debug_aranges
- 0x00000000000004c0 0x20 build\kernel\components\finsh\finsh_error.o
- .debug_aranges
- 0x00000000000004e0 0x20 build\kernel\components\finsh\finsh_heap.o
- .debug_aranges
- 0x0000000000000500 0x20 build\kernel\components\finsh\finsh_init.o
- .debug_aranges
- 0x0000000000000520 0x20 build\kernel\components\finsh\finsh_node.o
- .debug_aranges
- 0x0000000000000540 0x20 build\kernel\components\finsh\finsh_ops.o
- .debug_aranges
- 0x0000000000000560 0x20 build\kernel\components\finsh\finsh_parser.o
- .debug_aranges
- 0x0000000000000580 0x20 build\kernel\components\finsh\finsh_var.o
- .debug_aranges
- 0x00000000000005a0 0x20 build\kernel\components\finsh\finsh_vm.o
- .debug_aranges
- 0x00000000000005c0 0x20 build\kernel\components\finsh\finsh_token.o
- .debug_aranges
- 0x00000000000005e0 0x20 build\kernel\components\libc\compilers\newlib\libc.o
- .debug_aranges
- 0x0000000000000600 0x20 build\kernel\components\libc\compilers\newlib\stdio.o
- .debug_aranges
- 0x0000000000000620 0x20 build\kernel\components\libc\compilers\newlib\syscalls.o
- .debug_line 0x0000000000000000 0xbd28
- .debug_line 0x0000000000000000 0x34f build\applications\board.o
- .debug_line 0x000000000000034f 0x1c7 build\applications\main.o
- .debug_line 0x0000000000000516 0x2a6 build\drivers\gpio.o
- .debug_line 0x00000000000007bc 0x339 build\drivers\uart.o
- .debug_line 0x0000000000000af5 0x248 build\kernel\src\clock.o
- .debug_line 0x0000000000000d3d 0x28b build\kernel\src\components.o
- .debug_line 0x0000000000000fc8 0x378 build\kernel\src\device.o
- .debug_line 0x0000000000001340 0x2e6 build\kernel\src\idle.o
- .debug_line 0x0000000000001626 0xb0e build\kernel\src\ipc.o
- .debug_line 0x0000000000002134 0x251 build\kernel\src\irq.o
- .debug_line 0x0000000000002385 0x5ec build\kernel\src\kservice.o
- .debug_line 0x0000000000002971 0x4c3 build\kernel\src\mem.o
- .debug_line 0x0000000000002e34 0x3d2 build\kernel\src\object.o
- .debug_line 0x0000000000003206 0x331 build\kernel\src\scheduler.o
- .debug_line 0x0000000000003537 0x448 build\kernel\src\thread.o
- .debug_line 0x000000000000397f 0x3f1 build\kernel\src\timer.o
- .debug_line 0x0000000000003d70 0x25a build\kernel\libcpu\arm\am335x\cpu.o
- .debug_line 0x0000000000003fca 0x2c4 build\kernel\libcpu\arm\am335x\interrupt.o
- .debug_line 0x000000000000428e 0x24b build\kernel\libcpu\arm\am335x\stack.o
- .debug_line 0x00000000000044d9 0x291 build\kernel\libcpu\arm\am335x\trap.o
- .debug_line 0x000000000000476a 0x82 build\kernel\libcpu\arm\am335x\context_gcc.o
- .debug_line 0x00000000000047ec 0xa4 build\kernel\libcpu\arm\am335x\cp15_gcc.o
- .debug_line 0x0000000000004890 0xde build\kernel\libcpu\arm\am335x\start_gcc.o
- .debug_line 0x000000000000496e 0x5f build\kernel\libcpu\arm\am335x\vector_gcc.o
- .debug_line 0x00000000000049cd 0x585 build\kernel\components\dfs\src\dfs.o
- .debug_line 0x0000000000004f52 0x54b build\kernel\components\dfs\src\dfs_file.o
- .debug_line 0x000000000000549d 0x55d build\kernel\components\dfs\src\dfs_fs.o
- .debug_line 0x00000000000059fa 0x555 build\kernel\components\dfs\src\dfs_posix.o
- .debug_line 0x0000000000005f4f 0x4a0 build\kernel\components\dfs\filesystems\devfs\devfs.o
- .debug_line 0x00000000000063ef 0x3e3 build\kernel\components\drivers\misc\pin.o
- .debug_line 0x00000000000067d2 0x62f build\kernel\components\drivers\serial\serial.o
- .debug_line 0x0000000000006e01 0x2f8 build\kernel\components\drivers\src\completion.o
- .debug_line 0x00000000000070f9 0x424 build\kernel\components\drivers\src\dataqueue.o
- .debug_line 0x000000000000751d 0x517 build\kernel\components\finsh\shell.o
- .debug_line 0x0000000000007a34 0x634 build\kernel\components\finsh\cmd.o
- .debug_line 0x0000000000008068 0x4d3 build\kernel\components\finsh\msh.o
- .debug_line 0x000000000000853b 0x4c1 build\kernel\components\finsh\msh_file.o
- .debug_line 0x00000000000089fc 0x773 build\kernel\components\finsh\finsh_compiler.o
- .debug_line 0x000000000000916f 0x2de build\kernel\components\finsh\finsh_error.o
- .debug_line 0x000000000000944d 0x3c0 build\kernel\components\finsh\finsh_heap.o
- .debug_line 0x000000000000980d 0x304 build\kernel\components\finsh\finsh_init.o
- .debug_line 0x0000000000009b11 0x34d build\kernel\components\finsh\finsh_node.o
- .debug_line 0x0000000000009e5e 0x464 build\kernel\components\finsh\finsh_ops.o
- .debug_line 0x000000000000a2c2 0x5bf build\kernel\components\finsh\finsh_parser.o
- .debug_line 0x000000000000a881 0x372 build\kernel\components\finsh\finsh_var.o
- .debug_line 0x000000000000abf3 0x33c build\kernel\components\finsh\finsh_vm.o
- .debug_line 0x000000000000af2f 0x51e build\kernel\components\finsh\finsh_token.o
- .debug_line 0x000000000000b44d 0x255 build\kernel\components\libc\compilers\newlib\libc.o
- .debug_line 0x000000000000b6a2 0x290 build\kernel\components\libc\compilers\newlib\stdio.o
- .debug_line 0x000000000000b932 0x3f6 build\kernel\components\libc\compilers\newlib\syscalls.o
- .debug_str 0x0000000000000000 0x5992
- .debug_str 0x0000000000000000 0x702 build\applications\board.o
- 0x7fb (size before relaxing)
- .debug_str 0x0000000000000702 0x14 build\applications\main.o
- 0x572 (size before relaxing)
- .debug_str 0x0000000000000716 0x352 build\drivers\gpio.o
- 0xa2f (size before relaxing)
- .debug_str 0x0000000000000a68 0x18a build\drivers\uart.o
- 0xaf4 (size before relaxing)
- .debug_str 0x0000000000000bf2 0x119 build\kernel\src\clock.o
- 0x7e4 (size before relaxing)
- .debug_str 0x0000000000000d0b 0xf6 build\kernel\src\components.o
- 0x891 (size before relaxing)
- .debug_str 0x0000000000000e01 0x297 build\kernel\src\device.o
- 0xbc4 (size before relaxing)
- .debug_str 0x0000000000001098 0x10c build\kernel\src\idle.o
- 0x88b (size before relaxing)
- .debug_str 0x00000000000011a4 0x4af build\kernel\src\ipc.o
- 0xdd7 (size before relaxing)
- .debug_str 0x0000000000001653 0xc8 build\kernel\src\irq.o
- 0x6e0 (size before relaxing)
- .debug_str 0x000000000000171b 0x307 build\kernel\src\kservice.o
- 0xd69 (size before relaxing)
- .debug_str 0x0000000000001a22 0x18d build\kernel\src\mem.o
- 0x90f (size before relaxing)
- .debug_str 0x0000000000001baf 0x2d2 build\kernel\src\object.o
- 0xb2c (size before relaxing)
- .debug_str 0x0000000000001e81 0x1ed build\kernel\src\scheduler.o
- 0xa1c (size before relaxing)
- .debug_str 0x000000000000206e 0x1f3 build\kernel\src\thread.o
- 0xb5f (size before relaxing)
- .debug_str 0x0000000000002261 0x1a6 build\kernel\src\timer.o
- 0xa61 (size before relaxing)
- .debug_str 0x0000000000002407 0xcf build\kernel\libcpu\arm\am335x\cpu.o
- 0x70b (size before relaxing)
- .debug_str 0x00000000000024d6 0x1d0 build\kernel\libcpu\arm\am335x\interrupt.o
- 0x81e (size before relaxing)
- .debug_str 0x00000000000026a6 0x3c build\kernel\libcpu\arm\am335x\stack.o
- 0x666 (size before relaxing)
- .debug_str 0x00000000000026e2 0xbe build\kernel\libcpu\arm\am335x\trap.o
- 0x854 (size before relaxing)
- .debug_str 0x00000000000027a0 0x38 build\kernel\libcpu\arm\am335x\context_gcc.o
- 0x5f (size before relaxing)
- .debug_str 0x00000000000027d8 0x27 build\kernel\libcpu\arm\am335x\cp15_gcc.o
- 0x5c (size before relaxing)
- .debug_str 0x00000000000027ff 0x28 build\kernel\libcpu\arm\am335x\start_gcc.o
- 0x5d (size before relaxing)
- .debug_str 0x0000000000002827 0x29 build\kernel\libcpu\arm\am335x\vector_gcc.o
- 0x5e (size before relaxing)
- .debug_str 0x0000000000002850 0x393 build\kernel\components\dfs\src\dfs.o
- 0xfb0 (size before relaxing)
- .debug_str 0x0000000000002be3 0x233 build\kernel\components\dfs\src\dfs_file.o
- 0xf63 (size before relaxing)
- .debug_str 0x0000000000002e16 0x16b build\kernel\components\dfs\src\dfs_fs.o
- 0xed0 (size before relaxing)
- .debug_str 0x0000000000002f81 0x112 build\kernel\components\dfs\src\dfs_posix.o
- 0xe51 (size before relaxing)
- .debug_str 0x0000000000003093 0x138 build\kernel\components\dfs\filesystems\devfs\devfs.o
- 0xefe (size before relaxing)
- .debug_str 0x00000000000031cb 0x1d4 build\kernel\components\drivers\misc\pin.o
- 0xc3e (size before relaxing)
- .debug_str 0x000000000000339f 0x2c0 build\kernel\components\drivers\serial\serial.o
- 0xd33 (size before relaxing)
- .debug_str 0x000000000000365f 0x67 build\kernel\components\drivers\src\completion.o
- 0x858 (size before relaxing)
- .debug_str 0x00000000000036c6 0xb3 build\kernel\components\drivers\src\dataqueue.o
- 0x929 (size before relaxing)
- .debug_str 0x0000000000003779 0x327 build\kernel\components\finsh\shell.o
- 0xeb9 (size before relaxing)
- .debug_str 0x0000000000003aa0 0x950 build\kernel\components\finsh\cmd.o
- 0x1776 (size before relaxing)
- .debug_str 0x00000000000043f0 0x23a build\kernel\components\finsh\msh.o
- 0x9ba (size before relaxing)
- .debug_str 0x000000000000462a 0x31a build\kernel\components\finsh\msh_file.o
- 0xbff (size before relaxing)
- .debug_str 0x0000000000004944 0xfb build\kernel\components\finsh\finsh_compiler.o
- 0x937 (size before relaxing)
- .debug_str 0x0000000000004a3f 0x8f build\kernel\components\finsh\finsh_error.o
- 0x743 (size before relaxing)
- .debug_str 0x0000000000004ace 0xfe build\kernel\components\finsh\finsh_heap.o
- 0x942 (size before relaxing)
- .debug_str 0x0000000000004bcc 0x5e build\kernel\components\finsh\finsh_init.o
- 0x82f (size before relaxing)
- .debug_str 0x0000000000004c2a 0xdb build\kernel\components\finsh\finsh_node.o
- 0x814 (size before relaxing)
- .debug_str 0x0000000000004d05 0x29f build\kernel\components\finsh\finsh_ops.o
- 0x9f5 (size before relaxing)
- .debug_str 0x0000000000004fa4 0x501 build\kernel\components\finsh\finsh_parser.o
- 0xdb9 (size before relaxing)
- .debug_str 0x00000000000054a5 0x9a build\kernel\components\finsh\finsh_var.o
- 0x8b2 (size before relaxing)
- .debug_str 0x000000000000553f 0x5d build\kernel\components\finsh\finsh_vm.o
- 0x7b3 (size before relaxing)
- .debug_str 0x000000000000559c 0x128 build\kernel\components\finsh\finsh_token.o
- 0xb7f (size before relaxing)
- .debug_str 0x00000000000056c4 0x59 build\kernel\components\libc\compilers\newlib\libc.o
- 0x97e (size before relaxing)
- .debug_str 0x000000000000571d 0x77 build\kernel\components\libc\compilers\newlib\stdio.o
- 0x68f (size before relaxing)
- .debug_str 0x0000000000005794 0x1fe build\kernel\components\libc\compilers\newlib\syscalls.o
- 0xdd0 (size before relaxing)
- .debug_frame 0x0000000000000000 0x604c
- .debug_frame 0x0000000000000000 0xac build\applications\board.o
- .debug_frame 0x00000000000000ac 0x2c build\applications\main.o
- .debug_frame 0x00000000000000d8 0x8c build\drivers\gpio.o
- .debug_frame 0x0000000000000164 0x154 build\drivers\uart.o
- .debug_frame 0x00000000000002b8 0xac build\kernel\src\clock.o
- .debug_frame 0x0000000000000364 0x148 build\kernel\src\components.o
- .debug_frame 0x00000000000004ac 0x1d8 build\kernel\src\device.o
- .debug_frame 0x0000000000000684 0x110 build\kernel\src\idle.o
- .debug_frame 0x0000000000000794 0x654 build\kernel\src\ipc.o
- .debug_frame 0x0000000000000de8 0xb0 build\kernel\src\irq.o
- .debug_frame 0x0000000000000e98 0x488 build\kernel\src\kservice.o
- .debug_frame 0x0000000000001320 0x15c build\kernel\src\mem.o
- .debug_frame 0x000000000000147c 0x240 build\kernel\src\object.o
- .debug_frame 0x00000000000016bc 0x204 build\kernel\src\scheduler.o
- .debug_frame 0x00000000000018c0 0x34c build\kernel\src\thread.o
- .debug_frame 0x0000000000001c0c 0x2a8 build\kernel\src\timer.o
- .debug_frame 0x0000000000001eb4 0x138 build\kernel\libcpu\arm\am335x\cpu.o
- .debug_frame 0x0000000000001fec 0x18c build\kernel\libcpu\arm\am335x\interrupt.o
- .debug_frame 0x0000000000002178 0x34 build\kernel\libcpu\arm\am335x\stack.o
- .debug_frame 0x00000000000021ac 0xf0 build\kernel\libcpu\arm\am335x\trap.o
- .debug_frame 0x000000000000229c 0x19c build\kernel\components\dfs\src\dfs.o
- .debug_frame 0x0000000000002438 0x284 build\kernel\components\dfs\src\dfs_file.o
- .debug_frame 0x00000000000026bc 0x164 build\kernel\components\dfs\src\dfs_fs.o
- .debug_frame 0x0000000000002820 0x36c build\kernel\components\dfs\src\dfs_posix.o
- .debug_frame 0x0000000000002b8c 0x150 build\kernel\components\dfs\filesystems\devfs\devfs.o
- .debug_frame 0x0000000000002cdc 0x174 build\kernel\components\drivers\misc\pin.o
- .debug_frame 0x0000000000002e50 0x280 build\kernel\components\drivers\serial\serial.o
- .debug_frame 0x00000000000030d0 0xd0 build\kernel\components\drivers\src\completion.o
- .debug_frame 0x00000000000031a0 0x158 build\kernel\components\drivers\src\dataqueue.o
- .debug_frame 0x00000000000032f8 0x248 build\kernel\components\finsh\shell.o
- .debug_frame 0x0000000000003540 0x2f0 build\kernel\components\finsh\cmd.o
- .debug_frame 0x0000000000003830 0x1b8 build\kernel\components\finsh\msh.o
- .debug_frame 0x00000000000039e8 0x1e4 build\kernel\components\finsh\msh_file.o
- .debug_frame 0x0000000000003bcc 0x78 build\kernel\components\finsh\finsh_compiler.o
- .debug_frame 0x0000000000003c44 0x90 build\kernel\components\finsh\finsh_error.o
- .debug_frame 0x0000000000003cd4 0x10c build\kernel\components\finsh\finsh_heap.o
- .debug_frame 0x0000000000003de0 0x90 build\kernel\components\finsh\finsh_init.o
- .debug_frame 0x0000000000003e70 0x110 build\kernel\components\finsh\finsh_node.o
- .debug_frame 0x0000000000003f80 0x618 build\kernel\components\finsh\finsh_ops.o
- .debug_frame 0x0000000000004598 0x29c build\kernel\components\finsh\finsh_parser.o
- .debug_frame 0x0000000000004834 0xd0 build\kernel\components\finsh\finsh_var.o
- .debug_frame 0x0000000000004904 0x74 build\kernel\components\finsh\finsh_vm.o
- .debug_frame 0x0000000000004978 0x1e0 build\kernel\components\finsh\finsh_token.o
- .debug_frame 0x0000000000004b58 0x30 build\kernel\components\libc\compilers\newlib\libc.o
- .debug_frame 0x0000000000004b88 0x4c build\kernel\components\libc\compilers\newlib\stdio.o
- .debug_frame 0x0000000000004bd4 0x46c build\kernel\components\libc\compilers\newlib\syscalls.o
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .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)
- .debug_ranges 0x0000000000000000 0x138
- .debug_ranges 0x0000000000000000 0x30 build\kernel\src\scheduler.o
- .debug_ranges 0x0000000000000030 0x18 build\kernel\src\timer.o
- .debug_ranges 0x0000000000000048 0x18 build\kernel\components\dfs\src\dfs.o
- .debug_ranges 0x0000000000000060 0x48 build\kernel\components\drivers\serial\serial.o
- .debug_ranges 0x00000000000000a8 0x90 build\kernel\components\finsh\finsh_compiler.o
- Cross Reference Table
- Symbol File
- AM335X_VECTOR_BASE build\kernel\libcpu\arm\am335x\interrupt.o
- OP_add_byte build\kernel\components\finsh\finsh_ops.o
- OP_add_dword build\kernel\components\finsh\finsh_ops.o
- OP_add_word build\kernel\components\finsh\finsh_ops.o
- OP_and_byte build\kernel\components\finsh\finsh_ops.o
- OP_and_dword build\kernel\components\finsh\finsh_ops.o
- OP_and_word build\kernel\components\finsh\finsh_ops.o
- OP_bw_byte build\kernel\components\finsh\finsh_ops.o
- OP_bw_dword build\kernel\components\finsh\finsh_ops.o
- OP_bw_word build\kernel\components\finsh\finsh_ops.o
- OP_call build\kernel\components\finsh\finsh_ops.o
- OP_div_byte build\kernel\components\finsh\finsh_ops.o
- OP_div_dword build\kernel\components\finsh\finsh_ops.o
- OP_div_word build\kernel\components\finsh\finsh_ops.o
- OP_ld_byte build\kernel\components\finsh\finsh_ops.o
- OP_ld_dword build\kernel\components\finsh\finsh_ops.o
- OP_ld_value_byte build\kernel\components\finsh\finsh_ops.o
- OP_ld_value_byte_stack build\kernel\components\finsh\finsh_ops.o
- OP_ld_value_dword build\kernel\components\finsh\finsh_ops.o
- OP_ld_value_dword_stack build\kernel\components\finsh\finsh_ops.o
- OP_ld_value_word build\kernel\components\finsh\finsh_ops.o
- OP_ld_value_word_stack build\kernel\components\finsh\finsh_ops.o
- OP_ld_word build\kernel\components\finsh\finsh_ops.o
- OP_mod_byte build\kernel\components\finsh\finsh_ops.o
- OP_mod_dword build\kernel\components\finsh\finsh_ops.o
- OP_mod_word build\kernel\components\finsh\finsh_ops.o
- OP_mul_byte build\kernel\components\finsh\finsh_ops.o
- OP_mul_dword build\kernel\components\finsh\finsh_ops.o
- OP_mul_word build\kernel\components\finsh\finsh_ops.o
- OP_no_op build\kernel\components\finsh\finsh_ops.o
- OP_or_byte build\kernel\components\finsh\finsh_ops.o
- OP_or_dword build\kernel\components\finsh\finsh_ops.o
- OP_or_word build\kernel\components\finsh\finsh_ops.o
- OP_pop build\kernel\components\finsh\finsh_ops.o
- OP_shl_byte build\kernel\components\finsh\finsh_ops.o
- OP_shl_dword build\kernel\components\finsh\finsh_ops.o
- OP_shl_word build\kernel\components\finsh\finsh_ops.o
- OP_shr_byte build\kernel\components\finsh\finsh_ops.o
- OP_shr_dword build\kernel\components\finsh\finsh_ops.o
- OP_shr_word build\kernel\components\finsh\finsh_ops.o
- OP_st_byte build\kernel\components\finsh\finsh_ops.o
- OP_st_dword build\kernel\components\finsh\finsh_ops.o
- OP_st_word build\kernel\components\finsh\finsh_ops.o
- OP_sub_byte build\kernel\components\finsh\finsh_ops.o
- OP_sub_dword build\kernel\components\finsh\finsh_ops.o
- OP_sub_word build\kernel\components\finsh\finsh_ops.o
- OP_xor_byte build\kernel\components\finsh\finsh_ops.o
- OP_xor_dword build\kernel\components\finsh\finsh_ops.o
- OP_xor_word build\kernel\components\finsh\finsh_ops.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_ops.o
- __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)
- c:/users/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)
- c:/users/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_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_ops.o
- __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)
- c:/users/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)
- c:/users/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)
- __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)
- build\kernel\components\libc\compilers\common\time.o
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_ops.o
- build\kernel\components\finsh\cmd.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_ops.o
- build\kernel\components\drivers\serial\serial.o
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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 c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __bss_end build\kernel\libcpu\arm\am335x\start_gcc.o
- __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
- __bss_start build\kernel\libcpu\arm\am335x\start_gcc.o
- __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
- __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)
- __ctors_end__ build\kernel\libcpu\arm\am335x\start_gcc.o
- __ctors_start__ build\kernel\libcpu\arm\am335x\start_gcc.o
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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
- __div0 build\kernel\libcpu\arm\common\div0.o
- __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)
- __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
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __errno build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- __fsym___cmd_cat build\kernel\components\finsh\msh_file.o
- __fsym___cmd_cat_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_cat_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_cd build\kernel\components\finsh\msh_file.o
- __fsym___cmd_cd_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_cd_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_clear build\kernel\components\finsh\cmd.o
- __fsym___cmd_clear_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_clear_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_cp build\kernel\components\finsh\msh_file.o
- __fsym___cmd_cp_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_cp_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_df build\kernel\components\finsh\msh_file.o
- __fsym___cmd_df_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_df_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_echo build\kernel\components\finsh\msh_file.o
- __fsym___cmd_echo_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_echo_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_exit build\kernel\components\finsh\msh.o
- __fsym___cmd_exit_desc build\kernel\components\finsh\msh.o
- __fsym___cmd_exit_name build\kernel\components\finsh\msh.o
- __fsym___cmd_free build\kernel\components\finsh\msh.o
- __fsym___cmd_free_desc build\kernel\components\finsh\msh.o
- __fsym___cmd_free_name build\kernel\components\finsh\msh.o
- __fsym___cmd_help build\kernel\components\finsh\msh.o
- __fsym___cmd_help_desc build\kernel\components\finsh\msh.o
- __fsym___cmd_help_name build\kernel\components\finsh\msh.o
- __fsym___cmd_list_device build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_device_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_device_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_event build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_event_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_event_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_fd build\kernel\components\dfs\src\dfs.o
- __fsym___cmd_list_fd_desc build\kernel\components\dfs\src\dfs.o
- __fsym___cmd_list_fd_name build\kernel\components\dfs\src\dfs.o
- __fsym___cmd_list_mailbox build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mailbox_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mailbox_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mempool build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mempool_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mempool_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_msgqueue build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_msgqueue_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_msgqueue_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mutex build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mutex_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_mutex_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_sem build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_sem_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_sem_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_thread build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_thread_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_thread_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_timer build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_timer_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_list_timer_name build\kernel\components\finsh\cmd.o
- __fsym___cmd_ls build\kernel\components\finsh\msh_file.o
- __fsym___cmd_ls_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_ls_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mkdir build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mkdir_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mkdir_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mkfs build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mkfs_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mkfs_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mv build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mv_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_mv_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_ps build\kernel\components\finsh\msh.o
- __fsym___cmd_ps_desc build\kernel\components\finsh\msh.o
- __fsym___cmd_ps_name build\kernel\components\finsh\msh.o
- __fsym___cmd_pwd build\kernel\components\finsh\msh_file.o
- __fsym___cmd_pwd_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_pwd_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_reboot build\applications\board.o
- __fsym___cmd_reboot_desc build\applications\board.o
- __fsym___cmd_reboot_name build\applications\board.o
- __fsym___cmd_rm build\kernel\components\finsh\msh_file.o
- __fsym___cmd_rm_desc build\kernel\components\finsh\msh_file.o
- __fsym___cmd_rm_name build\kernel\components\finsh\msh_file.o
- __fsym___cmd_version build\kernel\components\finsh\cmd.o
- __fsym___cmd_version_desc build\kernel\components\finsh\cmd.o
- __fsym___cmd_version_name build\kernel\components\finsh\cmd.o
- __fsym_cat build\kernel\components\dfs\src\dfs_file.o
- __fsym_cat_desc build\kernel\components\dfs\src\dfs_file.o
- __fsym_cat_name build\kernel\components\dfs\src\dfs_file.o
- __fsym_cd build\kernel\components\dfs\src\dfs_posix.o
- __fsym_cd_desc build\kernel\components\dfs\src\dfs_posix.o
- __fsym_cd_name build\kernel\components\dfs\src\dfs_posix.o
- __fsym_clear build\kernel\components\finsh\cmd.o
- __fsym_clear_desc build\kernel\components\finsh\cmd.o
- __fsym_clear_name build\kernel\components\finsh\cmd.o
- __fsym_copy build\kernel\components\dfs\src\dfs_file.o
- __fsym_copy_desc build\kernel\components\dfs\src\dfs_file.o
- __fsym_copy_name build\kernel\components\dfs\src\dfs_file.o
- __fsym_df build\kernel\components\dfs\src\dfs_fs.o
- __fsym_df_desc build\kernel\components\dfs\src\dfs_fs.o
- __fsym_df_name build\kernel\components\dfs\src\dfs_fs.o
- __fsym_hello build\kernel\components\finsh\cmd.o
- __fsym_hello_desc build\kernel\components\finsh\cmd.o
- __fsym_hello_name build\kernel\components\finsh\cmd.o
- __fsym_list build\kernel\components\finsh\cmd.o
- __fsym_list_desc build\kernel\components\finsh\cmd.o
- __fsym_list_device build\kernel\components\finsh\cmd.o
- __fsym_list_device_desc build\kernel\components\finsh\cmd.o
- __fsym_list_device_name build\kernel\components\finsh\cmd.o
- __fsym_list_event build\kernel\components\finsh\cmd.o
- __fsym_list_event_desc build\kernel\components\finsh\cmd.o
- __fsym_list_event_name build\kernel\components\finsh\cmd.o
- __fsym_list_mailbox build\kernel\components\finsh\cmd.o
- __fsym_list_mailbox_desc build\kernel\components\finsh\cmd.o
- __fsym_list_mailbox_name build\kernel\components\finsh\cmd.o
- __fsym_list_mem build\kernel\src\mem.o
- __fsym_list_mem_desc build\kernel\src\mem.o
- __fsym_list_mem_name build\kernel\src\mem.o
- __fsym_list_mempool build\kernel\components\finsh\cmd.o
- __fsym_list_mempool_desc build\kernel\components\finsh\cmd.o
- __fsym_list_mempool_name build\kernel\components\finsh\cmd.o
- __fsym_list_msgqueue build\kernel\components\finsh\cmd.o
- __fsym_list_msgqueue_desc build\kernel\components\finsh\cmd.o
- __fsym_list_msgqueue_name build\kernel\components\finsh\cmd.o
- __fsym_list_mutex build\kernel\components\finsh\cmd.o
- __fsym_list_mutex_desc build\kernel\components\finsh\cmd.o
- __fsym_list_mutex_name build\kernel\components\finsh\cmd.o
- __fsym_list_name build\kernel\components\finsh\cmd.o
- __fsym_list_sem build\kernel\components\finsh\cmd.o
- __fsym_list_sem_desc build\kernel\components\finsh\cmd.o
- __fsym_list_sem_name build\kernel\components\finsh\cmd.o
- __fsym_list_thread build\kernel\components\finsh\cmd.o
- __fsym_list_thread_desc build\kernel\components\finsh\cmd.o
- __fsym_list_thread_name build\kernel\components\finsh\cmd.o
- __fsym_list_timer build\kernel\components\finsh\cmd.o
- __fsym_list_timer_desc build\kernel\components\finsh\cmd.o
- __fsym_list_timer_name build\kernel\components\finsh\cmd.o
- __fsym_ls build\kernel\components\dfs\src\dfs_file.o
- __fsym_ls_desc build\kernel\components\dfs\src\dfs_file.o
- __fsym_ls_name build\kernel\components\dfs\src\dfs_file.o
- __fsym_mkdir build\kernel\components\dfs\src\dfs_posix.o
- __fsym_mkdir_desc build\kernel\components\dfs\src\dfs_posix.o
- __fsym_mkdir_name build\kernel\components\dfs\src\dfs_posix.o
- __fsym_mkfs build\kernel\components\dfs\src\dfs_fs.o
- __fsym_mkfs_desc build\kernel\components\dfs\src\dfs_fs.o
- __fsym_mkfs_name build\kernel\components\dfs\src\dfs_fs.o
- __fsym_msh build\kernel\components\finsh\msh.o
- __fsym_msh_desc build\kernel\components\finsh\msh.o
- __fsym_msh_name build\kernel\components\finsh\msh.o
- __fsym_pinGet build\kernel\components\drivers\misc\pin.o
- __fsym_pinGet_desc build\kernel\components\drivers\misc\pin.o
- __fsym_pinGet_name build\kernel\components\drivers\misc\pin.o
- __fsym_pinMode build\kernel\components\drivers\misc\pin.o
- __fsym_pinMode_desc build\kernel\components\drivers\misc\pin.o
- __fsym_pinMode_name build\kernel\components\drivers\misc\pin.o
- __fsym_pinRead build\kernel\components\drivers\misc\pin.o
- __fsym_pinRead_desc build\kernel\components\drivers\misc\pin.o
- __fsym_pinRead_name build\kernel\components\drivers\misc\pin.o
- __fsym_pinWrite build\kernel\components\drivers\misc\pin.o
- __fsym_pinWrite_desc build\kernel\components\drivers\misc\pin.o
- __fsym_pinWrite_name build\kernel\components\drivers\misc\pin.o
- __fsym_reboot build\applications\board.o
- __fsym_reboot_desc build\applications\board.o
- __fsym_reboot_name build\applications\board.o
- __fsym_rm build\kernel\components\dfs\src\dfs_file.o
- __fsym_rm_desc build\kernel\components\dfs\src\dfs_file.o
- __fsym_rm_name build\kernel\components\dfs\src\dfs_file.o
- __fsym_version build\kernel\components\finsh\cmd.o
- __fsym_version_desc build\kernel\components\finsh\cmd.o
- __fsym_version_name build\kernel\components\finsh\cmd.o
- __fsymtab_end build\kernel\components\finsh\shell.o
- __fsymtab_start build\kernel\components\finsh\shell.o
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __isleap build\kernel\components\libc\compilers\common\time.o
- __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
- __libc_init_array build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/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
- __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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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_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)
- __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)
- __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)
- __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)
- __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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __lowest_bit_bitmap build\kernel\src\kservice.o
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- __rt_ffs build\kernel\src\kservice.o
- build\kernel\src\scheduler.o
- __rt_init_dfs_init build\kernel\components\dfs\src\dfs.o
- __rt_init_finsh_system_init build\kernel\components\finsh\shell.o
- __rt_init_libc_system_init build\kernel\components\libc\compilers\newlib\libc.o
- __rt_init_rt_hw_gpio_init build\drivers\gpio.o
- __rt_init_rt_hw_serial_init build\drivers\uart.o
- __rt_init_rt_hw_timer_init build\applications\board.o
- __rt_init_rti_board_end build\kernel\src\components.o
- __rt_init_rti_board_start build\kernel\src\components.o
- __rt_init_rti_end build\kernel\src\components.o
- __rt_init_rti_start build\kernel\src\components.o
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- __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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __spm build\kernel\components\libc\compilers\common\time.o
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- __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)
- c:/users/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)
- c:/users/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)
- __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)
- __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)
- __vsym_dummy build\kernel\components\finsh\cmd.o
- __vsym_dummy_desc build\kernel\components\finsh\cmd.o
- __vsym_dummy_name build\kernel\components\finsh\cmd.o
- __vsymtab_end build\kernel\components\finsh\shell.o
- __vsymtab_start build\kernel\components\finsh\shell.o
- __wqueue_default_wake build\kernel\components\drivers\src\waitqueue.o
- _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)
- _calloc_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _close_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _execve_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _fcntl_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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
- _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)
- _fork_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _free_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _fstat_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- _getpid_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _gettimeofday_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\libc\compilers\newlib\stdio.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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
- _isatty_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _kill_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _link_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _lseek_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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
- _malloc_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- _mkdir_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- _open_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- _read_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _realloc_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _rename_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _reset build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- _rt_errno build\kernel\src\kservice.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- _sbrk_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- _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)
- _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
- _stat_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _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)
- _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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- _syscall_table_begin build\kernel\components\finsh\shell.o
- build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\cmd.o
- _syscall_table_end build\kernel\components\finsh\shell.o
- build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\cmd.o
- _system build\kernel\components\libc\compilers\newlib\syscalls.o
- _sysvar_table_begin build\kernel\components\finsh\shell.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\cmd.o
- _sysvar_table_end build\kernel\components\finsh\shell.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\cmd.o
- _times_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _timevalue build\kernel\components\libc\compilers\newlib\syscalls.o
- _unlink_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- _wait_r build\kernel\components\libc\compilers\newlib\syscalls.o
- _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)
- _write_r build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- abort build\kernel\components\libc\compilers\newlib\syscalls.o
- access build\kernel\components\dfs\src\dfs_posix.o
- asctime build\kernel\components\libc\compilers\common\time.o
- asctime_r build\kernel\components\libc\compilers\common\time.o
- 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
- 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)
- build\kernel\components\finsh\finsh_token.o
- cat build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\finsh\msh_file.o
- chdir build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\finsh\msh_file.o
- clock build\kernel\components\libc\compilers\common\time.o
- close build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- closedir build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- cmd_cat build\kernel\components\finsh\msh_file.o
- cmd_cd build\kernel\components\finsh\msh_file.o
- cmd_cp build\kernel\components\finsh\msh_file.o
- cmd_df build\kernel\components\finsh\msh_file.o
- cmd_echo build\kernel\components\finsh\msh_file.o
- cmd_free build\kernel\components\finsh\msh.o
- cmd_ls build\kernel\components\finsh\msh_file.o
- cmd_mkdir build\kernel\components\finsh\msh_file.o
- cmd_mkfs build\kernel\components\finsh\msh_file.o
- cmd_mv build\kernel\components\finsh\msh_file.o
- cmd_ps build\kernel\components\finsh\msh.o
- cmd_pwd build\kernel\components\finsh\msh_file.o
- cmd_rm build\kernel\components\finsh\msh_file.o
- copy build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\finsh\msh_file.o
- ctime build\kernel\components\libc\compilers\common\time.o
- devfs_init build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs.o
- df build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\finsh\msh_file.o
- dfs_device_fs_close build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_device_fs_getdents build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_device_fs_ioctl build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_device_fs_mount build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_device_fs_open build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_device_fs_read build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_device_fs_stat build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_device_fs_write build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_fdtable_get build\kernel\components\dfs\src\dfs.o
- dfs_file_close build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- dfs_file_flush build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_ftruncate build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_getdents build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_ioctl build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_lseek build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_open build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- dfs_file_read build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_rename build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_stat build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_unlink build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_file_write build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_filesystem_get_mounted_path build\kernel\components\dfs\src\dfs_fs.o
- dfs_filesystem_get_partition build\kernel\components\dfs\src\dfs_fs.o
- dfs_filesystem_lookup build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs.o
- dfs_init build\kernel\components\dfs\src\dfs.o
- dfs_lock build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- dfs_mkfs build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\finsh\msh_file.o
- dfs_mount build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs.o
- dfs_normalize_path build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs_file.o
- dfs_register build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- dfs_statfs build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs_posix.o
- dfs_subdir build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_file.o
- dfs_unlock build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- dfs_unmount build\kernel\components\dfs\src\dfs_fs.o
- entry build\kernel\src\components.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- exit build\kernel\components\libc\compilers\newlib\syscalls.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/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
- 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)
- build\kernel\components\libc\compilers\newlib\stdio.o
- fcntl build\kernel\components\dfs\src\dfs_posix.o
- fd_get build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- fd_is_open build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_file.o
- fd_new build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- fd_put build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- 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)
- build\kernel\components\libc\compilers\newlib\stdio.o
- filesystem_operation_table build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_fs.o
- filesystem_table build\kernel\components\dfs\src\dfs.o
- build\kernel\components\dfs\src\dfs_fs.o
- finsh_compile_pc build\kernel\components\finsh\finsh_compiler.o
- finsh_compile_sp build\kernel\components\finsh\finsh_compiler.o
- finsh_compiler_run build\kernel\components\finsh\finsh_compiler.o
- build\kernel\components\finsh\shell.o
- finsh_errno build\kernel\components\finsh\finsh_error.o
- build\kernel\components\finsh\shell.o
- finsh_error_init build\kernel\components\finsh\finsh_error.o
- build\kernel\components\finsh\finsh_init.o
- finsh_error_set build\kernel\components\finsh\finsh_error.o
- build\kernel\components\finsh\finsh_token.o
- build\kernel\components\finsh\finsh_parser.o
- build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_compiler.o
- finsh_error_string build\kernel\components\finsh\finsh_error.o
- build\kernel\components\finsh\shell.o
- finsh_flush build\kernel\components\finsh\finsh_init.o
- build\kernel\components\finsh\shell.o
- finsh_get_device build\kernel\components\finsh\shell.o
- finsh_get_echo build\kernel\components\finsh\shell.o
- finsh_get_prompt build\kernel\components\finsh\shell.o
- finsh_get_prompt_mode build\kernel\components\finsh\shell.o
- finsh_heap build\kernel\components\finsh\finsh_heap.o
- finsh_heap_allocate build\kernel\components\finsh\finsh_heap.o
- build\kernel\components\finsh\finsh_node.o
- finsh_heap_free build\kernel\components\finsh\finsh_heap.o
- finsh_heap_init build\kernel\components\finsh\finsh_heap.o
- build\kernel\components\finsh\finsh_init.o
- finsh_init build\kernel\components\finsh\finsh_init.o
- build\kernel\components\finsh\shell.o
- finsh_node_allocate build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_node_init build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_init.o
- finsh_node_new_char build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_node_new_id build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_node_new_int build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_node_new_long build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_node_new_ptr build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_node_new_string build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_parser_init build\kernel\components\finsh\finsh_parser.o
- build\kernel\components\finsh\finsh_init.o
- finsh_parser_run build\kernel\components\finsh\finsh_parser.o
- build\kernel\components\finsh\shell.o
- finsh_pc build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_ops.o
- finsh_reset build\kernel\components\finsh\finsh_init.o
- finsh_run_line build\kernel\components\finsh\shell.o
- finsh_set_device build\kernel\components\finsh\shell.o
- finsh_set_echo build\kernel\components\finsh\shell.o
- finsh_set_prompt build\kernel\components\finsh\shell.o
- finsh_set_prompt_mode build\kernel\components\finsh\shell.o
- finsh_sp build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_ops.o
- finsh_stack_bottom build\kernel\components\finsh\finsh_init.o
- build\kernel\components\finsh\shell.o
- finsh_syscall_append build\kernel\components\finsh\finsh_vm.o
- finsh_syscall_lookup build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_node.o
- finsh_system_function_init build\kernel\components\finsh\shell.o
- finsh_system_init build\kernel\components\finsh\shell.o
- finsh_system_var_init build\kernel\components\finsh\shell.o
- finsh_sysvar_append build\kernel\components\finsh\finsh_var.o
- finsh_sysvar_lookup build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_node.o
- finsh_thread_entry build\kernel\components\finsh\shell.o
- finsh_token_get_token build\kernel\components\finsh\finsh_token.o
- finsh_token_init build\kernel\components\finsh\finsh_token.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_token_token build\kernel\components\finsh\finsh_token.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_var_delete build\kernel\components\finsh\finsh_var.o
- finsh_var_init build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_init.o
- finsh_var_insert build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_parser.o
- finsh_var_lookup build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_node.o
- finsh_vm_run build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\shell.o
- finsh_vm_stack build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_init.o
- build\kernel\components\finsh\finsh_compiler.o
- flock build\kernel\components\libc\compilers\newlib\syscalls.o
- 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)
- build\kernel\components\libc\compilers\newlib\stdio.o
- 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)
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- 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)
- 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)
- fstat build\kernel\components\dfs\src\dfs_posix.o
- fsync build\kernel\components\dfs\src\dfs_posix.o
- ftruncate build\kernel\components\dfs\src\dfs_posix.o
- getcwd build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- gettimeofday build\kernel\components\libc\compilers\common\time.o
- getuid build\kernel\components\libc\compilers\newlib\syscalls.o
- global_errno build\kernel\components\finsh\finsh_error.o
- global_node_table build\kernel\components\finsh\finsh_node.o
- global_syscall_list build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\cmd.o
- global_sysvar_list build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\cmd.o
- global_variable build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_heap.o
- gmtime build\kernel\components\libc\compilers\common\time.o
- gmtime_r build\kernel\components\libc\compilers\common\time.o
- 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
- hello build\kernel\components\finsh\cmd.o
- ioctl build\kernel\components\dfs\src\dfs_posix.o
- isr_table build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\libcpu\arm\am335x\trap.o
- libc_get_time build\kernel\components\libc\compilers\newlib\syscalls.o
- libc_stdio_get_console build\kernel\components\libc\compilers\newlib\stdio.o
- libc_stdio_set_console build\kernel\components\libc\compilers\newlib\stdio.o
- build\kernel\components\libc\compilers\newlib\libc.o
- libc_system_init build\kernel\components\libc\compilers\newlib\libc.o
- list build\kernel\components\finsh\cmd.o
- list_device build\kernel\components\finsh\cmd.o
- list_event build\kernel\components\finsh\cmd.o
- list_fd build\kernel\components\dfs\src\dfs.o
- list_mailbox build\kernel\components\finsh\cmd.o
- list_mem build\kernel\src\mem.o
- build\kernel\components\finsh\msh.o
- list_mempool build\kernel\components\finsh\cmd.o
- list_msgqueue build\kernel\components\finsh\cmd.o
- list_mutex build\kernel\components\finsh\cmd.o
- list_prefix build\kernel\components\finsh\cmd.o
- build\kernel\components\finsh\shell.o
- list_sem build\kernel\components\finsh\cmd.o
- list_thread build\kernel\components\finsh\cmd.o
- build\kernel\components\finsh\msh.o
- build\kernel\libcpu\arm\am335x\trap.o
- list_timer build\kernel\components\finsh\cmd.o
- 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)
- localtime build\kernel\components\libc\compilers\common\time.o
- localtime_r build\kernel\components\libc\compilers\common\time.o
- ls build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\finsh\msh_file.o
- lseek build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- main build\applications\main.o
- build\kernel\src\components.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/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
- main_thread_entry build\kernel\src\components.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- 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)
- build\kernel\components\finsh\shell.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\ringbuffer.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_token.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_parser.o
- build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\finsh_heap.o
- build\kernel\components\finsh\finsh_compiler.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs.o
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/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
- mkdir build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\dfs\src\dfs_file.o
- mkfs build\kernel\components\dfs\src\dfs_fs.o
- mktime build\kernel\components\libc\compilers\common\time.o
- mmu_clean_dcache build\kernel\libcpu\arm\am335x\mmu.o
- mmu_clean_invalidated_cache_index build\kernel\libcpu\arm\am335x\mmu.o
- mmu_disable build\kernel\libcpu\arm\am335x\mmu.o
- mmu_disable_alignfault build\kernel\libcpu\arm\am335x\mmu.o
- mmu_disable_dcache build\kernel\libcpu\arm\am335x\mmu.o
- mmu_disable_icache build\kernel\libcpu\arm\am335x\mmu.o
- mmu_enable build\kernel\libcpu\arm\am335x\mmu.o
- mmu_enable_alignfault build\kernel\libcpu\arm\am335x\mmu.o
- mmu_enable_dcache build\kernel\libcpu\arm\am335x\mmu.o
- mmu_enable_icache build\kernel\libcpu\arm\am335x\mmu.o
- mmu_invalidate_dcache build\kernel\libcpu\arm\am335x\mmu.o
- mmu_invalidate_icache build\kernel\libcpu\arm\am335x\mmu.o
- mmu_invalidate_tlb build\kernel\libcpu\arm\am335x\mmu.o
- mmu_set_domain build\kernel\libcpu\arm\am335x\mmu.o
- mmu_setmtt build\kernel\libcpu\arm\am335x\mmu.o
- mmu_setmtts build\kernel\libcpu\arm\am335x\mmu.o
- mmu_setttbase build\kernel\libcpu\arm\am335x\mmu.o
- msh_auto_complete build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- msh_auto_complete_path build\kernel\components\finsh\msh.o
- msh_exec build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\shell.o
- msh_exec_script build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- msh_help build\kernel\components\finsh\msh.o
- msh_is_used build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- op_table build\kernel\components\finsh\finsh_ops.o
- build\kernel\components\finsh\finsh_vm.o
- open build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- opendir build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- printkc build\drivers\uart.o
- 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)
- build\kernel\components\libc\compilers\newlib\libc.o
- 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)
- build\applications\main.o
- read build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- readdir build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- rename build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- rewinddir build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\finsh\msh.o
- rm build\kernel\components\dfs\src\dfs_file.o
- rmdir build\kernel\components\dfs\src\dfs_posix.o
- rt_application_init build\kernel\src\components.o
- rt_assert_handler build\kernel\src\kservice.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\libc\compilers\common\time.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\ringbuffer.o
- build\kernel\components\drivers\src\ringblk_buf.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\components\drivers\misc\pin.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs.o
- build\kernel\libcpu\arm\am335x\cpu.o
- build\kernel\libcpu\arm\common\showmem.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\scheduler.o
- build\kernel\src\object.o
- build\kernel\src\mempool.o
- build\kernel\src\mem.o
- build\kernel\src\ipc.o
- build\kernel\src\idle.o
- build\kernel\src\device.o
- build\kernel\src\components.o
- build\drivers\uart.o
- build\drivers\gpio.o
- build\applications\board.o
- rt_assert_hook build\kernel\src\kservice.o
- rt_assert_set_hook build\kernel\src\kservice.o
- rt_calloc build\kernel\src\mem.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\dfs\src\dfs.o
- rt_completion_done build\kernel\components\drivers\src\completion.o
- build\kernel\components\drivers\serial\serial.o
- rt_completion_init build\kernel\components\drivers\src\completion.o
- build\kernel\components\drivers\serial\serial.o
- rt_completion_wait build\kernel\components\drivers\src\completion.o
- build\kernel\components\drivers\serial\serial.o
- rt_components_board_init build\kernel\src\components.o
- build\applications\board.o
- rt_components_init build\kernel\src\components.o
- rt_console_get_device build\kernel\src\kservice.o
- build\kernel\components\libc\compilers\newlib\libc.o
- build\kernel\components\finsh\shell.o
- rt_console_set_device build\kernel\src\kservice.o
- build\applications\board.o
- rt_cpu_dcache_clean_flush build\kernel\libcpu\arm\am335x\cp15_gcc.o
- rt_cpu_dcache_disable build\kernel\libcpu\arm\am335x\cp15_gcc.o
- build\kernel\libcpu\arm\am335x\mmu.o
- rt_cpu_dcache_enable build\kernel\libcpu\arm\am335x\cp15_gcc.o
- rt_cpu_get_sctlr build\kernel\libcpu\arm\am335x\cp15_gcc.o
- rt_cpu_icache_disable build\kernel\libcpu\arm\am335x\cp15_gcc.o
- build\kernel\libcpu\arm\am335x\mmu.o
- rt_cpu_icache_enable build\kernel\libcpu\arm\am335x\cp15_gcc.o
- rt_cpu_mmu_disable build\kernel\libcpu\arm\am335x\cp15_gcc.o
- build\kernel\libcpu\arm\am335x\mmu.o
- rt_cpu_mmu_enable build\kernel\libcpu\arm\am335x\cp15_gcc.o
- build\kernel\libcpu\arm\am335x\mmu.o
- rt_cpu_tlb_set build\kernel\libcpu\arm\am335x\cp15_gcc.o
- build\kernel\libcpu\arm\am335x\mmu.o
- rt_cpu_vector_get_base build\kernel\libcpu\arm\am335x\cp15_gcc.o
- rt_cpu_vector_set_base build\kernel\libcpu\arm\am335x\cp15_gcc.o
- build\kernel\libcpu\arm\am335x\interrupt.o
- rt_critical_level build\kernel\src\scheduler.o
- rt_current_priority build\kernel\src\scheduler.o
- rt_current_thread build\kernel\src\scheduler.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\src\thread.o
- rt_data_queue_deinit build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\serial\serial.o
- rt_data_queue_init build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\serial\serial.o
- rt_data_queue_len build\kernel\components\drivers\src\dataqueue.o
- rt_data_queue_peek build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\serial\serial.o
- rt_data_queue_pop build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\serial\serial.o
- rt_data_queue_push build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\serial\serial.o
- rt_data_queue_reset build\kernel\components\drivers\src\dataqueue.o
- rt_delayed_work_init build\kernel\components\drivers\src\workqueue.o
- rt_device_close build\kernel\src\device.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\src\kservice.o
- rt_device_control build\kernel\src\device.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\libc\compilers\common\time.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- rt_device_create build\kernel\src\device.o
- rt_device_destroy build\kernel\src\device.o
- rt_device_find build\kernel\src\device.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\libc\compilers\common\time.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\src\kservice.o
- rt_device_init build\kernel\src\device.o
- rt_device_init_all build\kernel\src\device.o
- rt_device_open build\kernel\src\device.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\src\kservice.o
- rt_device_pin_register build\kernel\components\drivers\misc\pin.o
- build\drivers\gpio.o
- rt_device_read build\kernel\src\device.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- rt_device_register build\kernel\src\device.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\components\drivers\misc\pin.o
- rt_device_set_rx_indicate build\kernel\src\device.o
- build\kernel\components\finsh\shell.o
- rt_device_set_tx_complete build\kernel\src\device.o
- rt_device_unregister build\kernel\src\device.o
- build\kernel\components\drivers\src\pipe.o
- rt_device_write build\kernel\src\device.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\src\kservice.o
- rt_dump_aintc build\kernel\libcpu\arm\am335x\interrupt.o
- rt_dump_isr_table build\kernel\libcpu\arm\am335x\interrupt.o
- rt_enter_critical build\kernel\src\scheduler.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs.o
- build\kernel\src\object.o
- rt_event_control build\kernel\src\ipc.o
- rt_event_create build\kernel\src\ipc.o
- rt_event_delete build\kernel\src\ipc.o
- rt_event_detach build\kernel\src\ipc.o
- rt_event_init build\kernel\src\ipc.o
- rt_event_recv build\kernel\src\ipc.o
- rt_event_send build\kernel\src\ipc.o
- rt_exit_critical build\kernel\src\scheduler.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs.o
- build\kernel\src\object.o
- rt_free build\kernel\src\mem.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\ringbuffer.o
- build\kernel\components\drivers\src\ringblk_buf.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs.o
- build\kernel\src\object.o
- build\kernel\src\mempool.o
- build\kernel\src\kservice.o
- build\kernel\src\ipc.o
- build\kernel\src\idle.o
- build\kernel\src\device.o
- rt_free_align build\kernel\src\kservice.o
- rt_free_sethook build\kernel\src\mem.o
- rt_get_errno build\kernel\src\kservice.o
- rt_hw_backtrace build\kernel\libcpu\arm\common\backtrace.o
- rt_hw_board_init build\applications\board.o
- build\kernel\src\components.o
- rt_hw_console_output build\kernel\src\kservice.o
- rt_hw_context_switch build\kernel\libcpu\arm\am335x\context_gcc.o
- build\kernel\src\scheduler.o
- rt_hw_context_switch_interrupt build\kernel\libcpu\arm\am335x\context_gcc.o
- build\kernel\src\scheduler.o
- rt_hw_context_switch_to build\kernel\libcpu\arm\am335x\context_gcc.o
- build\kernel\src\scheduler.o
- rt_hw_cpu_dcache_disable build\kernel\libcpu\arm\am335x\cpu.o
- rt_hw_cpu_dcache_enable build\kernel\libcpu\arm\am335x\cpu.o
- build\kernel\libcpu\arm\am335x\mmu.o
- rt_hw_cpu_dcache_status build\kernel\libcpu\arm\am335x\cpu.o
- rt_hw_cpu_icache_disable build\kernel\libcpu\arm\am335x\cpu.o
- rt_hw_cpu_icache_enable build\kernel\libcpu\arm\am335x\cpu.o
- build\kernel\libcpu\arm\am335x\mmu.o
- rt_hw_cpu_icache_status build\kernel\libcpu\arm\am335x\cpu.o
- rt_hw_cpu_reset build\applications\board.o
- rt_hw_cpu_shutdown build\kernel\libcpu\arm\am335x\cpu.o
- build\kernel\libcpu\arm\am335x\trap.o
- rt_hw_gpio_init build\drivers\gpio.o
- rt_hw_interrupt_ack build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\libcpu\arm\am335x\trap.o
- rt_hw_interrupt_clear build\kernel\libcpu\arm\am335x\interrupt.o
- rt_hw_interrupt_control build\kernel\libcpu\arm\am335x\interrupt.o
- build\drivers\uart.o
- build\applications\board.o
- rt_hw_interrupt_disable build\kernel\libcpu\arm\am335x\context_gcc.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\ringblk_buf.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\libcpu\arm\am335x\cpu.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\scheduler.o
- build\kernel\src\object.o
- build\kernel\src\mempool.o
- build\kernel\src\mem.o
- build\kernel\src\irq.o
- build\kernel\src\ipc.o
- build\kernel\src\idle.o
- build\kernel\src\components.o
- build\kernel\src\clock.o
- rt_hw_interrupt_enable build\kernel\libcpu\arm\am335x\context_gcc.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\ringblk_buf.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\scheduler.o
- build\kernel\src\object.o
- build\kernel\src\mempool.o
- build\kernel\src\mem.o
- build\kernel\src\irq.o
- build\kernel\src\ipc.o
- build\kernel\src\idle.o
- build\kernel\src\clock.o
- rt_hw_interrupt_get_active build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\libcpu\arm\am335x\trap.o
- rt_hw_interrupt_init build\kernel\libcpu\arm\am335x\interrupt.o
- rt_hw_interrupt_install build\kernel\libcpu\arm\am335x\interrupt.o
- build\drivers\uart.o
- build\applications\board.o
- rt_hw_interrupt_mask build\kernel\libcpu\arm\am335x\interrupt.o
- build\drivers\uart.o
- rt_hw_interrupt_trigger build\kernel\libcpu\arm\am335x\interrupt.o
- rt_hw_interrupt_umask build\kernel\libcpu\arm\am335x\interrupt.o
- build\drivers\uart.o
- build\applications\board.o
- rt_hw_mmu_init build\kernel\libcpu\arm\am335x\mmu.o
- rt_hw_serial_init build\drivers\uart.o
- rt_hw_serial_isr build\kernel\components\drivers\serial\serial.o
- build\drivers\uart.o
- rt_hw_serial_register build\kernel\components\drivers\serial\serial.o
- build\drivers\uart.o
- rt_hw_show_memory build\kernel\libcpu\arm\common\showmem.o
- rt_hw_show_register build\kernel\libcpu\arm\am335x\trap.o
- rt_hw_stack_init build\kernel\libcpu\arm\am335x\stack.o
- build\kernel\src\thread.o
- rt_hw_timer_init build\applications\board.o
- rt_hw_trap_dabt build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_hw_trap_fiq build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_hw_trap_irq build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_hw_trap_pabt build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_hw_trap_swi build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_hw_trap_udef build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_interrupt_enter build\kernel\src\irq.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_interrupt_enter_sethook build\kernel\src\irq.o
- rt_interrupt_from_thread build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\context_gcc.o
- rt_interrupt_get_nest build\kernel\src\irq.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\src\object.o
- build\kernel\src\mempool.o
- build\kernel\src\mem.o
- build\kernel\src\kservice.o
- build\kernel\src\ipc.o
- build\kernel\src\idle.o
- rt_interrupt_leave build\kernel\src\irq.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- rt_interrupt_leave_sethook build\kernel\src\irq.o
- rt_interrupt_nest build\kernel\src\irq.o
- build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\src\scheduler.o
- rt_interrupt_to_thread build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\context_gcc.o
- rt_ipc_get_highest_priority build\kernel\src\ipc.o
- rt_kprintf build\kernel\src\kservice.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs.o
- build\kernel\libcpu\arm\am335x\trap.o
- build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\libcpu\arm\am335x\cpu.o
- build\kernel\libcpu\arm\common\showmem.o
- build\kernel\libcpu\arm\common\backtrace.o
- build\kernel\src\scheduler.o
- build\kernel\src\object.o
- build\kernel\src\mempool.o
- build\kernel\src\mem.o
- build\kernel\src\ipc.o
- build\kernel\src\idle.o
- build\kernel\src\device.o
- rt_kputs build\kernel\src\kservice.o
- rt_malloc build\kernel\src\mem.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\ringbuffer.o
- build\kernel\components\drivers\src\ringblk_buf.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs.o
- build\kernel\src\thread.o
- build\kernel\src\object.o
- build\kernel\src\mempool.o
- build\kernel\src\kservice.o
- build\kernel\src\ipc.o
- build\kernel\src\device.o
- rt_malloc_align build\kernel\src\kservice.o
- rt_malloc_sethook build\kernel\src\mem.o
- rt_mb_control build\kernel\src\ipc.o
- rt_mb_create build\kernel\src\ipc.o
- rt_mb_delete build\kernel\src\ipc.o
- rt_mb_detach build\kernel\src\ipc.o
- rt_mb_init build\kernel\src\ipc.o
- rt_mb_recv build\kernel\src\ipc.o
- rt_mb_send build\kernel\src\ipc.o
- rt_mb_send_wait build\kernel\src\ipc.o
- rt_mb_urgent build\kernel\src\ipc.o
- rt_memcmp build\kernel\src\kservice.o
- rt_memcpy build\kernel\src\kservice.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\src\mem.o
- build\kernel\src\ipc.o
- rt_memmove build\kernel\src\kservice.o
- build\kernel\components\finsh\shell.o
- rt_memory_info build\kernel\src\mem.o
- rt_memset build\kernel\src\kservice.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\src\thread.o
- build\kernel\src\object.o
- build\kernel\src\mem.o
- build\kernel\src\device.o
- rt_mp_alloc build\kernel\src\mempool.o
- rt_mp_alloc_sethook build\kernel\src\mempool.o
- rt_mp_create build\kernel\src\mempool.o
- rt_mp_delete build\kernel\src\mempool.o
- rt_mp_detach build\kernel\src\mempool.o
- rt_mp_free build\kernel\src\mempool.o
- rt_mp_free_sethook build\kernel\src\mempool.o
- rt_mp_init build\kernel\src\mempool.o
- rt_mq_control build\kernel\src\ipc.o
- rt_mq_create build\kernel\src\ipc.o
- rt_mq_delete build\kernel\src\ipc.o
- rt_mq_detach build\kernel\src\ipc.o
- rt_mq_init build\kernel\src\ipc.o
- rt_mq_recv build\kernel\src\ipc.o
- rt_mq_send build\kernel\src\ipc.o
- rt_mq_send_wait build\kernel\src\ipc.o
- rt_mq_urgent build\kernel\src\ipc.o
- rt_mutex_control build\kernel\src\ipc.o
- rt_mutex_create build\kernel\src\ipc.o
- rt_mutex_delete build\kernel\src\ipc.o
- rt_mutex_detach build\kernel\src\ipc.o
- build\kernel\components\drivers\src\pipe.o
- rt_mutex_init build\kernel\src\ipc.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\dfs\src\dfs.o
- rt_mutex_release build\kernel\src\ipc.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\dfs\src\dfs.o
- rt_mutex_take build\kernel\src\ipc.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\dfs\src\dfs.o
- rt_object_allocate build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- rt_object_attach_sethook build\kernel\src\object.o
- rt_object_delete build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- build\kernel\src\idle.o
- rt_object_detach build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- build\kernel\src\device.o
- rt_object_detach_sethook build\kernel\src\object.o
- rt_object_find build\kernel\src\object.o
- build\kernel\src\thread.o
- build\kernel\src\device.o
- rt_object_get_information build\kernel\src\object.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- rt_object_get_length build\kernel\src\object.o
- rt_object_get_pointers build\kernel\src\object.o
- rt_object_get_type build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- build\kernel\src\device.o
- rt_object_init build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- build\kernel\src\device.o
- rt_object_is_systemobject build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- build\kernel\src\device.o
- rt_object_put_hook build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\ipc.o
- rt_object_put_sethook build\kernel\src\object.o
- rt_object_take_hook build\kernel\src\object.o
- build\kernel\src\timer.o
- build\kernel\src\ipc.o
- rt_object_take_sethook build\kernel\src\object.o
- rt_object_trytake_hook build\kernel\src\object.o
- build\kernel\src\ipc.o
- rt_object_trytake_sethook build\kernel\src\object.o
- rt_pin_attach_irq build\kernel\components\drivers\misc\pin.o
- rt_pin_detach_irq build\kernel\components\drivers\misc\pin.o
- rt_pin_get build\kernel\components\drivers\misc\pin.o
- rt_pin_irq_enable build\kernel\components\drivers\misc\pin.o
- rt_pin_mode build\kernel\components\drivers\misc\pin.o
- rt_pin_read build\kernel\components\drivers\misc\pin.o
- rt_pin_write build\kernel\components\drivers\misc\pin.o
- rt_pipe_close build\kernel\components\drivers\src\pipe.o
- rt_pipe_control build\kernel\components\drivers\src\pipe.o
- rt_pipe_create build\kernel\components\drivers\src\pipe.o
- rt_pipe_delete build\kernel\components\drivers\src\pipe.o
- rt_pipe_open build\kernel\components\drivers\src\pipe.o
- rt_pipe_read build\kernel\components\drivers\src\pipe.o
- rt_pipe_write build\kernel\components\drivers\src\pipe.o
- rt_rbb_blk_alloc build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_buf build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_free build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_get build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_put build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_queue_buf build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_queue_free build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_queue_get build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_queue_len build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_blk_size build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_create build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_destroy build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_get_buf_size build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_init build\kernel\components\drivers\src\ringblk_buf.o
- rt_rbb_next_blk_queue_len build\kernel\components\drivers\src\ringblk_buf.o
- rt_realloc build\kernel\src\mem.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\dfs\src\dfs.o
- rt_ringbuffer_create build\kernel\components\drivers\src\ringbuffer.o
- build\kernel\components\drivers\src\pipe.o
- rt_ringbuffer_data_len build\kernel\components\drivers\src\ringbuffer.o
- rt_ringbuffer_destroy build\kernel\components\drivers\src\ringbuffer.o
- build\kernel\components\drivers\src\pipe.o
- rt_ringbuffer_get build\kernel\components\drivers\src\ringbuffer.o
- build\kernel\components\drivers\src\pipe.o
- rt_ringbuffer_getchar build\kernel\components\drivers\src\ringbuffer.o
- rt_ringbuffer_init build\kernel\components\drivers\src\ringbuffer.o
- rt_ringbuffer_peak build\kernel\components\drivers\src\ringbuffer.o
- rt_ringbuffer_put build\kernel\components\drivers\src\ringbuffer.o
- build\kernel\components\drivers\src\pipe.o
- rt_ringbuffer_put_force build\kernel\components\drivers\src\ringbuffer.o
- rt_ringbuffer_putchar build\kernel\components\drivers\src\ringbuffer.o
- rt_ringbuffer_putchar_force build\kernel\components\drivers\src\ringbuffer.o
- rt_ringbuffer_reset build\kernel\components\drivers\src\ringbuffer.o
- rt_schedule build\kernel\src\scheduler.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- build\kernel\src\clock.o
- rt_schedule_insert_thread build\kernel\src\scheduler.o
- build\kernel\src\thread.o
- rt_schedule_remove_thread build\kernel\src\scheduler.o
- build\kernel\src\thread.o
- rt_scheduler_sethook build\kernel\src\scheduler.o
- rt_sem_control build\kernel\src\ipc.o
- rt_sem_create build\kernel\src\ipc.o
- rt_sem_delete build\kernel\src\ipc.o
- rt_sem_detach build\kernel\src\ipc.o
- rt_sem_init build\kernel\src\ipc.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\mem.o
- rt_sem_release build\kernel\src\ipc.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\mem.o
- rt_sem_take build\kernel\src\ipc.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\mem.o
- rt_sem_trytake build\kernel\src\ipc.o
- build\kernel\components\drivers\src\workqueue.o
- rt_set_errno build\kernel\src\kservice.o
- build\kernel\components\drivers\src\pipe.o
- build\kernel\components\drivers\serial\serial.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\src\mempool.o
- build\kernel\src\device.o
- rt_show_version build\kernel\src\kservice.o
- build\kernel\components\finsh\cmd.o
- build\kernel\src\components.o
- rt_snprintf build\kernel\src\kservice.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\dfs\src\dfs.o
- rt_sprintf build\kernel\src\kservice.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\src\idle.o
- rt_strcasecmp build\kernel\src\kservice.o
- rt_strcmp build\kernel\src\kservice.o
- build\kernel\components\finsh\msh_file.o
- rt_strdup build\kernel\src\kservice.o
- build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs.o
- rt_strlen build\kernel\src\kservice.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- rt_strncmp build\kernel\src\kservice.o
- build\kernel\src\object.o
- rt_strncpy build\kernel\src\kservice.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\dfs\filesystems\devfs\devfs.o
- build\kernel\src\object.o
- rt_strnlen build\kernel\src\kservice.o
- rt_strstr build\kernel\src\kservice.o
- rt_system_heap_init build\kernel\src\mem.o
- rt_system_scheduler_init build\kernel\src\scheduler.o
- build\kernel\src\components.o
- rt_system_scheduler_start build\kernel\src\scheduler.o
- build\kernel\src\components.o
- rt_system_timer_init build\kernel\src\timer.o
- build\kernel\src\components.o
- rt_system_timer_thread_init build\kernel\src\timer.o
- build\kernel\src\components.o
- rt_thread_control build\kernel\src\thread.o
- build\kernel\src\ipc.o
- rt_thread_create build\kernel\src\thread.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\components.o
- rt_thread_defunct build\kernel\src\scheduler.o
- build\kernel\src\thread.o
- build\kernel\src\idle.o
- rt_thread_delay build\kernel\src\thread.o
- rt_thread_delay_until build\kernel\src\thread.o
- rt_thread_delete build\kernel\src\thread.o
- build\kernel\components\drivers\src\workqueue.o
- rt_thread_detach build\kernel\src\thread.o
- rt_thread_exit build\kernel\src\thread.o
- rt_thread_find build\kernel\src\thread.o
- rt_thread_idle_delhook build\kernel\src\idle.o
- rt_thread_idle_excute build\kernel\src\idle.o
- rt_thread_idle_gethandler build\kernel\src\idle.o
- rt_thread_idle_init build\kernel\src\idle.o
- build\kernel\src\components.o
- rt_thread_idle_sethook build\kernel\src\idle.o
- rt_thread_init build\kernel\src\thread.o
- build\kernel\src\idle.o
- rt_thread_inited_sethook build\kernel\src\thread.o
- rt_thread_mdelay build\kernel\src\thread.o
- rt_thread_priority_table build\kernel\src\scheduler.o
- rt_thread_ready_priority_group build\kernel\src\scheduler.o
- rt_thread_resume build\kernel\src\thread.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- rt_thread_resume_sethook build\kernel\src\thread.o
- rt_thread_self build\kernel\src\thread.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\src\mempool.o
- build\kernel\src\kservice.o
- build\kernel\src\ipc.o
- build\kernel\src\clock.o
- rt_thread_sleep build\kernel\src\thread.o
- rt_thread_startup build\kernel\src\thread.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\idle.o
- build\kernel\src\components.o
- rt_thread_suspend build\kernel\src\thread.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- rt_thread_suspend_sethook build\kernel\src\thread.o
- rt_thread_switch_interrupt_flag build\kernel\libcpu\arm\am335x\interrupt.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\context_gcc.o
- rt_thread_timeout build\kernel\src\thread.o
- rt_thread_yield build\kernel\src\thread.o
- rt_tick_from_millisecond build\kernel\src\clock.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\src\thread.o
- rt_tick_get build\kernel\src\clock.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\libc\compilers\common\time.o
- build\kernel\components\finsh\cmd.o
- build\kernel\src\timer.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- rt_tick_get_millisecond build\kernel\src\clock.o
- rt_tick_increase build\kernel\src\clock.o
- build\applications\board.o
- rt_tick_set build\kernel\src\clock.o
- rt_timer_check build\kernel\src\timer.o
- build\kernel\src\clock.o
- rt_timer_control build\kernel\src\timer.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- rt_timer_create build\kernel\src\timer.o
- rt_timer_delete build\kernel\src\timer.o
- rt_timer_detach build\kernel\src\timer.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\thread.o
- rt_timer_enter_sethook build\kernel\src\timer.o
- rt_timer_exit_sethook build\kernel\src\timer.o
- rt_timer_init build\kernel\src\timer.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\thread.o
- rt_timer_next_timeout_tick build\kernel\src\timer.o
- rt_timer_start build\kernel\src\timer.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\components\drivers\src\waitqueue.o
- build\kernel\components\drivers\src\dataqueue.o
- build\kernel\components\drivers\src\completion.o
- build\kernel\src\thread.o
- build\kernel\src\mempool.o
- build\kernel\src\ipc.o
- rt_timer_stop build\kernel\src\timer.o
- build\kernel\components\drivers\src\workqueue.o
- build\kernel\src\thread.o
- rt_vsnprintf build\kernel\src\kservice.o
- rt_vsprintf build\kernel\src\kservice.o
- rt_workqueue_cancel_all_work build\kernel\components\drivers\src\workqueue.o
- rt_workqueue_cancel_work build\kernel\components\drivers\src\workqueue.o
- rt_workqueue_cancel_work_sync build\kernel\components\drivers\src\workqueue.o
- rt_workqueue_create build\kernel\components\drivers\src\workqueue.o
- rt_workqueue_critical_work build\kernel\components\drivers\src\workqueue.o
- rt_workqueue_destroy build\kernel\components\drivers\src\workqueue.o
- rt_workqueue_dowork build\kernel\components\drivers\src\workqueue.o
- rt_workqueue_submit_work build\kernel\components\drivers\src\workqueue.o
- rt_wqueue_add build\kernel\components\drivers\src\waitqueue.o
- rt_wqueue_remove build\kernel\components\drivers\src\waitqueue.o
- rt_wqueue_wait build\kernel\components\drivers\src\waitqueue.o
- rt_wqueue_wakeup build\kernel\components\drivers\src\waitqueue.o
- rtthread_startup build\kernel\src\components.o
- build\kernel\libcpu\arm\am335x\start_gcc.o
- seekdir build\kernel\components\dfs\src\dfs_posix.o
- serial1 build\drivers\uart.o
- 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)
- 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)
- build\kernel\components\libc\compilers\newlib\stdio.o
- shell build\kernel\components\finsh\shell.o
- 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)
- build\kernel\components\libc\compilers\newlib\stdio.o
- 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
- stack_start build\kernel\libcpu\arm\am335x\start_gcc.o
- stack_top build\kernel\libcpu\arm\am335x\start_gcc.o
- stat build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- statfs build\kernel\components\dfs\src\dfs_posix.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_token.o
- build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs_file.o
- build\kernel\components\dfs\src\dfs.o
- 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)
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\shell.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_token.o
- build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_fs.o
- build\kernel\components\dfs\src\dfs.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\msh.o
- build\kernel\components\finsh\cmd.o
- build\kernel\components\dfs\src\dfs_fs.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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)
- build\kernel\components\finsh\finsh_token.o
- build\kernel\components\finsh\finsh_var.o
- build\kernel\components\finsh\finsh_parser.o
- build\kernel\components\finsh\finsh_node.o
- build\kernel\components\finsh\shell.o
- build\kernel\components\dfs\src\dfs_posix.o
- 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)
- build\kernel\components\dfs\src\dfs_file.o
- 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)
- build\kernel\components\finsh\msh_file.o
- 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)
- c:/users/yaxing.chen/downloads/env_released_1.2.0/env/tools/gnu_gcc/arm_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_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)
- system_vectors build\kernel\libcpu\arm\am335x\vector_gcc.o
- build\kernel\libcpu\arm\am335x\interrupt.o
- telldir build\kernel\components\dfs\src\dfs_posix.o
- text_segment build\kernel\components\finsh\finsh_vm.o
- build\kernel\components\finsh\finsh_compiler.o
- time build\kernel\components\libc\compilers\common\time.o
- token_get_string build\kernel\components\finsh\finsh_token.o
- uart1 build\drivers\uart.o
- umask build\kernel\components\libc\compilers\newlib\syscalls.o
- unlink build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
- vector_dabt build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- vector_fiq build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- vector_irq build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- vector_pabt build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- vector_resv build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- vector_swi build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- vector_undef build\kernel\libcpu\arm\am335x\start_gcc.o
- build\kernel\libcpu\arm\am335x\vector_gcc.o
- version build\kernel\components\finsh\cmd.o
- vmm_thread build\kernel\libcpu\arm\am335x\start_gcc.o
- vmm_virq_check build\kernel\libcpu\arm\am335x\start_gcc.o
- working_directory build\kernel\components\dfs\src\dfs.o
- build\kernel\components\finsh\msh_file.o
- build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\dfs\src\dfs_file.o
- write build\kernel\components\dfs\src\dfs_posix.o
- build\kernel\components\libc\compilers\newlib\syscalls.o
- build\kernel\components\finsh\msh_file.o
|