encryption_new.build.log 669 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239
  1. 22:33:08 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  2. make clean
  3. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  4. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  5. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  6. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  7. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  8. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  9. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  10. 22:33:09 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  11. make all
  12. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  13. Generate config files...
  14. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  15. .h and .mk File build success!
  16. Generate link script files...
  17. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  18. done.
  19. Image Info file... ImageInfo.c ImageinfoGen
  20. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  21. imageInfo.c File build success!
  22. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  23. ImgInfoGen File build success!
  24. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  25. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  26. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  27. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  28. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  29. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  30. ACoreOs_cache_flush(1, 0, 0);
  31. ^
  32. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  33. UINT32 numChars = 0;
  34. ^
  35. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  36. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  37. unsigned char *readed = malloc(41);
  38. ^
  39. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  40. unsigned char *readed = malloc(41);
  41. ^
  42. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  43. memset(readed,0,41);
  44. ^
  45. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  46. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  47. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  48. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  49. /*
  50. ^
  51. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  52. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  53. #define MAX_DIRNAMES 32 /* max directory names in path*/
  54. ^
  55. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  56. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  57. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  58. #define MAX_DIRNAMES 148 /* max directory names in path */
  59. ^
  60. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  61. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  62. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  63. ^
  64. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  65. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  66. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  67. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  68. ^
  69. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  70. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  71. #define FIOUNMOUNT 39 /* unmount disk volume */
  72. ^
  73. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  74. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  75. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  76. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  77. ^
  78. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  79. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  80. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  81. ^
  82. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  83. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  84. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  85. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  86. ^
  87. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  88. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  89. #define FIONCONTIG 41 /* get size of max contig area on dev */
  90. ^
  91. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  92. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  93. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  94. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  95. ^
  96. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  97. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  98. #define FIOTRUNC 42 /* truncate file to specified length */
  99. ^
  100. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  101. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  102. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  103. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  104. ^
  105. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  106. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  107. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  108. ^
  109. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  110. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  111. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  112. #define FIOGETFL 44 /* 获得文件操作模式 */
  113. ^
  114. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  115. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  116. #define FIOTIMESET 44 /* change times on a file for utime() */
  117. ^
  118. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  119. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  120. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  121. #define FIOTIMESET 45 /* 改变文件的时间 */
  122. ^
  123. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  124. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  125. #define FIOINODETONAME 45 /* given inode number, return filename*/
  126. ^
  127. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  128. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  129. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  130. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  131. ^
  132. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  133. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:48:
  134. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  135. #define _CACHE_ALIGN_SIZE 32
  136. ^
  137. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  138. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  139. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  140. #define _CACHE_ALIGN_SIZE 16
  141. ^
  142. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:0:
  143. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  144. #define R_OK 0
  145. ^
  146. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:14:0:
  147. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  148. #define R_OK 4
  149. ^
  150. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:156:0: warning: "writel" redefined [enabled by default]
  151. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  152. ^
  153. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  154. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  155. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  156. ^
  157. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:89:0:
  158. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  159. char *PRIME_SOURCE_FILE = "primes.txt";
  160. ^
  161. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  162. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:141:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  163. for (int i = 0; i < len; i++) {
  164. ^
  165. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  166. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:271:1: warning: no return statement in function returning non-void [-Wreturn-type]
  167. }
  168. ^
  169. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  170. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:425:1: warning: no return statement in function returning non-void [-Wreturn-type]
  171. }
  172. ^
  173. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  174. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:507:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  175. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  176. ^
  177. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  178. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:646:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  179. int fd = check("ty0");
  180. ^
  181. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:768:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  182. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  183. ^
  184. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:799:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  185. flash_address + MAGIC_LENGTH + encrypted_file_size,
  186. ^
  187. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:799:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  188. flash_address + MAGIC_LENGTH + encrypted_file_size,
  189. ^
  190. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:818:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  191. flash_address + MAGIC_LENGTH + encrypted_file_size
  192. ^
  193. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:818:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  194. flash_address + MAGIC_LENGTH + encrypted_file_size
  195. ^
  196. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:819:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  197. + encrypted_key_size,
  198. ^
  199. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:829:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  200. flash_address + MAGIC_LENGTH + encrypted_file_size
  201. ^
  202. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:829:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  203. flash_address + MAGIC_LENGTH + encrypted_file_size
  204. ^
  205. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:830:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  206. + encrypted_key_size
  207. ^
  208. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:831:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  209. + sizeof(struct public_key_class),
  210. ^
  211. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:867:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  212. flash_address + MAGIC_LENGTH + encrypted_file_size
  213. ^
  214. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:867:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  215. flash_address + MAGIC_LENGTH + encrypted_file_size
  216. ^
  217. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:868:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  218. + encrypted_key_size,
  219. ^
  220. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:885:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  221. flash_address + MAGIC_LENGTH + encrypted_file_size
  222. ^
  223. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:885:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  224. flash_address + MAGIC_LENGTH + encrypted_file_size
  225. ^
  226. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:886:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  227. + encrypted_key_size + ECC_KEYSIZE,
  228. ^
  229. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  230. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:90:
  231. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  232. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  233. ^
  234. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  235. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  236. ^
  237. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:886:31: note: in expansion of macro 'ECC_KEYSIZE'
  238. + encrypted_key_size + ECC_KEYSIZE,
  239. ^
  240. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  241. #define ECC_PRV_KEY_SIZE 72
  242. ^
  243. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  244. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  245. ^
  246. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:886:31: note: in expansion of macro 'ECC_KEYSIZE'
  247. + encrypted_key_size + ECC_KEYSIZE,
  248. ^
  249. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:919:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  250. flash_address + MAGIC_LENGTH + encrypted_file_size
  251. ^
  252. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:919:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  253. flash_address + MAGIC_LENGTH + encrypted_file_size
  254. ^
  255. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:920:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  256. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  257. ^
  258. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:920:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  259. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  260. ^
  261. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:920:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  262. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  263. ^
  264. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1039:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  265. for (int i = 0; i < encrypted_file_size; i += input_length) {
  266. ^
  267. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1048:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  268. for (int i = 0; i < encrypted_file_size; i += input_length) {
  269. ^
  270. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1056:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  271. for (int i = 0; i < encrypted_file_size; i += input_length) {
  272. ^
  273. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1165:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  274. fd = check("ty0");
  275. ^
  276. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1209:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  277. for (int i = 0; i < reencrypted_file_size; i += input_length)
  278. ^
  279. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1217:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  280. for (int i = 0; i < reencrypted_file_size; i += input_length)
  281. ^
  282. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1225:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  283. for (int i = 0; i < reencrypted_file_size; i += input_length)
  284. ^
  285. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1318:12: warning: unused variable 'out_size' [-Wunused-variable]
  286. uint32_t out_size;
  287. ^
  288. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:905:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  289. uint8_t cp_mac_array[10][18] = { '0' };
  290. ^
  291. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  292. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:118:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  293. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  294. ^
  295. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:116:30: note: in definition of macro 'HEAP_ALLOC'
  296. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  297. ^
  298. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c
  299. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/aes.d" -o "src/encryption/aes.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c"
  300. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c
  301. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/cpu_endian.d" -o "src/encryption/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c"
  302. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des.c
  303. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des.d" -o "src/encryption/des.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des.c"
  304. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c
  305. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des3.d" -o "src/encryption/des3.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c"
  306. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c
  307. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecb.d" -o "src/encryption/ecb.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c"
  308. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c
  309. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc.d" -o "src/encryption/ecc.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c"
  310. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c
  311. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc_rc4.d" -o "src/encryption/ecc_rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c"
  312. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c
  313. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecdh.d" -o "src/encryption/ecdh.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c"
  314. E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  315. static void gf2field_inc(gf2elem_t x) {
  316. ^
  317. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c
  318. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rc4.d" -o "src/encryption/rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c"
  319. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c
  320. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rsa.d" -o "src/encryption/rsa.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c"
  321. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c
  322. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/zstd/zstd.d" -o "src/compress/zstd/zstd.o" "E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c"
  323. E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  324. #define CLOCKS_PER_SEC 1000
  325. ^
  326. In file included from D:/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  327. from D:/ACoreIDE/target/common/include/rtl/stdio.h:34,
  328. from E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43282:
  329. D:/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  330. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  331. ^
  332. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c
  333. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/alloc_ucl.d" -o "src/compress/ucl/alloc_ucl.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c"
  334. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c
  335. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/io.d" -o "src/compress/ucl/io.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c"
  336. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c
  337. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_99.d" -o "src/compress/ucl/n2b_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c"
  338. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c
  339. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_d.d" -o "src/compress/ucl/n2b_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c"
  340. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c
  341. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_ds.d" -o "src/compress/ucl/n2b_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c"
  342. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c
  343. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_to.d" -o "src/compress/ucl/n2b_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c"
  344. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c
  345. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_99.d" -o "src/compress/ucl/n2d_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c"
  346. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c
  347. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_d.d" -o "src/compress/ucl/n2d_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c"
  348. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c
  349. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_ds.d" -o "src/compress/ucl/n2d_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c"
  350. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c
  351. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_to.d" -o "src/compress/ucl/n2d_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c"
  352. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c
  353. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_99.d" -o "src/compress/ucl/n2e_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c"
  354. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c
  355. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_d.d" -o "src/compress/ucl/n2e_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c"
  356. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c
  357. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_ds.d" -o "src/compress/ucl/n2e_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c"
  358. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c
  359. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_to.d" -o "src/compress/ucl/n2e_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c"
  360. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c
  361. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_crc.d" -o "src/compress/ucl/ucl_crc.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c"
  362. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c
  363. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_dll.d" -o "src/compress/ucl/ucl_dll.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c"
  364. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c
  365. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_init.d" -o "src/compress/ucl/ucl_init.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c"
  366. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c
  367. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_ptr.d" -o "src/compress/ucl/ucl_ptr.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c"
  368. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c
  369. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_str.d" -o "src/compress/ucl/ucl_str.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c"
  370. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c
  371. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_util.d" -o "src/compress/ucl/ucl_util.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c"
  372. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp
  373. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/compress/lzo/minilzo.d" -o "src/compress/lzo/minilzo.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp"
  374. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  375. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  376. #pragma once
  377. ^
  378. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  379. #pragma once
  380. ^
  381. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c
  382. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/FileIO.d" -o "src/compress/lzma/FileIO.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c"
  383. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c
  384. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaCompress.d" -o "src/compress/lzma/TinyLzmaCompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c"
  385. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c
  386. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaDecompress.d" -o "src/compress/lzma/TinyLzmaDecompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c"
  387. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c: In function 'tinyLzmaDecompress':
  388. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c:482:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
  389. printf("comingg lzma1\n");
  390. ^
  391. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c
  392. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lz4/lz4.d" -o "src/compress/lz4/lz4.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c"
  393. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  394. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  395. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  396. ^
  397. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  398. LZ4_FORCE_INLINE int LZ4_compress_generic(
  399. ^
  400. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  401. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  402. ^
  403. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  404. LZ4_FORCE_INLINE int LZ4_compress_generic(
  405. ^
  406. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  407. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  408. ^
  409. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  410. LZ4_FORCE_INLINE int LZ4_compress_generic(
  411. ^
  412. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  413. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  414. ^
  415. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  416. LZ4_FORCE_INLINE int LZ4_compress_generic(
  417. ^
  418. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  419. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  420. ^
  421. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  422. LZ4_FORCE_INLINE int LZ4_compress_generic(
  423. ^
  424. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  425. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  426. ^
  427. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  428. LZ4_FORCE_INLINE int LZ4_compress_generic(
  429. ^
  430. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  431. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  432. ^
  433. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  434. LZ4_FORCE_INLINE int LZ4_compress_generic(
  435. ^
  436. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  437. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  438. ^
  439. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  440. LZ4_FORCE_INLINE int LZ4_compress_generic(
  441. ^
  442. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  443. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  444. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  445. ^
  446. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  447. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  448. ^
  449. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  450. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  451. ^
  452. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  453. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  454. ^
  455. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  456. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  457. (BYTE*)dest, NULL, 0);
  458. ^
  459. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  460. LZ4_decompress_generic(
  461. ^
  462. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  463. (BYTE*)dest, NULL, 0);
  464. ^
  465. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  466. LZ4_decompress_generic(
  467. ^
  468. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  469. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  470. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  471. ^
  472. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  473. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  474. ^
  475. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  476. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  477. ^
  478. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  479. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  480. ^
  481. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  482. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  483. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  484. ^
  485. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  486. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  487. ^
  488. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  489. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  490. ^
  491. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  492. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  493. ^
  494. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  495. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  496. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  497. ^
  498. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  499. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  500. ^
  501. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  502. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  503. ^
  504. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  505. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  506. ^
  507. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  508. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  509. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  510. ^
  511. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  512. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  513. ^
  514. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  515. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  516. ^
  517. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  518. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  519. ^
  520. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  521. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  522. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  523. ^
  524. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  525. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  526. ^
  527. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  528. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  529. ^
  530. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  531. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  532. ^
  533. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  534. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  535. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  536. ^
  537. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  538. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  539. ^
  540. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  541. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  542. ^
  543. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  544. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  545. ^
  546. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  547. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  548. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  549. ^
  550. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  551. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  552. ^
  553. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  554. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  555. ^
  556. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  557. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  558. ^
  559. Building file: E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c
  560. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/cpu_endian.d" -o "src/common/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c"
  561. Building file: E:/code/tianmai/workspace/encryption_new/src/common/debug.c
  562. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/debug.d" -o "src/common/debug.o" "E:/code/tianmai/workspace/encryption_new/src/common/debug.c"
  563. E:/code/tianmai/workspace/encryption_new/src/common/debug.c: In function 'debugDisplayArray':
  564. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  565. TRACE_PRINTF("%s", prepend);
  566. ^
  567. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  568. Building file: E:/code/tianmai/workspace/encryption_new/src/common/str.c
  569. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/str.d" -o "src/common/str.o" "E:/code/tianmai/workspace/encryption_new/src/common/str.c"
  570. Building file: E:/code/tianmai/workspace/encryption_new/.system/appComInit.c
  571. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF".system/appComInit.d" -o ".system/appComInit.o" "E:/code/tianmai/workspace/encryption_new/.system/appComInit.c"
  572. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a
  573. Invoking: GCC Archiver
  574. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a @prjObjs.lst
  575. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished\n'
  576. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished
  577. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -ID:/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.c
  578. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  579. #D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -o checkname.o
  580. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/preLinkCmds D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  581. E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a(init_test.o): In function `create_executable_memory(unsigned int, void*)':
  582. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602: undefined reference to `mmap'
  583. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602: undefined reference to `mprotect'
  584. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602: undefined reference to `munmap'
  585. make[1]: *** [E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel] Error 1
  586. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  587. make: *** [all] Error 2
  588. 22:34:07 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  589. make clean
  590. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  591. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  592. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  593. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  594. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  595. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  596. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  597. 22:34:09 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  598. make all
  599. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  600. Generate config files...
  601. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  602. .h and .mk File build success!
  603. Generate link script files...
  604. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  605. done.
  606. Image Info file... ImageInfo.c ImageinfoGen
  607. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  608. imageInfo.c File build success!
  609. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  610. ImgInfoGen File build success!
  611. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  612. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  613. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  614. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  615. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  616. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  617. ACoreOs_cache_flush(1, 0, 0);
  618. ^
  619. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  620. UINT32 numChars = 0;
  621. ^
  622. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  623. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  624. unsigned char *readed = malloc(41);
  625. ^
  626. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  627. unsigned char *readed = malloc(41);
  628. ^
  629. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  630. memset(readed,0,41);
  631. ^
  632. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  633. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  634. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  635. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  636. /*
  637. ^
  638. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  639. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  640. #define MAX_DIRNAMES 32 /* max directory names in path*/
  641. ^
  642. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  643. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  644. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  645. #define MAX_DIRNAMES 148 /* max directory names in path */
  646. ^
  647. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  648. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  649. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  650. ^
  651. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  652. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  653. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  654. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  655. ^
  656. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  657. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  658. #define FIOUNMOUNT 39 /* unmount disk volume */
  659. ^
  660. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  661. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  662. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  663. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  664. ^
  665. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  666. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  667. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  668. ^
  669. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  670. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  671. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  672. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  673. ^
  674. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  675. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  676. #define FIONCONTIG 41 /* get size of max contig area on dev */
  677. ^
  678. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  679. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  680. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  681. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  682. ^
  683. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  684. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  685. #define FIOTRUNC 42 /* truncate file to specified length */
  686. ^
  687. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  688. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  689. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  690. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  691. ^
  692. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  693. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  694. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  695. ^
  696. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  697. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  698. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  699. #define FIOGETFL 44 /* 获得文件操作模式 */
  700. ^
  701. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  702. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  703. #define FIOTIMESET 44 /* change times on a file for utime() */
  704. ^
  705. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  706. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  707. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  708. #define FIOTIMESET 45 /* 改变文件的时间 */
  709. ^
  710. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:43:0:
  711. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  712. #define FIOINODETONAME 45 /* given inode number, return filename*/
  713. ^
  714. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  715. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:31:
  716. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  717. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  718. ^
  719. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  720. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:48:
  721. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  722. #define _CACHE_ALIGN_SIZE 32
  723. ^
  724. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  725. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  726. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  727. #define _CACHE_ALIGN_SIZE 16
  728. ^
  729. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:0:
  730. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  731. #define R_OK 0
  732. ^
  733. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:14:0:
  734. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  735. #define R_OK 4
  736. ^
  737. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:156:0: warning: "writel" redefined [enabled by default]
  738. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  739. ^
  740. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  741. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  742. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  743. ^
  744. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:89:0:
  745. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  746. char *PRIME_SOURCE_FILE = "primes.txt";
  747. ^
  748. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  749. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:141:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  750. for (int i = 0; i < len; i++) {
  751. ^
  752. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  753. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:271:1: warning: no return statement in function returning non-void [-Wreturn-type]
  754. }
  755. ^
  756. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  757. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:425:1: warning: no return statement in function returning non-void [-Wreturn-type]
  758. }
  759. ^
  760. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  761. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:507:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  762. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  763. ^
  764. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  765. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:646:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  766. int fd = check("ty0");
  767. ^
  768. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:768:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  769. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  770. ^
  771. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:799:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  772. flash_address + MAGIC_LENGTH + encrypted_file_size,
  773. ^
  774. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:799:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  775. flash_address + MAGIC_LENGTH + encrypted_file_size,
  776. ^
  777. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:818:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  778. flash_address + MAGIC_LENGTH + encrypted_file_size
  779. ^
  780. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:818:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  781. flash_address + MAGIC_LENGTH + encrypted_file_size
  782. ^
  783. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:819:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  784. + encrypted_key_size,
  785. ^
  786. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:829:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  787. flash_address + MAGIC_LENGTH + encrypted_file_size
  788. ^
  789. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:829:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  790. flash_address + MAGIC_LENGTH + encrypted_file_size
  791. ^
  792. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:830:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  793. + encrypted_key_size
  794. ^
  795. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:831:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  796. + sizeof(struct public_key_class),
  797. ^
  798. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:867:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  799. flash_address + MAGIC_LENGTH + encrypted_file_size
  800. ^
  801. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:867:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  802. flash_address + MAGIC_LENGTH + encrypted_file_size
  803. ^
  804. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:868:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  805. + encrypted_key_size,
  806. ^
  807. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:885:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  808. flash_address + MAGIC_LENGTH + encrypted_file_size
  809. ^
  810. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:885:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  811. flash_address + MAGIC_LENGTH + encrypted_file_size
  812. ^
  813. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:886:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  814. + encrypted_key_size + ECC_KEYSIZE,
  815. ^
  816. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  817. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:90:
  818. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  819. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  820. ^
  821. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  822. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  823. ^
  824. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:886:31: note: in expansion of macro 'ECC_KEYSIZE'
  825. + encrypted_key_size + ECC_KEYSIZE,
  826. ^
  827. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  828. #define ECC_PRV_KEY_SIZE 72
  829. ^
  830. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  831. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  832. ^
  833. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:886:31: note: in expansion of macro 'ECC_KEYSIZE'
  834. + encrypted_key_size + ECC_KEYSIZE,
  835. ^
  836. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:919:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  837. flash_address + MAGIC_LENGTH + encrypted_file_size
  838. ^
  839. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:919:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  840. flash_address + MAGIC_LENGTH + encrypted_file_size
  841. ^
  842. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:920:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  843. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  844. ^
  845. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:920:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  846. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  847. ^
  848. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:920:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  849. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  850. ^
  851. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1039:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  852. for (int i = 0; i < encrypted_file_size; i += input_length) {
  853. ^
  854. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1048:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  855. for (int i = 0; i < encrypted_file_size; i += input_length) {
  856. ^
  857. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1056:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  858. for (int i = 0; i < encrypted_file_size; i += input_length) {
  859. ^
  860. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1165:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  861. fd = check("ty0");
  862. ^
  863. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1209:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  864. for (int i = 0; i < reencrypted_file_size; i += input_length)
  865. ^
  866. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1217:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  867. for (int i = 0; i < reencrypted_file_size; i += input_length)
  868. ^
  869. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1225:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  870. for (int i = 0; i < reencrypted_file_size; i += input_length)
  871. ^
  872. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1318:12: warning: unused variable 'out_size' [-Wunused-variable]
  873. uint32_t out_size;
  874. ^
  875. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:905:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  876. uint8_t cp_mac_array[10][18] = { '0' };
  877. ^
  878. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  879. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:118:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  880. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  881. ^
  882. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:116:30: note: in definition of macro 'HEAP_ALLOC'
  883. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  884. ^
  885. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c
  886. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/aes.d" -o "src/encryption/aes.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c"
  887. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c
  888. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/cpu_endian.d" -o "src/encryption/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c"
  889. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des.c
  890. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des.d" -o "src/encryption/des.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des.c"
  891. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c
  892. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des3.d" -o "src/encryption/des3.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c"
  893. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c
  894. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecb.d" -o "src/encryption/ecb.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c"
  895. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c
  896. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc.d" -o "src/encryption/ecc.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c"
  897. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c
  898. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc_rc4.d" -o "src/encryption/ecc_rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c"
  899. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c
  900. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecdh.d" -o "src/encryption/ecdh.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c"
  901. E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  902. static void gf2field_inc(gf2elem_t x) {
  903. ^
  904. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c
  905. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rc4.d" -o "src/encryption/rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c"
  906. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c
  907. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rsa.d" -o "src/encryption/rsa.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c"
  908. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c
  909. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/zstd/zstd.d" -o "src/compress/zstd/zstd.o" "E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c"
  910. E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  911. #define CLOCKS_PER_SEC 1000
  912. ^
  913. In file included from D:/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  914. from D:/ACoreIDE/target/common/include/rtl/stdio.h:34,
  915. from E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43282:
  916. D:/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  917. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  918. ^
  919. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c
  920. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/alloc_ucl.d" -o "src/compress/ucl/alloc_ucl.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c"
  921. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c
  922. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/io.d" -o "src/compress/ucl/io.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c"
  923. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c
  924. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_99.d" -o "src/compress/ucl/n2b_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c"
  925. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c
  926. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_d.d" -o "src/compress/ucl/n2b_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c"
  927. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c
  928. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_ds.d" -o "src/compress/ucl/n2b_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c"
  929. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c
  930. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_to.d" -o "src/compress/ucl/n2b_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c"
  931. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c
  932. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_99.d" -o "src/compress/ucl/n2d_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c"
  933. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c
  934. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_d.d" -o "src/compress/ucl/n2d_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c"
  935. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c
  936. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_ds.d" -o "src/compress/ucl/n2d_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c"
  937. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c
  938. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_to.d" -o "src/compress/ucl/n2d_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c"
  939. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c
  940. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_99.d" -o "src/compress/ucl/n2e_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c"
  941. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c
  942. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_d.d" -o "src/compress/ucl/n2e_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c"
  943. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c
  944. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_ds.d" -o "src/compress/ucl/n2e_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c"
  945. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c
  946. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_to.d" -o "src/compress/ucl/n2e_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c"
  947. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c
  948. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_crc.d" -o "src/compress/ucl/ucl_crc.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c"
  949. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c
  950. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_dll.d" -o "src/compress/ucl/ucl_dll.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c"
  951. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c
  952. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_init.d" -o "src/compress/ucl/ucl_init.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c"
  953. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c
  954. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_ptr.d" -o "src/compress/ucl/ucl_ptr.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c"
  955. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c
  956. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_str.d" -o "src/compress/ucl/ucl_str.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c"
  957. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c
  958. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_util.d" -o "src/compress/ucl/ucl_util.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c"
  959. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp
  960. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/compress/lzo/minilzo.d" -o "src/compress/lzo/minilzo.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp"
  961. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  962. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  963. #pragma once
  964. ^
  965. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  966. #pragma once
  967. ^
  968. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c
  969. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/FileIO.d" -o "src/compress/lzma/FileIO.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c"
  970. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c
  971. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaCompress.d" -o "src/compress/lzma/TinyLzmaCompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c"
  972. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c
  973. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaDecompress.d" -o "src/compress/lzma/TinyLzmaDecompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c"
  974. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c: In function 'tinyLzmaDecompress':
  975. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c:482:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
  976. printf("comingg lzma1\n");
  977. ^
  978. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c
  979. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lz4/lz4.d" -o "src/compress/lz4/lz4.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c"
  980. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  981. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  982. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  983. ^
  984. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  985. LZ4_FORCE_INLINE int LZ4_compress_generic(
  986. ^
  987. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  988. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  989. ^
  990. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  991. LZ4_FORCE_INLINE int LZ4_compress_generic(
  992. ^
  993. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  994. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  995. ^
  996. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  997. LZ4_FORCE_INLINE int LZ4_compress_generic(
  998. ^
  999. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1000. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  1001. ^
  1002. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1003. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1004. ^
  1005. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1006. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  1007. ^
  1008. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1009. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1010. ^
  1011. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1012. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  1013. ^
  1014. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1015. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1016. ^
  1017. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1018. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  1019. ^
  1020. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1021. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1022. ^
  1023. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1024. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  1025. ^
  1026. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1027. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1028. ^
  1029. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  1030. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1031. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  1032. ^
  1033. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1034. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1035. ^
  1036. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1037. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  1038. ^
  1039. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1040. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1041. ^
  1042. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  1043. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  1044. (BYTE*)dest, NULL, 0);
  1045. ^
  1046. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1047. LZ4_decompress_generic(
  1048. ^
  1049. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  1050. (BYTE*)dest, NULL, 0);
  1051. ^
  1052. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  1053. LZ4_decompress_generic(
  1054. ^
  1055. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  1056. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1057. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1058. ^
  1059. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1060. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1061. ^
  1062. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1063. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1064. ^
  1065. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1066. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1067. ^
  1068. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  1069. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1070. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1071. ^
  1072. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1073. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1074. ^
  1075. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1076. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1077. ^
  1078. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1079. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1080. ^
  1081. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  1082. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1083. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  1084. ^
  1085. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1086. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1087. ^
  1088. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1089. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  1090. ^
  1091. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1092. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1093. ^
  1094. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  1095. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1096. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  1097. ^
  1098. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1099. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1100. ^
  1101. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1102. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  1103. ^
  1104. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1105. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1106. ^
  1107. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  1108. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1109. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  1110. ^
  1111. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1112. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1113. ^
  1114. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1115. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  1116. ^
  1117. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1118. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1119. ^
  1120. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  1121. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1122. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  1123. ^
  1124. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1125. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1126. ^
  1127. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1128. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  1129. ^
  1130. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1131. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1132. ^
  1133. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  1134. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1135. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  1136. ^
  1137. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1138. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1139. ^
  1140. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1141. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  1142. ^
  1143. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1144. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1145. ^
  1146. Building file: E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c
  1147. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/cpu_endian.d" -o "src/common/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c"
  1148. Building file: E:/code/tianmai/workspace/encryption_new/src/common/debug.c
  1149. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/debug.d" -o "src/common/debug.o" "E:/code/tianmai/workspace/encryption_new/src/common/debug.c"
  1150. E:/code/tianmai/workspace/encryption_new/src/common/debug.c: In function 'debugDisplayArray':
  1151. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  1152. TRACE_PRINTF("%s", prepend);
  1153. ^
  1154. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  1155. Building file: E:/code/tianmai/workspace/encryption_new/src/common/str.c
  1156. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/str.d" -o "src/common/str.o" "E:/code/tianmai/workspace/encryption_new/src/common/str.c"
  1157. Building file: E:/code/tianmai/workspace/encryption_new/.system/appComInit.c
  1158. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF".system/appComInit.d" -o ".system/appComInit.o" "E:/code/tianmai/workspace/encryption_new/.system/appComInit.c"
  1159. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a
  1160. Invoking: GCC Archiver
  1161. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a @prjObjs.lst
  1162. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished\n'
  1163. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished
  1164. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -ID:/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.c
  1165. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  1166. #D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -o checkname.o
  1167. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/preLinkCmds D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  1168. E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a(init_test.o): In function `create_executable_memory(unsigned int, void*)':
  1169. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602: undefined reference to `mmap'
  1170. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602: undefined reference to `mprotect'
  1171. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602: undefined reference to `munmap'
  1172. make[1]: *** [E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel] Error 1
  1173. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1174. make: *** [all] Error 2
  1175. 22:47:00 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  1176. make clean
  1177. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  1178. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1179. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  1180. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  1181. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  1182. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1183. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  1184. 22:47:01 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  1185. make all
  1186. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  1187. Generate config files...
  1188. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  1189. .h and .mk File build success!
  1190. Generate link script files...
  1191. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  1192. done.
  1193. Image Info file... ImageInfo.c ImageinfoGen
  1194. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  1195. imageInfo.c File build success!
  1196. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  1197. ImgInfoGen File build success!
  1198. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  1199. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1200. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  1201. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  1202. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  1203. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  1204. ACoreOs_cache_flush(1, 0, 0);
  1205. ^
  1206. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  1207. UINT32 numChars = 0;
  1208. ^
  1209. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  1210. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  1211. unsigned char *readed = malloc(41);
  1212. ^
  1213. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  1214. unsigned char *readed = malloc(41);
  1215. ^
  1216. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  1217. memset(readed,0,41);
  1218. ^
  1219. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  1220. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  1221. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  1222. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  1223. /*
  1224. ^
  1225. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1226. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  1227. #define MAX_DIRNAMES 32 /* max directory names in path*/
  1228. ^
  1229. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1230. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1231. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  1232. #define MAX_DIRNAMES 148 /* max directory names in path */
  1233. ^
  1234. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1235. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  1236. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  1237. ^
  1238. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1239. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1240. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  1241. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  1242. ^
  1243. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1244. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  1245. #define FIOUNMOUNT 39 /* unmount disk volume */
  1246. ^
  1247. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1248. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1249. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  1250. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  1251. ^
  1252. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1253. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  1254. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  1255. ^
  1256. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1257. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1258. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  1259. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  1260. ^
  1261. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1262. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  1263. #define FIONCONTIG 41 /* get size of max contig area on dev */
  1264. ^
  1265. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1266. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1267. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  1268. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  1269. ^
  1270. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1271. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  1272. #define FIOTRUNC 42 /* truncate file to specified length */
  1273. ^
  1274. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1275. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1276. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  1277. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  1278. ^
  1279. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1280. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  1281. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  1282. ^
  1283. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1284. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1285. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  1286. #define FIOGETFL 44 /* 获得文件操作模式 */
  1287. ^
  1288. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1289. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  1290. #define FIOTIMESET 44 /* change times on a file for utime() */
  1291. ^
  1292. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1293. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1294. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  1295. #define FIOTIMESET 45 /* 改变文件的时间 */
  1296. ^
  1297. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1298. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  1299. #define FIOINODETONAME 45 /* given inode number, return filename*/
  1300. ^
  1301. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1302. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1303. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  1304. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  1305. ^
  1306. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  1307. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  1308. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  1309. #define _CACHE_ALIGN_SIZE 32
  1310. ^
  1311. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  1312. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:28:
  1313. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  1314. #define _CACHE_ALIGN_SIZE 16
  1315. ^
  1316. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:98:0:
  1317. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  1318. #define R_OK 0
  1319. ^
  1320. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:26:0:
  1321. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  1322. #define R_OK 4
  1323. ^
  1324. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:146:0: warning: "writel" redefined [enabled by default]
  1325. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  1326. ^
  1327. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:23:0:
  1328. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  1329. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  1330. ^
  1331. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:79:0:
  1332. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1333. char *PRIME_SOURCE_FILE = "primes.txt";
  1334. ^
  1335. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  1336. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:131:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1337. for (int i = 0; i < len; i++) {
  1338. ^
  1339. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  1340. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:261:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1341. }
  1342. ^
  1343. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  1344. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:415:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1345. }
  1346. ^
  1347. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  1348. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:497:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  1349. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  1350. ^
  1351. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void platform_memory_init()':
  1352. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:565:5: error: 'MPU' was not declared in this scope
  1353. MPU->CTRL = 0; // 禁用 MPU
  1354. ^
  1355. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:578:11: error: '__DSB' was not declared in this scope
  1356. __DSB();
  1357. ^
  1358. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:579:11: error: '__ISB' was not declared in this scope
  1359. __ISB();
  1360. ^
  1361. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void execute_at_address(uint32_t, const uint8_t*, size_t)':
  1362. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:585:25: error: 'CACHE' was not declared in this scope
  1363. uint32_t ctrl_reg = CACHE->CTRL;
  1364. ^
  1365. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:586:31: error: 'CACHE_ENABLE' was not declared in this scope
  1366. CACHE->CTRL = ctrl_reg & ~CACHE_ENABLE;
  1367. ^
  1368. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602:11: error: '__DSB' was not declared in this scope
  1369. __DSB();
  1370. ^
  1371. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:603:11: error: '__ISB' was not declared in this scope
  1372. __ISB();
  1373. ^
  1374. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  1375. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:625:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1376. int fd = check("ty0");
  1377. ^
  1378. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1379. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  1380. ^
  1381. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:778:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1382. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1383. ^
  1384. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:778:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1385. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1386. ^
  1387. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:797:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1388. flash_address + MAGIC_LENGTH + encrypted_file_size
  1389. ^
  1390. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:797:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1391. flash_address + MAGIC_LENGTH + encrypted_file_size
  1392. ^
  1393. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:798:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1394. + encrypted_key_size,
  1395. ^
  1396. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:808:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1397. flash_address + MAGIC_LENGTH + encrypted_file_size
  1398. ^
  1399. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:808:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1400. flash_address + MAGIC_LENGTH + encrypted_file_size
  1401. ^
  1402. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:809:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1403. + encrypted_key_size
  1404. ^
  1405. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:810:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1406. + sizeof(struct public_key_class),
  1407. ^
  1408. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:846:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1409. flash_address + MAGIC_LENGTH + encrypted_file_size
  1410. ^
  1411. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:846:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1412. flash_address + MAGIC_LENGTH + encrypted_file_size
  1413. ^
  1414. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:847:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1415. + encrypted_key_size,
  1416. ^
  1417. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:864:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1418. flash_address + MAGIC_LENGTH + encrypted_file_size
  1419. ^
  1420. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:864:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1421. flash_address + MAGIC_LENGTH + encrypted_file_size
  1422. ^
  1423. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:865:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1424. + encrypted_key_size + ECC_KEYSIZE,
  1425. ^
  1426. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  1427. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:80:
  1428. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1429. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  1430. ^
  1431. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  1432. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1433. ^
  1434. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:865:31: note: in expansion of macro 'ECC_KEYSIZE'
  1435. + encrypted_key_size + ECC_KEYSIZE,
  1436. ^
  1437. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1438. #define ECC_PRV_KEY_SIZE 72
  1439. ^
  1440. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  1441. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1442. ^
  1443. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:865:31: note: in expansion of macro 'ECC_KEYSIZE'
  1444. + encrypted_key_size + ECC_KEYSIZE,
  1445. ^
  1446. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:898:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1447. flash_address + MAGIC_LENGTH + encrypted_file_size
  1448. ^
  1449. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:898:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1450. flash_address + MAGIC_LENGTH + encrypted_file_size
  1451. ^
  1452. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:899:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1453. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1454. ^
  1455. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:899:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1456. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1457. ^
  1458. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:899:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1459. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1460. ^
  1461. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1018:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1462. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1463. ^
  1464. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1027:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1465. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1466. ^
  1467. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1035:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1468. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1469. ^
  1470. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1144:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1471. fd = check("ty0");
  1472. ^
  1473. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1188:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1474. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1475. ^
  1476. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1196:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1477. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1478. ^
  1479. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1204:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1480. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1481. ^
  1482. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1297:12: warning: unused variable 'out_size' [-Wunused-variable]
  1483. uint32_t out_size;
  1484. ^
  1485. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1462:75: error: invalid conversion from 'uint8_t* {aka unsigned char*}' to 'uint32_t {aka unsigned int}' [-fpermissive]
  1486. execute_at_address(initial_file_array, initial_file_size, (void *)run_add);
  1487. ^
  1488. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:583:6: error: initializing argument 1 of 'void execute_at_address(uint32_t, const uint8_t*, size_t)' [-fpermissive]
  1489. void execute_at_address(uint32_t address, const uint8_t* binary, size_t size) {
  1490. ^
  1491. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1462:75: error: invalid conversion from 'uint32_t {aka unsigned int}' to 'const uint8_t* {aka const unsigned char*}' [-fpermissive]
  1492. execute_at_address(initial_file_array, initial_file_size, (void *)run_add);
  1493. ^
  1494. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:583:6: error: initializing argument 2 of 'void execute_at_address(uint32_t, const uint8_t*, size_t)' [-fpermissive]
  1495. void execute_at_address(uint32_t address, const uint8_t* binary, size_t size) {
  1496. ^
  1497. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1462:75: error: invalid conversion from 'void*' to 'size_t {aka unsigned int}' [-fpermissive]
  1498. execute_at_address(initial_file_array, initial_file_size, (void *)run_add);
  1499. ^
  1500. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:583:6: error: initializing argument 3 of 'void execute_at_address(uint32_t, const uint8_t*, size_t)' [-fpermissive]
  1501. void execute_at_address(uint32_t address, const uint8_t* binary, size_t size) {
  1502. ^
  1503. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:884:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  1504. uint8_t cp_mac_array[10][18] = { '0' };
  1505. ^
  1506. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  1507. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  1508. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  1509. ^
  1510. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  1511. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  1512. ^
  1513. make[1]: *** [src/init_test.o] Error 1
  1514. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1515. make: *** [all] Error 2
  1516. 22:47:48 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  1517. make clean
  1518. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  1519. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1520. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  1521. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  1522. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  1523. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1524. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  1525. 22:47:49 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  1526. make all
  1527. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  1528. Generate config files...
  1529. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  1530. .h and .mk File build success!
  1531. Generate link script files...
  1532. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  1533. done.
  1534. Image Info file... ImageInfo.c ImageinfoGen
  1535. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  1536. imageInfo.c File build success!
  1537. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  1538. ImgInfoGen File build success!
  1539. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  1540. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1541. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  1542. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  1543. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  1544. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  1545. ACoreOs_cache_flush(1, 0, 0);
  1546. ^
  1547. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  1548. UINT32 numChars = 0;
  1549. ^
  1550. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  1551. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  1552. unsigned char *readed = malloc(41);
  1553. ^
  1554. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  1555. unsigned char *readed = malloc(41);
  1556. ^
  1557. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  1558. memset(readed,0,41);
  1559. ^
  1560. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  1561. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  1562. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  1563. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  1564. /*
  1565. ^
  1566. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1567. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  1568. #define MAX_DIRNAMES 32 /* max directory names in path*/
  1569. ^
  1570. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1571. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1572. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  1573. #define MAX_DIRNAMES 148 /* max directory names in path */
  1574. ^
  1575. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1576. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  1577. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  1578. ^
  1579. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1580. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1581. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  1582. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  1583. ^
  1584. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1585. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  1586. #define FIOUNMOUNT 39 /* unmount disk volume */
  1587. ^
  1588. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1589. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1590. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  1591. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  1592. ^
  1593. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1594. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  1595. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  1596. ^
  1597. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1598. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1599. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  1600. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  1601. ^
  1602. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1603. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  1604. #define FIONCONTIG 41 /* get size of max contig area on dev */
  1605. ^
  1606. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1607. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1608. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  1609. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  1610. ^
  1611. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1612. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  1613. #define FIOTRUNC 42 /* truncate file to specified length */
  1614. ^
  1615. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1616. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1617. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  1618. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  1619. ^
  1620. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1621. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  1622. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  1623. ^
  1624. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1625. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1626. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  1627. #define FIOGETFL 44 /* 获得文件操作模式 */
  1628. ^
  1629. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1630. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  1631. #define FIOTIMESET 44 /* change times on a file for utime() */
  1632. ^
  1633. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1634. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1635. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  1636. #define FIOTIMESET 45 /* 改变文件的时间 */
  1637. ^
  1638. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1639. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  1640. #define FIOINODETONAME 45 /* given inode number, return filename*/
  1641. ^
  1642. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1643. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1644. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  1645. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  1646. ^
  1647. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  1648. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  1649. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  1650. #define _CACHE_ALIGN_SIZE 32
  1651. ^
  1652. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  1653. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:28:
  1654. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  1655. #define _CACHE_ALIGN_SIZE 16
  1656. ^
  1657. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:98:0:
  1658. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  1659. #define R_OK 0
  1660. ^
  1661. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:26:0:
  1662. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  1663. #define R_OK 4
  1664. ^
  1665. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:146:0: warning: "writel" redefined [enabled by default]
  1666. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  1667. ^
  1668. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:23:0:
  1669. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  1670. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  1671. ^
  1672. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:79:0:
  1673. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1674. char *PRIME_SOURCE_FILE = "primes.txt";
  1675. ^
  1676. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  1677. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:131:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1678. for (int i = 0; i < len; i++) {
  1679. ^
  1680. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  1681. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:261:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1682. }
  1683. ^
  1684. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  1685. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:415:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1686. }
  1687. ^
  1688. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  1689. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:497:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  1690. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  1691. ^
  1692. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void platform_memory_init()':
  1693. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:565:5: error: 'MPU' was not declared in this scope
  1694. MPU->CTRL = 0; // 禁用 MPU
  1695. ^
  1696. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:578:11: error: '__DSB' was not declared in this scope
  1697. __DSB();
  1698. ^
  1699. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:579:11: error: '__ISB' was not declared in this scope
  1700. __ISB();
  1701. ^
  1702. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void execute_at_address(uint32_t, const uint8_t*, size_t)':
  1703. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:585:25: error: 'CACHE' was not declared in this scope
  1704. uint32_t ctrl_reg = CACHE->CTRL;
  1705. ^
  1706. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:586:31: error: 'CACHE_ENABLE' was not declared in this scope
  1707. CACHE->CTRL = ctrl_reg & ~CACHE_ENABLE;
  1708. ^
  1709. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:602:11: error: '__DSB' was not declared in this scope
  1710. __DSB();
  1711. ^
  1712. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:603:11: error: '__ISB' was not declared in this scope
  1713. __ISB();
  1714. ^
  1715. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  1716. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:625:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1717. int fd = check("ty0");
  1718. ^
  1719. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1720. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  1721. ^
  1722. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:778:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1723. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1724. ^
  1725. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:778:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1726. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1727. ^
  1728. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:797:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1729. flash_address + MAGIC_LENGTH + encrypted_file_size
  1730. ^
  1731. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:797:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1732. flash_address + MAGIC_LENGTH + encrypted_file_size
  1733. ^
  1734. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:798:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1735. + encrypted_key_size,
  1736. ^
  1737. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:808:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1738. flash_address + MAGIC_LENGTH + encrypted_file_size
  1739. ^
  1740. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:808:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1741. flash_address + MAGIC_LENGTH + encrypted_file_size
  1742. ^
  1743. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:809:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1744. + encrypted_key_size
  1745. ^
  1746. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:810:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1747. + sizeof(struct public_key_class),
  1748. ^
  1749. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:846:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1750. flash_address + MAGIC_LENGTH + encrypted_file_size
  1751. ^
  1752. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:846:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1753. flash_address + MAGIC_LENGTH + encrypted_file_size
  1754. ^
  1755. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:847:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1756. + encrypted_key_size,
  1757. ^
  1758. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:864:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1759. flash_address + MAGIC_LENGTH + encrypted_file_size
  1760. ^
  1761. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:864:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1762. flash_address + MAGIC_LENGTH + encrypted_file_size
  1763. ^
  1764. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:865:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1765. + encrypted_key_size + ECC_KEYSIZE,
  1766. ^
  1767. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  1768. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:80:
  1769. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1770. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  1771. ^
  1772. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  1773. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1774. ^
  1775. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:865:31: note: in expansion of macro 'ECC_KEYSIZE'
  1776. + encrypted_key_size + ECC_KEYSIZE,
  1777. ^
  1778. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1779. #define ECC_PRV_KEY_SIZE 72
  1780. ^
  1781. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  1782. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1783. ^
  1784. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:865:31: note: in expansion of macro 'ECC_KEYSIZE'
  1785. + encrypted_key_size + ECC_KEYSIZE,
  1786. ^
  1787. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:898:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1788. flash_address + MAGIC_LENGTH + encrypted_file_size
  1789. ^
  1790. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:898:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1791. flash_address + MAGIC_LENGTH + encrypted_file_size
  1792. ^
  1793. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:899:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1794. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1795. ^
  1796. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:899:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1797. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1798. ^
  1799. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:899:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1800. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1801. ^
  1802. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1018:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1803. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1804. ^
  1805. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1027:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1806. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1807. ^
  1808. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1035:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1809. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1810. ^
  1811. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1144:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1812. fd = check("ty0");
  1813. ^
  1814. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1188:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1815. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1816. ^
  1817. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1196:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1818. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1819. ^
  1820. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1204:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1821. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1822. ^
  1823. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1297:12: warning: unused variable 'out_size' [-Wunused-variable]
  1824. uint32_t out_size;
  1825. ^
  1826. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1462:64: error: 'load_and_execute' was not declared in this scope
  1827. load_and_execute(run_add,initial_file_array, initial_file_size);
  1828. ^
  1829. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:884:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  1830. uint8_t cp_mac_array[10][18] = { '0' };
  1831. ^
  1832. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  1833. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  1834. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  1835. ^
  1836. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  1837. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  1838. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1839. ^
  1840. make[1]: *** [src/init_test.o] Error 1
  1841. make: *** [all] Error 2
  1842. 22:50:10 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  1843. make clean
  1844. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  1845. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1846. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  1847. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  1848. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  1849. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1850. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  1851. 22:50:11 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  1852. make all
  1853. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  1854. Generate config files...
  1855. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  1856. .h and .mk File build success!
  1857. Generate link script files...
  1858. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  1859. done.
  1860. Image Info file... ImageInfo.c ImageinfoGen
  1861. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  1862. imageInfo.c File build success!
  1863. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  1864. ImgInfoGen File build success!
  1865. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  1866. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  1867. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  1868. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  1869. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  1870. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  1871. ACoreOs_cache_flush(1, 0, 0);
  1872. ^
  1873. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  1874. UINT32 numChars = 0;
  1875. ^
  1876. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  1877. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  1878. unsigned char *readed = malloc(41);
  1879. ^
  1880. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  1881. unsigned char *readed = malloc(41);
  1882. ^
  1883. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  1884. memset(readed,0,41);
  1885. ^
  1886. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  1887. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  1888. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  1889. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  1890. /*
  1891. ^
  1892. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1893. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  1894. #define MAX_DIRNAMES 32 /* max directory names in path*/
  1895. ^
  1896. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1897. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1898. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  1899. #define MAX_DIRNAMES 148 /* max directory names in path */
  1900. ^
  1901. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1902. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  1903. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  1904. ^
  1905. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1906. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1907. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  1908. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  1909. ^
  1910. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1911. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  1912. #define FIOUNMOUNT 39 /* unmount disk volume */
  1913. ^
  1914. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1915. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1916. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  1917. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  1918. ^
  1919. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1920. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  1921. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  1922. ^
  1923. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1924. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1925. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  1926. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  1927. ^
  1928. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1929. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  1930. #define FIONCONTIG 41 /* get size of max contig area on dev */
  1931. ^
  1932. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1933. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1934. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  1935. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  1936. ^
  1937. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1938. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  1939. #define FIOTRUNC 42 /* truncate file to specified length */
  1940. ^
  1941. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1942. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1943. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  1944. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  1945. ^
  1946. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1947. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  1948. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  1949. ^
  1950. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1951. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1952. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  1953. #define FIOGETFL 44 /* 获得文件操作模式 */
  1954. ^
  1955. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1956. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  1957. #define FIOTIMESET 44 /* change times on a file for utime() */
  1958. ^
  1959. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1960. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1961. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  1962. #define FIOTIMESET 45 /* 改变文件的时间 */
  1963. ^
  1964. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  1965. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  1966. #define FIOINODETONAME 45 /* given inode number, return filename*/
  1967. ^
  1968. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1969. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  1970. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  1971. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  1972. ^
  1973. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  1974. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  1975. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  1976. #define _CACHE_ALIGN_SIZE 32
  1977. ^
  1978. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  1979. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:28:
  1980. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  1981. #define _CACHE_ALIGN_SIZE 16
  1982. ^
  1983. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:98:0:
  1984. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  1985. #define R_OK 0
  1986. ^
  1987. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:26:0:
  1988. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  1989. #define R_OK 4
  1990. ^
  1991. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:146:0: warning: "writel" redefined [enabled by default]
  1992. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  1993. ^
  1994. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:23:0:
  1995. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  1996. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  1997. ^
  1998. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:79:0:
  1999. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  2000. char *PRIME_SOURCE_FILE = "primes.txt";
  2001. ^
  2002. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  2003. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:131:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2004. for (int i = 0; i < len; i++) {
  2005. ^
  2006. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  2007. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:261:1: warning: no return statement in function returning non-void [-Wreturn-type]
  2008. }
  2009. ^
  2010. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  2011. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:415:1: warning: no return statement in function returning non-void [-Wreturn-type]
  2012. }
  2013. ^
  2014. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  2015. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:497:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  2016. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  2017. ^
  2018. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  2019. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:657:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  2020. int fd = check("ty0");
  2021. ^
  2022. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:779:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2023. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  2024. ^
  2025. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:810:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2026. flash_address + MAGIC_LENGTH + encrypted_file_size,
  2027. ^
  2028. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:810:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2029. flash_address + MAGIC_LENGTH + encrypted_file_size,
  2030. ^
  2031. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:829:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2032. flash_address + MAGIC_LENGTH + encrypted_file_size
  2033. ^
  2034. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:829:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2035. flash_address + MAGIC_LENGTH + encrypted_file_size
  2036. ^
  2037. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:830:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2038. + encrypted_key_size,
  2039. ^
  2040. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:840:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2041. flash_address + MAGIC_LENGTH + encrypted_file_size
  2042. ^
  2043. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:840:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2044. flash_address + MAGIC_LENGTH + encrypted_file_size
  2045. ^
  2046. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:841:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2047. + encrypted_key_size
  2048. ^
  2049. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:842:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2050. + sizeof(struct public_key_class),
  2051. ^
  2052. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:878:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2053. flash_address + MAGIC_LENGTH + encrypted_file_size
  2054. ^
  2055. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:878:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2056. flash_address + MAGIC_LENGTH + encrypted_file_size
  2057. ^
  2058. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:879:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2059. + encrypted_key_size,
  2060. ^
  2061. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:896:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2062. flash_address + MAGIC_LENGTH + encrypted_file_size
  2063. ^
  2064. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:896:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2065. flash_address + MAGIC_LENGTH + encrypted_file_size
  2066. ^
  2067. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:897:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2068. + encrypted_key_size + ECC_KEYSIZE,
  2069. ^
  2070. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  2071. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:80:
  2072. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2073. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  2074. ^
  2075. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  2076. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  2077. ^
  2078. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:897:31: note: in expansion of macro 'ECC_KEYSIZE'
  2079. + encrypted_key_size + ECC_KEYSIZE,
  2080. ^
  2081. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2082. #define ECC_PRV_KEY_SIZE 72
  2083. ^
  2084. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  2085. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  2086. ^
  2087. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:897:31: note: in expansion of macro 'ECC_KEYSIZE'
  2088. + encrypted_key_size + ECC_KEYSIZE,
  2089. ^
  2090. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:930:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2091. flash_address + MAGIC_LENGTH + encrypted_file_size
  2092. ^
  2093. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:930:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2094. flash_address + MAGIC_LENGTH + encrypted_file_size
  2095. ^
  2096. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:931:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2097. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  2098. ^
  2099. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:931:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2100. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  2101. ^
  2102. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:931:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2103. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  2104. ^
  2105. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1050:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2106. for (int i = 0; i < encrypted_file_size; i += input_length) {
  2107. ^
  2108. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1059:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2109. for (int i = 0; i < encrypted_file_size; i += input_length) {
  2110. ^
  2111. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1067:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2112. for (int i = 0; i < encrypted_file_size; i += input_length) {
  2113. ^
  2114. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1176:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  2115. fd = check("ty0");
  2116. ^
  2117. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1220:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2118. for (int i = 0; i < reencrypted_file_size; i += input_length)
  2119. ^
  2120. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1228:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2121. for (int i = 0; i < reencrypted_file_size; i += input_length)
  2122. ^
  2123. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1236:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2124. for (int i = 0; i < reencrypted_file_size; i += input_length)
  2125. ^
  2126. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1329:12: warning: unused variable 'out_size' [-Wunused-variable]
  2127. uint32_t out_size;
  2128. ^
  2129. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:916:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  2130. uint8_t cp_mac_array[10][18] = { '0' };
  2131. ^
  2132. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  2133. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  2134. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  2135. ^
  2136. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  2137. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  2138. ^
  2139. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c
  2140. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/aes.d" -o "src/encryption/aes.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c"
  2141. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c
  2142. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/cpu_endian.d" -o "src/encryption/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c"
  2143. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des.c
  2144. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des.d" -o "src/encryption/des.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des.c"
  2145. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c
  2146. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des3.d" -o "src/encryption/des3.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c"
  2147. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c
  2148. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecb.d" -o "src/encryption/ecb.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c"
  2149. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c
  2150. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc.d" -o "src/encryption/ecc.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c"
  2151. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c
  2152. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc_rc4.d" -o "src/encryption/ecc_rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c"
  2153. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c
  2154. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecdh.d" -o "src/encryption/ecdh.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c"
  2155. E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  2156. static void gf2field_inc(gf2elem_t x) {
  2157. ^
  2158. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c
  2159. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rc4.d" -o "src/encryption/rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c"
  2160. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c
  2161. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rsa.d" -o "src/encryption/rsa.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c"
  2162. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c
  2163. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/zstd/zstd.d" -o "src/compress/zstd/zstd.o" "E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c"
  2164. E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  2165. #define CLOCKS_PER_SEC 1000
  2166. ^
  2167. In file included from D:/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  2168. from D:/ACoreIDE/target/common/include/rtl/stdio.h:34,
  2169. from E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43282:
  2170. D:/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  2171. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  2172. ^
  2173. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c
  2174. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/alloc_ucl.d" -o "src/compress/ucl/alloc_ucl.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c"
  2175. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c
  2176. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/io.d" -o "src/compress/ucl/io.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c"
  2177. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c
  2178. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_99.d" -o "src/compress/ucl/n2b_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c"
  2179. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c
  2180. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_d.d" -o "src/compress/ucl/n2b_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c"
  2181. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c
  2182. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_ds.d" -o "src/compress/ucl/n2b_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c"
  2183. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c
  2184. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_to.d" -o "src/compress/ucl/n2b_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c"
  2185. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c
  2186. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_99.d" -o "src/compress/ucl/n2d_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c"
  2187. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c
  2188. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_d.d" -o "src/compress/ucl/n2d_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c"
  2189. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c
  2190. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_ds.d" -o "src/compress/ucl/n2d_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c"
  2191. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c
  2192. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_to.d" -o "src/compress/ucl/n2d_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c"
  2193. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c
  2194. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_99.d" -o "src/compress/ucl/n2e_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c"
  2195. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c
  2196. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_d.d" -o "src/compress/ucl/n2e_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c"
  2197. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c
  2198. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_ds.d" -o "src/compress/ucl/n2e_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c"
  2199. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c
  2200. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_to.d" -o "src/compress/ucl/n2e_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c"
  2201. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c
  2202. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_crc.d" -o "src/compress/ucl/ucl_crc.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c"
  2203. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c
  2204. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_dll.d" -o "src/compress/ucl/ucl_dll.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c"
  2205. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c
  2206. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_init.d" -o "src/compress/ucl/ucl_init.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c"
  2207. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c
  2208. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_ptr.d" -o "src/compress/ucl/ucl_ptr.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c"
  2209. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c
  2210. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_str.d" -o "src/compress/ucl/ucl_str.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c"
  2211. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c
  2212. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_util.d" -o "src/compress/ucl/ucl_util.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c"
  2213. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp
  2214. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/compress/lzo/minilzo.d" -o "src/compress/lzo/minilzo.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp"
  2215. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  2216. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  2217. #pragma once
  2218. ^
  2219. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  2220. #pragma once
  2221. ^
  2222. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c
  2223. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/FileIO.d" -o "src/compress/lzma/FileIO.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c"
  2224. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c
  2225. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaCompress.d" -o "src/compress/lzma/TinyLzmaCompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c"
  2226. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c
  2227. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaDecompress.d" -o "src/compress/lzma/TinyLzmaDecompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c"
  2228. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c: In function 'tinyLzmaDecompress':
  2229. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c:482:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
  2230. printf("comingg lzma1\n");
  2231. ^
  2232. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c
  2233. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lz4/lz4.d" -o "src/compress/lz4/lz4.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c"
  2234. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  2235. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2236. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  2237. ^
  2238. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2239. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2240. ^
  2241. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2242. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  2243. ^
  2244. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2245. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2246. ^
  2247. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2248. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  2249. ^
  2250. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2251. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2252. ^
  2253. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2254. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  2255. ^
  2256. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2257. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2258. ^
  2259. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2260. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  2261. ^
  2262. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2263. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2264. ^
  2265. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2266. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  2267. ^
  2268. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2269. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2270. ^
  2271. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2272. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  2273. ^
  2274. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2275. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2276. ^
  2277. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2278. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  2279. ^
  2280. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2281. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2282. ^
  2283. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  2284. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2285. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  2286. ^
  2287. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2288. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2289. ^
  2290. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2291. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  2292. ^
  2293. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2294. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2295. ^
  2296. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  2297. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  2298. (BYTE*)dest, NULL, 0);
  2299. ^
  2300. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2301. LZ4_decompress_generic(
  2302. ^
  2303. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  2304. (BYTE*)dest, NULL, 0);
  2305. ^
  2306. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  2307. LZ4_decompress_generic(
  2308. ^
  2309. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  2310. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2311. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2312. ^
  2313. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2314. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2315. ^
  2316. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2317. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2318. ^
  2319. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2320. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2321. ^
  2322. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  2323. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2324. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2325. ^
  2326. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2327. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2328. ^
  2329. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2330. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2331. ^
  2332. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2333. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2334. ^
  2335. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  2336. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2337. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  2338. ^
  2339. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2340. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2341. ^
  2342. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2343. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  2344. ^
  2345. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2346. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2347. ^
  2348. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  2349. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2350. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  2351. ^
  2352. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2353. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2354. ^
  2355. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2356. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  2357. ^
  2358. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2359. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2360. ^
  2361. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  2362. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2363. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  2364. ^
  2365. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2366. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2367. ^
  2368. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2369. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  2370. ^
  2371. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2372. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2373. ^
  2374. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  2375. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2376. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  2377. ^
  2378. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2379. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2380. ^
  2381. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2382. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  2383. ^
  2384. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2385. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2386. ^
  2387. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  2388. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2389. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  2390. ^
  2391. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2392. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2393. ^
  2394. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2395. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  2396. ^
  2397. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2398. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2399. ^
  2400. Building file: E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c
  2401. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/cpu_endian.d" -o "src/common/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c"
  2402. Building file: E:/code/tianmai/workspace/encryption_new/src/common/debug.c
  2403. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/debug.d" -o "src/common/debug.o" "E:/code/tianmai/workspace/encryption_new/src/common/debug.c"
  2404. E:/code/tianmai/workspace/encryption_new/src/common/debug.c: In function 'debugDisplayArray':
  2405. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  2406. TRACE_PRINTF("%s", prepend);
  2407. ^
  2408. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  2409. Building file: E:/code/tianmai/workspace/encryption_new/src/common/str.c
  2410. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/str.d" -o "src/common/str.o" "E:/code/tianmai/workspace/encryption_new/src/common/str.c"
  2411. Building file: E:/code/tianmai/workspace/encryption_new/.system/appComInit.c
  2412. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF".system/appComInit.d" -o ".system/appComInit.o" "E:/code/tianmai/workspace/encryption_new/.system/appComInit.c"
  2413. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a
  2414. Invoking: GCC Archiver
  2415. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a @prjObjs.lst
  2416. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished\n'
  2417. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished
  2418. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -ID:/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.c
  2419. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  2420. #D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -o checkname.o
  2421. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/preLinkCmds D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  2422. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/size -A -x E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel 1>presize.txt
  2423. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/gawk -f D:/ACoreIDE/host/acoreosmp/script/parse.awk presize.txt > linkcmds
  2424. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel presize.txt
  2425. Invoking: GCC C Linker
  2426. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -r -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel
  2427. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy --add-section .imgattr=E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/ImgInfoGen E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  2428. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel Finished
  2429. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  2430. Invoking: GCC C Linker
  2431. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -Ttext=0xa0000000 -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf
  2432. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy -O binary --strip-unneeded -R .note -R .comment -R .stab -R .stabstr -R .pbss E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  2433. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin Finished
  2434. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  2435. 15:32:55 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  2436. make clean
  2437. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  2438. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  2439. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  2440. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  2441. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  2442. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  2443. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  2444. 15:32:57 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  2445. make all
  2446. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  2447. Generate config files...
  2448. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  2449. .h and .mk File build success!
  2450. Generate link script files...
  2451. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  2452. done.
  2453. Image Info file... ImageInfo.c ImageinfoGen
  2454. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  2455. imageInfo.c File build success!
  2456. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  2457. ImgInfoGen File build success!
  2458. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  2459. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  2460. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  2461. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  2462. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  2463. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  2464. ACoreOs_cache_flush(1, 0, 0);
  2465. ^
  2466. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  2467. UINT32 numChars = 0;
  2468. ^
  2469. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  2470. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  2471. unsigned char *readed = malloc(41);
  2472. ^
  2473. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  2474. unsigned char *readed = malloc(41);
  2475. ^
  2476. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  2477. memset(readed,0,41);
  2478. ^
  2479. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  2480. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  2481. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  2482. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  2483. /*
  2484. ^
  2485. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2486. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  2487. #define MAX_DIRNAMES 32 /* max directory names in path*/
  2488. ^
  2489. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2490. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2491. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  2492. #define MAX_DIRNAMES 148 /* max directory names in path */
  2493. ^
  2494. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2495. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  2496. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  2497. ^
  2498. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2499. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2500. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  2501. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  2502. ^
  2503. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2504. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  2505. #define FIOUNMOUNT 39 /* unmount disk volume */
  2506. ^
  2507. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2508. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2509. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  2510. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  2511. ^
  2512. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2513. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  2514. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  2515. ^
  2516. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2517. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2518. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  2519. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  2520. ^
  2521. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2522. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  2523. #define FIONCONTIG 41 /* get size of max contig area on dev */
  2524. ^
  2525. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2526. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2527. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  2528. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  2529. ^
  2530. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2531. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  2532. #define FIOTRUNC 42 /* truncate file to specified length */
  2533. ^
  2534. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2535. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2536. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  2537. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  2538. ^
  2539. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2540. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  2541. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  2542. ^
  2543. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2544. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2545. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  2546. #define FIOGETFL 44 /* 获得文件操作模式 */
  2547. ^
  2548. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2549. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  2550. #define FIOTIMESET 44 /* change times on a file for utime() */
  2551. ^
  2552. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2553. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2554. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  2555. #define FIOTIMESET 45 /* 改变文件的时间 */
  2556. ^
  2557. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  2558. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  2559. #define FIOINODETONAME 45 /* given inode number, return filename*/
  2560. ^
  2561. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  2562. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  2563. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  2564. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  2565. ^
  2566. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  2567. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  2568. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  2569. #define _CACHE_ALIGN_SIZE 32
  2570. ^
  2571. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  2572. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:28:
  2573. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  2574. #define _CACHE_ALIGN_SIZE 16
  2575. ^
  2576. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:98:0:
  2577. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  2578. #define R_OK 0
  2579. ^
  2580. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:26:0:
  2581. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  2582. #define R_OK 4
  2583. ^
  2584. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:146:0: warning: "writel" redefined [enabled by default]
  2585. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  2586. ^
  2587. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:23:0:
  2588. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  2589. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  2590. ^
  2591. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:79:0:
  2592. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  2593. char *PRIME_SOURCE_FILE = "primes.txt";
  2594. ^
  2595. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  2596. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:131:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2597. for (int i = 0; i < len; i++) {
  2598. ^
  2599. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  2600. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:261:1: warning: no return statement in function returning non-void [-Wreturn-type]
  2601. }
  2602. ^
  2603. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  2604. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:403:1: warning: no return statement in function returning non-void [-Wreturn-type]
  2605. }
  2606. ^
  2607. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  2608. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:485:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  2609. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  2610. ^
  2611. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  2612. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:564:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  2613. int fd = check("ty0");
  2614. ^
  2615. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:686:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2616. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  2617. ^
  2618. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:717:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2619. flash_address + MAGIC_LENGTH + encrypted_file_size,
  2620. ^
  2621. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:717:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2622. flash_address + MAGIC_LENGTH + encrypted_file_size,
  2623. ^
  2624. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:736:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2625. flash_address + MAGIC_LENGTH + encrypted_file_size
  2626. ^
  2627. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:736:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2628. flash_address + MAGIC_LENGTH + encrypted_file_size
  2629. ^
  2630. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:737:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2631. + encrypted_key_size,
  2632. ^
  2633. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2634. flash_address + MAGIC_LENGTH + encrypted_file_size
  2635. ^
  2636. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2637. flash_address + MAGIC_LENGTH + encrypted_file_size
  2638. ^
  2639. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:748:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2640. + encrypted_key_size
  2641. ^
  2642. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:749:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2643. + sizeof(struct public_key_class),
  2644. ^
  2645. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:785:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2646. flash_address + MAGIC_LENGTH + encrypted_file_size
  2647. ^
  2648. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:785:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2649. flash_address + MAGIC_LENGTH + encrypted_file_size
  2650. ^
  2651. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:786:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2652. + encrypted_key_size,
  2653. ^
  2654. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:803:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2655. flash_address + MAGIC_LENGTH + encrypted_file_size
  2656. ^
  2657. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:803:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2658. flash_address + MAGIC_LENGTH + encrypted_file_size
  2659. ^
  2660. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2661. + encrypted_key_size + ECC_KEYSIZE,
  2662. ^
  2663. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  2664. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:80:
  2665. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2666. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  2667. ^
  2668. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  2669. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  2670. ^
  2671. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:31: note: in expansion of macro 'ECC_KEYSIZE'
  2672. + encrypted_key_size + ECC_KEYSIZE,
  2673. ^
  2674. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2675. #define ECC_PRV_KEY_SIZE 72
  2676. ^
  2677. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  2678. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  2679. ^
  2680. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:31: note: in expansion of macro 'ECC_KEYSIZE'
  2681. + encrypted_key_size + ECC_KEYSIZE,
  2682. ^
  2683. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:837:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2684. flash_address + MAGIC_LENGTH + encrypted_file_size
  2685. ^
  2686. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:837:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2687. flash_address + MAGIC_LENGTH + encrypted_file_size
  2688. ^
  2689. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2690. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  2691. ^
  2692. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2693. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  2694. ^
  2695. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  2696. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  2697. ^
  2698. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:957:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2699. for (int i = 0; i < encrypted_file_size; i += input_length) {
  2700. ^
  2701. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:966:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2702. for (int i = 0; i < encrypted_file_size; i += input_length) {
  2703. ^
  2704. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:974:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2705. for (int i = 0; i < encrypted_file_size; i += input_length) {
  2706. ^
  2707. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1083:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  2708. fd = check("ty0");
  2709. ^
  2710. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1127:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2711. for (int i = 0; i < reencrypted_file_size; i += input_length)
  2712. ^
  2713. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1135:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2714. for (int i = 0; i < reencrypted_file_size; i += input_length)
  2715. ^
  2716. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1143:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  2717. for (int i = 0; i < reencrypted_file_size; i += input_length)
  2718. ^
  2719. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1236:12: warning: unused variable 'out_size' [-Wunused-variable]
  2720. uint32_t out_size;
  2721. ^
  2722. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:823:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  2723. uint8_t cp_mac_array[10][18] = { '0' };
  2724. ^
  2725. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  2726. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  2727. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  2728. ^
  2729. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  2730. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  2731. ^
  2732. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c
  2733. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/aes.d" -o "src/encryption/aes.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c"
  2734. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c
  2735. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/cpu_endian.d" -o "src/encryption/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c"
  2736. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des.c
  2737. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des.d" -o "src/encryption/des.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des.c"
  2738. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c
  2739. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des3.d" -o "src/encryption/des3.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c"
  2740. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c
  2741. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecb.d" -o "src/encryption/ecb.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c"
  2742. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c
  2743. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc.d" -o "src/encryption/ecc.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c"
  2744. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c
  2745. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc_rc4.d" -o "src/encryption/ecc_rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c"
  2746. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c
  2747. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecdh.d" -o "src/encryption/ecdh.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c"
  2748. E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  2749. static void gf2field_inc(gf2elem_t x) {
  2750. ^
  2751. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c
  2752. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rc4.d" -o "src/encryption/rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c"
  2753. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c
  2754. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rsa.d" -o "src/encryption/rsa.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c"
  2755. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c
  2756. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/zstd/zstd.d" -o "src/compress/zstd/zstd.o" "E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c"
  2757. E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  2758. #define CLOCKS_PER_SEC 1000
  2759. ^
  2760. In file included from D:/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  2761. from D:/ACoreIDE/target/common/include/rtl/stdio.h:34,
  2762. from E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43282:
  2763. D:/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  2764. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  2765. ^
  2766. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c
  2767. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/alloc_ucl.d" -o "src/compress/ucl/alloc_ucl.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c"
  2768. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c
  2769. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/io.d" -o "src/compress/ucl/io.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c"
  2770. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c
  2771. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_99.d" -o "src/compress/ucl/n2b_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c"
  2772. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c
  2773. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_d.d" -o "src/compress/ucl/n2b_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c"
  2774. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c
  2775. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_ds.d" -o "src/compress/ucl/n2b_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c"
  2776. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c
  2777. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_to.d" -o "src/compress/ucl/n2b_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c"
  2778. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c
  2779. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_99.d" -o "src/compress/ucl/n2d_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c"
  2780. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c
  2781. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_d.d" -o "src/compress/ucl/n2d_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c"
  2782. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c
  2783. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_ds.d" -o "src/compress/ucl/n2d_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c"
  2784. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c
  2785. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_to.d" -o "src/compress/ucl/n2d_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c"
  2786. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c
  2787. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_99.d" -o "src/compress/ucl/n2e_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c"
  2788. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c
  2789. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_d.d" -o "src/compress/ucl/n2e_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c"
  2790. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c
  2791. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_ds.d" -o "src/compress/ucl/n2e_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c"
  2792. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c
  2793. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_to.d" -o "src/compress/ucl/n2e_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c"
  2794. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c
  2795. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_crc.d" -o "src/compress/ucl/ucl_crc.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c"
  2796. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c
  2797. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_dll.d" -o "src/compress/ucl/ucl_dll.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c"
  2798. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c
  2799. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_init.d" -o "src/compress/ucl/ucl_init.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c"
  2800. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c
  2801. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_ptr.d" -o "src/compress/ucl/ucl_ptr.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c"
  2802. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c
  2803. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_str.d" -o "src/compress/ucl/ucl_str.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c"
  2804. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c
  2805. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_util.d" -o "src/compress/ucl/ucl_util.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c"
  2806. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp
  2807. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/compress/lzo/minilzo.d" -o "src/compress/lzo/minilzo.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp"
  2808. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  2809. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  2810. #pragma once
  2811. ^
  2812. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  2813. #pragma once
  2814. ^
  2815. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c
  2816. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/FileIO.d" -o "src/compress/lzma/FileIO.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c"
  2817. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c
  2818. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaCompress.d" -o "src/compress/lzma/TinyLzmaCompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c"
  2819. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c
  2820. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaDecompress.d" -o "src/compress/lzma/TinyLzmaDecompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c"
  2821. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c: In function 'tinyLzmaDecompress':
  2822. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c:482:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
  2823. printf("comingg lzma1\n");
  2824. ^
  2825. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c
  2826. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lz4/lz4.d" -o "src/compress/lz4/lz4.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c"
  2827. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  2828. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2829. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  2830. ^
  2831. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2832. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2833. ^
  2834. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2835. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  2836. ^
  2837. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2838. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2839. ^
  2840. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2841. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  2842. ^
  2843. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2844. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2845. ^
  2846. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2847. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  2848. ^
  2849. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2850. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2851. ^
  2852. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2853. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  2854. ^
  2855. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2856. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2857. ^
  2858. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2859. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  2860. ^
  2861. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2862. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2863. ^
  2864. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2865. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  2866. ^
  2867. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2868. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2869. ^
  2870. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2871. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  2872. ^
  2873. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2874. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2875. ^
  2876. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  2877. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2878. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  2879. ^
  2880. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2881. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2882. ^
  2883. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2884. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  2885. ^
  2886. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2887. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2888. ^
  2889. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  2890. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  2891. (BYTE*)dest, NULL, 0);
  2892. ^
  2893. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2894. LZ4_decompress_generic(
  2895. ^
  2896. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  2897. (BYTE*)dest, NULL, 0);
  2898. ^
  2899. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  2900. LZ4_decompress_generic(
  2901. ^
  2902. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  2903. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2904. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2905. ^
  2906. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2907. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2908. ^
  2909. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2910. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2911. ^
  2912. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2913. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2914. ^
  2915. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  2916. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2917. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2918. ^
  2919. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2920. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2921. ^
  2922. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2923. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2924. ^
  2925. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2926. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2927. ^
  2928. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  2929. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2930. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  2931. ^
  2932. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2933. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2934. ^
  2935. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2936. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  2937. ^
  2938. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2939. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2940. ^
  2941. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  2942. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2943. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  2944. ^
  2945. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2946. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2947. ^
  2948. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2949. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  2950. ^
  2951. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2952. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2953. ^
  2954. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  2955. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2956. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  2957. ^
  2958. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2959. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2960. ^
  2961. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2962. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  2963. ^
  2964. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2965. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2966. ^
  2967. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  2968. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2969. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  2970. ^
  2971. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2972. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2973. ^
  2974. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2975. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  2976. ^
  2977. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2978. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2979. ^
  2980. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  2981. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2982. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  2983. ^
  2984. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2985. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2986. ^
  2987. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2988. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  2989. ^
  2990. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2991. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2992. ^
  2993. Building file: E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c
  2994. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/cpu_endian.d" -o "src/common/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c"
  2995. Building file: E:/code/tianmai/workspace/encryption_new/src/common/debug.c
  2996. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/debug.d" -o "src/common/debug.o" "E:/code/tianmai/workspace/encryption_new/src/common/debug.c"
  2997. E:/code/tianmai/workspace/encryption_new/src/common/debug.c: In function 'debugDisplayArray':
  2998. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  2999. TRACE_PRINTF("%s", prepend);
  3000. ^
  3001. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  3002. Building file: E:/code/tianmai/workspace/encryption_new/src/common/str.c
  3003. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/str.d" -o "src/common/str.o" "E:/code/tianmai/workspace/encryption_new/src/common/str.c"
  3004. Building file: E:/code/tianmai/workspace/encryption_new/.system/appComInit.c
  3005. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF".system/appComInit.d" -o ".system/appComInit.o" "E:/code/tianmai/workspace/encryption_new/.system/appComInit.c"
  3006. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a
  3007. Invoking: GCC Archiver
  3008. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a @prjObjs.lst
  3009. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished\n'
  3010. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished
  3011. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -ID:/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.c
  3012. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  3013. #D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -o checkname.o
  3014. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/preLinkCmds D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  3015. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/size -A -x E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel 1>presize.txt
  3016. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/gawk -f D:/ACoreIDE/host/acoreosmp/script/parse.awk presize.txt > linkcmds
  3017. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel presize.txt
  3018. Invoking: GCC C Linker
  3019. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -r -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel
  3020. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy --add-section .imgattr=E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/ImgInfoGen E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  3021. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel Finished
  3022. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  3023. Invoking: GCC C Linker
  3024. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -Ttext=0xa0000000 -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf
  3025. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy -O binary --strip-unneeded -R .note -R .comment -R .stab -R .stabstr -R .pbss E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  3026. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin Finished
  3027. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3028. 15:35:49 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  3029. make clean
  3030. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  3031. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3032. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  3033. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  3034. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  3035. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3036. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  3037. 15:35:50 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  3038. make all
  3039. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  3040. Generate config files...
  3041. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  3042. .h and .mk File build success!
  3043. Generate link script files...
  3044. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  3045. done.
  3046. Image Info file... ImageInfo.c ImageinfoGen
  3047. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  3048. imageInfo.c File build success!
  3049. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  3050. ImgInfoGen File build success!
  3051. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  3052. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3053. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  3054. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  3055. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  3056. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  3057. ACoreOs_cache_flush(1, 0, 0);
  3058. ^
  3059. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  3060. UINT32 numChars = 0;
  3061. ^
  3062. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  3063. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  3064. unsigned char *readed = malloc(41);
  3065. ^
  3066. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  3067. unsigned char *readed = malloc(41);
  3068. ^
  3069. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  3070. memset(readed,0,41);
  3071. ^
  3072. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  3073. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  3074. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  3075. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  3076. /*
  3077. ^
  3078. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3079. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  3080. #define MAX_DIRNAMES 32 /* max directory names in path*/
  3081. ^
  3082. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3083. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3084. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  3085. #define MAX_DIRNAMES 148 /* max directory names in path */
  3086. ^
  3087. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3088. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  3089. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  3090. ^
  3091. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3092. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3093. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  3094. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  3095. ^
  3096. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3097. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  3098. #define FIOUNMOUNT 39 /* unmount disk volume */
  3099. ^
  3100. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3101. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3102. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  3103. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  3104. ^
  3105. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3106. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  3107. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  3108. ^
  3109. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3110. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3111. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  3112. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  3113. ^
  3114. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3115. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  3116. #define FIONCONTIG 41 /* get size of max contig area on dev */
  3117. ^
  3118. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3119. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3120. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  3121. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  3122. ^
  3123. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3124. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  3125. #define FIOTRUNC 42 /* truncate file to specified length */
  3126. ^
  3127. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3128. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3129. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  3130. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  3131. ^
  3132. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3133. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  3134. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  3135. ^
  3136. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3137. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3138. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  3139. #define FIOGETFL 44 /* 获得文件操作模式 */
  3140. ^
  3141. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3142. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  3143. #define FIOTIMESET 44 /* change times on a file for utime() */
  3144. ^
  3145. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3146. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3147. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  3148. #define FIOTIMESET 45 /* 改变文件的时间 */
  3149. ^
  3150. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3151. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  3152. #define FIOINODETONAME 45 /* given inode number, return filename*/
  3153. ^
  3154. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3155. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3156. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  3157. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  3158. ^
  3159. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  3160. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  3161. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  3162. #define _CACHE_ALIGN_SIZE 32
  3163. ^
  3164. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  3165. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:28:
  3166. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  3167. #define _CACHE_ALIGN_SIZE 16
  3168. ^
  3169. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:98:0:
  3170. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  3171. #define R_OK 0
  3172. ^
  3173. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:26:0:
  3174. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  3175. #define R_OK 4
  3176. ^
  3177. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:146:0: warning: "writel" redefined [enabled by default]
  3178. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  3179. ^
  3180. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:23:0:
  3181. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  3182. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  3183. ^
  3184. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:79:0:
  3185. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  3186. char *PRIME_SOURCE_FILE = "primes.txt";
  3187. ^
  3188. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  3189. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:131:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3190. for (int i = 0; i < len; i++) {
  3191. ^
  3192. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  3193. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:261:1: warning: no return statement in function returning non-void [-Wreturn-type]
  3194. }
  3195. ^
  3196. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  3197. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:403:1: warning: no return statement in function returning non-void [-Wreturn-type]
  3198. }
  3199. ^
  3200. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  3201. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:485:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  3202. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  3203. ^
  3204. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  3205. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:564:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  3206. int fd = check("ty0");
  3207. ^
  3208. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:686:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3209. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  3210. ^
  3211. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:717:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3212. flash_address + MAGIC_LENGTH + encrypted_file_size,
  3213. ^
  3214. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:717:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3215. flash_address + MAGIC_LENGTH + encrypted_file_size,
  3216. ^
  3217. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:736:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3218. flash_address + MAGIC_LENGTH + encrypted_file_size
  3219. ^
  3220. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:736:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3221. flash_address + MAGIC_LENGTH + encrypted_file_size
  3222. ^
  3223. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:737:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3224. + encrypted_key_size,
  3225. ^
  3226. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3227. flash_address + MAGIC_LENGTH + encrypted_file_size
  3228. ^
  3229. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3230. flash_address + MAGIC_LENGTH + encrypted_file_size
  3231. ^
  3232. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:748:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3233. + encrypted_key_size
  3234. ^
  3235. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:749:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3236. + sizeof(struct public_key_class),
  3237. ^
  3238. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:785:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3239. flash_address + MAGIC_LENGTH + encrypted_file_size
  3240. ^
  3241. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:785:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3242. flash_address + MAGIC_LENGTH + encrypted_file_size
  3243. ^
  3244. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:786:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3245. + encrypted_key_size,
  3246. ^
  3247. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:803:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3248. flash_address + MAGIC_LENGTH + encrypted_file_size
  3249. ^
  3250. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:803:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3251. flash_address + MAGIC_LENGTH + encrypted_file_size
  3252. ^
  3253. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3254. + encrypted_key_size + ECC_KEYSIZE,
  3255. ^
  3256. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  3257. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:80:
  3258. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3259. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  3260. ^
  3261. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  3262. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  3263. ^
  3264. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:31: note: in expansion of macro 'ECC_KEYSIZE'
  3265. + encrypted_key_size + ECC_KEYSIZE,
  3266. ^
  3267. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3268. #define ECC_PRV_KEY_SIZE 72
  3269. ^
  3270. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  3271. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  3272. ^
  3273. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:31: note: in expansion of macro 'ECC_KEYSIZE'
  3274. + encrypted_key_size + ECC_KEYSIZE,
  3275. ^
  3276. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:837:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3277. flash_address + MAGIC_LENGTH + encrypted_file_size
  3278. ^
  3279. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:837:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3280. flash_address + MAGIC_LENGTH + encrypted_file_size
  3281. ^
  3282. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3283. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  3284. ^
  3285. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3286. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  3287. ^
  3288. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3289. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  3290. ^
  3291. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:957:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3292. for (int i = 0; i < encrypted_file_size; i += input_length) {
  3293. ^
  3294. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:966:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3295. for (int i = 0; i < encrypted_file_size; i += input_length) {
  3296. ^
  3297. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:974:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3298. for (int i = 0; i < encrypted_file_size; i += input_length) {
  3299. ^
  3300. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1083:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  3301. fd = check("ty0");
  3302. ^
  3303. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1127:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3304. for (int i = 0; i < reencrypted_file_size; i += input_length)
  3305. ^
  3306. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1135:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3307. for (int i = 0; i < reencrypted_file_size; i += input_length)
  3308. ^
  3309. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1143:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3310. for (int i = 0; i < reencrypted_file_size; i += input_length)
  3311. ^
  3312. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1236:12: warning: unused variable 'out_size' [-Wunused-variable]
  3313. uint32_t out_size;
  3314. ^
  3315. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:823:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  3316. uint8_t cp_mac_array[10][18] = { '0' };
  3317. ^
  3318. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  3319. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  3320. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  3321. ^
  3322. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  3323. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  3324. ^
  3325. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c
  3326. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/aes.d" -o "src/encryption/aes.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c"
  3327. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c
  3328. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/cpu_endian.d" -o "src/encryption/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c"
  3329. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des.c
  3330. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des.d" -o "src/encryption/des.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des.c"
  3331. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c
  3332. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des3.d" -o "src/encryption/des3.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c"
  3333. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c
  3334. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecb.d" -o "src/encryption/ecb.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c"
  3335. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c
  3336. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc.d" -o "src/encryption/ecc.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c"
  3337. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c
  3338. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc_rc4.d" -o "src/encryption/ecc_rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c"
  3339. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c
  3340. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecdh.d" -o "src/encryption/ecdh.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c"
  3341. E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  3342. static void gf2field_inc(gf2elem_t x) {
  3343. ^
  3344. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c
  3345. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rc4.d" -o "src/encryption/rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c"
  3346. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c
  3347. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rsa.d" -o "src/encryption/rsa.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c"
  3348. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c
  3349. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/zstd/zstd.d" -o "src/compress/zstd/zstd.o" "E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c"
  3350. E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  3351. #define CLOCKS_PER_SEC 1000
  3352. ^
  3353. In file included from D:/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  3354. from D:/ACoreIDE/target/common/include/rtl/stdio.h:34,
  3355. from E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43282:
  3356. D:/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  3357. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  3358. ^
  3359. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c
  3360. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/alloc_ucl.d" -o "src/compress/ucl/alloc_ucl.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c"
  3361. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c
  3362. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/io.d" -o "src/compress/ucl/io.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c"
  3363. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c
  3364. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_99.d" -o "src/compress/ucl/n2b_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c"
  3365. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c
  3366. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_d.d" -o "src/compress/ucl/n2b_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c"
  3367. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c
  3368. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_ds.d" -o "src/compress/ucl/n2b_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c"
  3369. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c
  3370. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_to.d" -o "src/compress/ucl/n2b_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c"
  3371. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c
  3372. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_99.d" -o "src/compress/ucl/n2d_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c"
  3373. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c
  3374. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_d.d" -o "src/compress/ucl/n2d_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c"
  3375. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c
  3376. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_ds.d" -o "src/compress/ucl/n2d_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c"
  3377. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c
  3378. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_to.d" -o "src/compress/ucl/n2d_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c"
  3379. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c
  3380. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_99.d" -o "src/compress/ucl/n2e_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c"
  3381. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c
  3382. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_d.d" -o "src/compress/ucl/n2e_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c"
  3383. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c
  3384. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_ds.d" -o "src/compress/ucl/n2e_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c"
  3385. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c
  3386. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_to.d" -o "src/compress/ucl/n2e_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c"
  3387. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c
  3388. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_crc.d" -o "src/compress/ucl/ucl_crc.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c"
  3389. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c
  3390. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_dll.d" -o "src/compress/ucl/ucl_dll.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c"
  3391. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c
  3392. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_init.d" -o "src/compress/ucl/ucl_init.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c"
  3393. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c
  3394. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_ptr.d" -o "src/compress/ucl/ucl_ptr.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c"
  3395. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c
  3396. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_str.d" -o "src/compress/ucl/ucl_str.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c"
  3397. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c
  3398. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_util.d" -o "src/compress/ucl/ucl_util.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c"
  3399. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp
  3400. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/compress/lzo/minilzo.d" -o "src/compress/lzo/minilzo.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp"
  3401. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  3402. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  3403. #pragma once
  3404. ^
  3405. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  3406. #pragma once
  3407. ^
  3408. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c
  3409. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/FileIO.d" -o "src/compress/lzma/FileIO.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c"
  3410. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c
  3411. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaCompress.d" -o "src/compress/lzma/TinyLzmaCompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c"
  3412. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c
  3413. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaDecompress.d" -o "src/compress/lzma/TinyLzmaDecompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c"
  3414. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c: In function 'tinyLzmaDecompress':
  3415. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c:482:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
  3416. printf("comingg lzma1\n");
  3417. ^
  3418. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c
  3419. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lz4/lz4.d" -o "src/compress/lz4/lz4.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c"
  3420. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  3421. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3422. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  3423. ^
  3424. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  3425. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3426. ^
  3427. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3428. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  3429. ^
  3430. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  3431. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3432. ^
  3433. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3434. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  3435. ^
  3436. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  3437. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3438. ^
  3439. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3440. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  3441. ^
  3442. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  3443. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3444. ^
  3445. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3446. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  3447. ^
  3448. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  3449. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3450. ^
  3451. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3452. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  3453. ^
  3454. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  3455. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3456. ^
  3457. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3458. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  3459. ^
  3460. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  3461. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3462. ^
  3463. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  3464. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  3465. ^
  3466. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  3467. LZ4_FORCE_INLINE int LZ4_compress_generic(
  3468. ^
  3469. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  3470. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  3471. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  3472. ^
  3473. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3474. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  3475. ^
  3476. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  3477. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  3478. ^
  3479. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3480. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  3481. ^
  3482. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  3483. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  3484. (BYTE*)dest, NULL, 0);
  3485. ^
  3486. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  3487. LZ4_decompress_generic(
  3488. ^
  3489. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  3490. (BYTE*)dest, NULL, 0);
  3491. ^
  3492. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  3493. LZ4_decompress_generic(
  3494. ^
  3495. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  3496. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  3497. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  3498. ^
  3499. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3500. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  3501. ^
  3502. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  3503. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  3504. ^
  3505. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3506. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  3507. ^
  3508. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  3509. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  3510. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  3511. ^
  3512. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3513. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  3514. ^
  3515. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  3516. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  3517. ^
  3518. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3519. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  3520. ^
  3521. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  3522. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  3523. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  3524. ^
  3525. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3526. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  3527. ^
  3528. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  3529. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  3530. ^
  3531. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3532. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  3533. ^
  3534. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  3535. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  3536. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  3537. ^
  3538. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3539. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  3540. ^
  3541. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  3542. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  3543. ^
  3544. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3545. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  3546. ^
  3547. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  3548. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  3549. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  3550. ^
  3551. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3552. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  3553. ^
  3554. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  3555. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  3556. ^
  3557. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3558. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  3559. ^
  3560. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  3561. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  3562. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  3563. ^
  3564. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3565. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  3566. ^
  3567. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  3568. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  3569. ^
  3570. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3571. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  3572. ^
  3573. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  3574. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  3575. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  3576. ^
  3577. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  3578. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  3579. ^
  3580. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  3581. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  3582. ^
  3583. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  3584. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  3585. ^
  3586. Building file: E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c
  3587. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/cpu_endian.d" -o "src/common/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c"
  3588. Building file: E:/code/tianmai/workspace/encryption_new/src/common/debug.c
  3589. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/debug.d" -o "src/common/debug.o" "E:/code/tianmai/workspace/encryption_new/src/common/debug.c"
  3590. E:/code/tianmai/workspace/encryption_new/src/common/debug.c: In function 'debugDisplayArray':
  3591. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  3592. TRACE_PRINTF("%s", prepend);
  3593. ^
  3594. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  3595. Building file: E:/code/tianmai/workspace/encryption_new/src/common/str.c
  3596. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/str.d" -o "src/common/str.o" "E:/code/tianmai/workspace/encryption_new/src/common/str.c"
  3597. Building file: E:/code/tianmai/workspace/encryption_new/.system/appComInit.c
  3598. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF".system/appComInit.d" -o ".system/appComInit.o" "E:/code/tianmai/workspace/encryption_new/.system/appComInit.c"
  3599. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a
  3600. Invoking: GCC Archiver
  3601. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a @prjObjs.lst
  3602. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished\n'
  3603. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished
  3604. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -ID:/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.c
  3605. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  3606. #D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -o checkname.o
  3607. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/preLinkCmds D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  3608. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/size -A -x E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel 1>presize.txt
  3609. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/gawk -f D:/ACoreIDE/host/acoreosmp/script/parse.awk presize.txt > linkcmds
  3610. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel presize.txt
  3611. Invoking: GCC C Linker
  3612. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -r -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel
  3613. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy --add-section .imgattr=E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/ImgInfoGen E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  3614. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel Finished
  3615. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  3616. Invoking: GCC C Linker
  3617. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -Ttext=0xa0000000 -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf
  3618. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy -O binary --strip-unneeded -R .note -R .comment -R .stab -R .stabstr -R .pbss E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  3619. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin Finished
  3620. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3621. 15:36:45 **** Clean-only build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  3622. make clean
  3623. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  3624. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3625. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  3626. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  3627. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ./src/sio/sioPl01x.o ./src/init_test.o ./src/encryption/aes.o ./src/encryption/cpu_endian.o ./src/encryption/des.o ./src/encryption/des3.o ./src/encryption/ecb.o ./src/encryption/ecc.o ./src/encryption/ecc_rc4.o ./src/encryption/ecdh.o ./src/encryption/rc4.o ./src/encryption/rsa.o ./src/compress/zstd/zstd.o ./src/compress/ucl/alloc_ucl.o ./src/compress/ucl/io.o ./src/compress/ucl/n2b_99.o ./src/compress/ucl/n2b_d.o ./src/compress/ucl/n2b_ds.o ./src/compress/ucl/n2b_to.o ./src/compress/ucl/n2d_99.o ./src/compress/ucl/n2d_d.o ./src/compress/ucl/n2d_ds.o ./src/compress/ucl/n2d_to.o ./src/compress/ucl/n2e_99.o ./src/compress/ucl/n2e_d.o ./src/compress/ucl/n2e_ds.o ./src/compress/ucl/n2e_to.o ./src/compress/ucl/ucl_crc.o ./src/compress/ucl/ucl_dll.o ./src/compress/ucl/ucl_init.o ./src/compress/ucl/ucl_ptr.o ./src/compress/ucl/ucl_str.o ./src/compress/ucl/ucl_util.o ./src/compress/lzo/minilzo.o ./src/compress/lzma/FileIO.o ./src/compress/lzma/TinyLzmaCompress.o ./src/compress/lzma/TinyLzmaDecompress.o ./src/compress/lz4/lz4.o ./src/common/cpu_endian.o ./src/common/debug.o ./src/common/str.o ./.system/appComInit.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a ./src/sio/sioPl01x.d ./src/encryption/aes.d ./src/encryption/cpu_endian.d ./src/encryption/des.d ./src/encryption/des3.d ./src/encryption/ecb.d ./src/encryption/ecc.d ./src/encryption/ecc_rc4.d ./src/encryption/ecdh.d ./src/encryption/rc4.d ./src/encryption/rsa.d ./src/compress/zstd/zstd.d ./src/compress/ucl/alloc_ucl.d ./src/compress/ucl/io.d ./src/compress/ucl/n2b_99.d ./src/compress/ucl/n2b_d.d ./src/compress/ucl/n2b_ds.d ./src/compress/ucl/n2b_to.d ./src/compress/ucl/n2d_99.d ./src/compress/ucl/n2d_d.d ./src/compress/ucl/n2d_ds.d ./src/compress/ucl/n2d_to.d ./src/compress/ucl/n2e_99.d ./src/compress/ucl/n2e_d.d ./src/compress/ucl/n2e_ds.d ./src/compress/ucl/n2e_to.d ./src/compress/ucl/ucl_crc.d ./src/compress/ucl/ucl_dll.d ./src/compress/ucl/ucl_init.d ./src/compress/ucl/ucl_ptr.d ./src/compress/ucl/ucl_str.d ./src/compress/ucl/ucl_util.d ./src/compress/lzma/FileIO.d ./src/compress/lzma/TinyLzmaCompress.d ./src/compress/lzma/TinyLzmaDecompress.d ./src/compress/lz4/lz4.d ./src/common/cpu_endian.d ./src/common/debug.d ./src/common/str.d ./.system/appComInit.d
  3628. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3629. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf imageInfo.c ImgInfoGen preLinkCmds _linkcmds objects.mk path.mk sources.mk v_makefile.mk config_appcfg.h config_appcfg.mk
  3630. 15:36:46 **** Build of configuration ft2000aC4_le_hard_sys_mcore for project encryption_new ****
  3631. make all
  3632. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption_new
  3633. Generate config files...
  3634. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/appcfg.cfg D:/ACoreIDE
  3635. .h and .mk File build success!
  3636. Generate link script files...
  3637. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp preLinkCmds _linkcmds
  3638. done.
  3639. Image Info file... ImageInfo.c ImageinfoGen
  3640. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/tra_debug.mtp encryption_new app arm
  3641. imageInfo.c File build success!
  3642. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore encryption_new gcc-4.8.1 E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/config_appcfg.mk
  3643. ImgInfoGen File build success!
  3644. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  3645. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'
  3646. Building file: E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c
  3647. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/sio/sioPl01x.d" -o "src/sio/sioPl01x.o" "E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c"
  3648. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  3649. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  3650. ACoreOs_cache_flush(1, 0, 0);
  3651. ^
  3652. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  3653. UINT32 numChars = 0;
  3654. ^
  3655. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c: In function 'serial':
  3656. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  3657. unsigned char *readed = malloc(41);
  3658. ^
  3659. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:589:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  3660. unsigned char *readed = malloc(41);
  3661. ^
  3662. E:/code/tianmai/workspace/encryption_new/src/sio/sioPl01x.c:590:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  3663. memset(readed,0,41);
  3664. ^
  3665. Building file: E:/code/tianmai/workspace/encryption_new/src/init_test.cpp
  3666. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/init_test.d" -o "src/init_test.o" "E:/code/tianmai/workspace/encryption_new/src/init_test.cpp"
  3667. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  3668. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1:0: note: this is the location of the previous definition
  3669. /*
  3670. ^
  3671. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3672. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  3673. #define MAX_DIRNAMES 32 /* max directory names in path*/
  3674. ^
  3675. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3676. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3677. D:/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  3678. #define MAX_DIRNAMES 148 /* max directory names in path */
  3679. ^
  3680. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3681. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  3682. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  3683. ^
  3684. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3685. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3686. D:/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  3687. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  3688. ^
  3689. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3690. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  3691. #define FIOUNMOUNT 39 /* unmount disk volume */
  3692. ^
  3693. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3694. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3695. D:/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  3696. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  3697. ^
  3698. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3699. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  3700. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  3701. ^
  3702. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3703. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3704. D:/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  3705. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  3706. ^
  3707. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3708. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  3709. #define FIONCONTIG 41 /* get size of max contig area on dev */
  3710. ^
  3711. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3712. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3713. D:/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  3714. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  3715. ^
  3716. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3717. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  3718. #define FIOTRUNC 42 /* truncate file to specified length */
  3719. ^
  3720. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3721. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3722. D:/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  3723. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  3724. ^
  3725. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3726. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  3727. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  3728. ^
  3729. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3730. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3731. D:/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  3732. #define FIOGETFL 44 /* 获得文件操作模式 */
  3733. ^
  3734. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3735. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  3736. #define FIOTIMESET 44 /* change times on a file for utime() */
  3737. ^
  3738. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3739. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3740. D:/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  3741. #define FIOTIMESET 45 /* 改变文件的时间 */
  3742. ^
  3743. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:33:0:
  3744. D:/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  3745. #define FIOINODETONAME 45 /* given inode number, return filename*/
  3746. ^
  3747. In file included from D:/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  3748. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:21:
  3749. D:/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  3750. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  3751. ^
  3752. In file included from D:/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  3753. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:38:
  3754. D:/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  3755. #define _CACHE_ALIGN_SIZE 32
  3756. ^
  3757. In file included from D:/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  3758. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:28:
  3759. D:/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  3760. #define _CACHE_ALIGN_SIZE 16
  3761. ^
  3762. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:98:0:
  3763. E:\code\tianmai\workspace\encryption_new\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  3764. #define R_OK 0
  3765. ^
  3766. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:26:0:
  3767. D:/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  3768. #define R_OK 4
  3769. ^
  3770. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:146:0: warning: "writel" redefined [enabled by default]
  3771. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  3772. ^
  3773. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:23:0:
  3774. D:/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  3775. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  3776. ^
  3777. In file included from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:79:0:
  3778. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  3779. char *PRIME_SOURCE_FILE = "primes.txt";
  3780. ^
  3781. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  3782. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:131:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3783. for (int i = 0; i < len; i++) {
  3784. ^
  3785. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  3786. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:261:1: warning: no return statement in function returning non-void [-Wreturn-type]
  3787. }
  3788. ^
  3789. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  3790. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:403:1: warning: no return statement in function returning non-void [-Wreturn-type]
  3791. }
  3792. ^
  3793. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'uint8_t* get_mac()':
  3794. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:485:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  3795. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  3796. ^
  3797. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: In function 'void task_3()':
  3798. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:564:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  3799. int fd = check("ty0");
  3800. ^
  3801. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:686:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3802. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  3803. ^
  3804. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:717:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3805. flash_address + MAGIC_LENGTH + encrypted_file_size,
  3806. ^
  3807. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:717:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3808. flash_address + MAGIC_LENGTH + encrypted_file_size,
  3809. ^
  3810. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:736:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3811. flash_address + MAGIC_LENGTH + encrypted_file_size
  3812. ^
  3813. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:736:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3814. flash_address + MAGIC_LENGTH + encrypted_file_size
  3815. ^
  3816. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:737:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3817. + encrypted_key_size,
  3818. ^
  3819. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3820. flash_address + MAGIC_LENGTH + encrypted_file_size
  3821. ^
  3822. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:747:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3823. flash_address + MAGIC_LENGTH + encrypted_file_size
  3824. ^
  3825. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:748:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3826. + encrypted_key_size
  3827. ^
  3828. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:749:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3829. + sizeof(struct public_key_class),
  3830. ^
  3831. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:785:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3832. flash_address + MAGIC_LENGTH + encrypted_file_size
  3833. ^
  3834. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:785:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3835. flash_address + MAGIC_LENGTH + encrypted_file_size
  3836. ^
  3837. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:786:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3838. + encrypted_key_size,
  3839. ^
  3840. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:803:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3841. flash_address + MAGIC_LENGTH + encrypted_file_size
  3842. ^
  3843. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:803:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3844. flash_address + MAGIC_LENGTH + encrypted_file_size
  3845. ^
  3846. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3847. + encrypted_key_size + ECC_KEYSIZE,
  3848. ^
  3849. In file included from E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:4:0,
  3850. from E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:80:
  3851. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3852. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  3853. ^
  3854. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  3855. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  3856. ^
  3857. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:31: note: in expansion of macro 'ECC_KEYSIZE'
  3858. + encrypted_key_size + ECC_KEYSIZE,
  3859. ^
  3860. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3861. #define ECC_PRV_KEY_SIZE 72
  3862. ^
  3863. E:\code\tianmai\workspace\encryption_new\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  3864. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  3865. ^
  3866. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:804:31: note: in expansion of macro 'ECC_KEYSIZE'
  3867. + encrypted_key_size + ECC_KEYSIZE,
  3868. ^
  3869. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:837:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3870. flash_address + MAGIC_LENGTH + encrypted_file_size
  3871. ^
  3872. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:837:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3873. flash_address + MAGIC_LENGTH + encrypted_file_size
  3874. ^
  3875. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3876. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  3877. ^
  3878. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3879. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  3880. ^
  3881. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:838:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  3882. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  3883. ^
  3884. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:957:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3885. for (int i = 0; i < encrypted_file_size; i += input_length) {
  3886. ^
  3887. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:966:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3888. for (int i = 0; i < encrypted_file_size; i += input_length) {
  3889. ^
  3890. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:974:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3891. for (int i = 0; i < encrypted_file_size; i += input_length) {
  3892. ^
  3893. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1083:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  3894. fd = check("ty0");
  3895. ^
  3896. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1127:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3897. for (int i = 0; i < reencrypted_file_size; i += input_length)
  3898. ^
  3899. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1135:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3900. for (int i = 0; i < reencrypted_file_size; i += input_length)
  3901. ^
  3902. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1143:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  3903. for (int i = 0; i < reencrypted_file_size; i += input_length)
  3904. ^
  3905. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:1236:12: warning: unused variable 'out_size' [-Wunused-variable]
  3906. uint32_t out_size;
  3907. ^
  3908. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:823:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  3909. uint8_t cp_mac_array[10][18] = { '0' };
  3910. ^
  3911. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp: At global scope:
  3912. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  3913. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  3914. ^
  3915. E:/code/tianmai/workspace/encryption_new/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  3916. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  3917. ^
  3918. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c
  3919. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/aes.d" -o "src/encryption/aes.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/aes.c"
  3920. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c
  3921. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/cpu_endian.d" -o "src/encryption/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/cpu_endian.c"
  3922. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des.c
  3923. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des.d" -o "src/encryption/des.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des.c"
  3924. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c
  3925. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/des3.d" -o "src/encryption/des3.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/des3.c"
  3926. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c
  3927. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecb.d" -o "src/encryption/ecb.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecb.c"
  3928. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c
  3929. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc.d" -o "src/encryption/ecc.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc.c"
  3930. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c
  3931. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecc_rc4.d" -o "src/encryption/ecc_rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecc_rc4.c"
  3932. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c
  3933. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/ecdh.d" -o "src/encryption/ecdh.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c"
  3934. E:/code/tianmai/workspace/encryption_new/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  3935. static void gf2field_inc(gf2elem_t x) {
  3936. ^
  3937. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c
  3938. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rc4.d" -o "src/encryption/rc4.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rc4.c"
  3939. Building file: E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c
  3940. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/encryption/rsa.d" -o "src/encryption/rsa.o" "E:/code/tianmai/workspace/encryption_new/src/encryption/rsa.c"
  3941. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c
  3942. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/zstd/zstd.d" -o "src/compress/zstd/zstd.o" "E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c"
  3943. E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  3944. #define CLOCKS_PER_SEC 1000
  3945. ^
  3946. In file included from D:/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  3947. from D:/ACoreIDE/target/common/include/rtl/stdio.h:34,
  3948. from E:/code/tianmai/workspace/encryption_new/src/compress/zstd/zstd.c:43282:
  3949. D:/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  3950. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  3951. ^
  3952. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c
  3953. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/alloc_ucl.d" -o "src/compress/ucl/alloc_ucl.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/alloc_ucl.c"
  3954. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c
  3955. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/io.d" -o "src/compress/ucl/io.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/io.c"
  3956. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c
  3957. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_99.d" -o "src/compress/ucl/n2b_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_99.c"
  3958. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c
  3959. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_d.d" -o "src/compress/ucl/n2b_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_d.c"
  3960. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c
  3961. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_ds.d" -o "src/compress/ucl/n2b_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_ds.c"
  3962. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c
  3963. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2b_to.d" -o "src/compress/ucl/n2b_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2b_to.c"
  3964. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c
  3965. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_99.d" -o "src/compress/ucl/n2d_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_99.c"
  3966. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c
  3967. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_d.d" -o "src/compress/ucl/n2d_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_d.c"
  3968. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c
  3969. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_ds.d" -o "src/compress/ucl/n2d_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_ds.c"
  3970. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c
  3971. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2d_to.d" -o "src/compress/ucl/n2d_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2d_to.c"
  3972. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c
  3973. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_99.d" -o "src/compress/ucl/n2e_99.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_99.c"
  3974. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c
  3975. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_d.d" -o "src/compress/ucl/n2e_d.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_d.c"
  3976. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c
  3977. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_ds.d" -o "src/compress/ucl/n2e_ds.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_ds.c"
  3978. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c
  3979. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/n2e_to.d" -o "src/compress/ucl/n2e_to.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/n2e_to.c"
  3980. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c
  3981. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_crc.d" -o "src/compress/ucl/ucl_crc.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_crc.c"
  3982. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c
  3983. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_dll.d" -o "src/compress/ucl/ucl_dll.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_dll.c"
  3984. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c
  3985. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_init.d" -o "src/compress/ucl/ucl_init.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_init.c"
  3986. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c
  3987. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_ptr.d" -o "src/compress/ucl/ucl_ptr.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_ptr.c"
  3988. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c
  3989. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_str.d" -o "src/compress/ucl/ucl_str.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_str.c"
  3990. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c
  3991. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/ucl/ucl_util.d" -o "src/compress/ucl/ucl_util.o" "E:/code/tianmai/workspace/encryption_new/src/compress/ucl/ucl_util.c"
  3992. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp
  3993. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -D__cplusplus -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -I"E:\code\tianmai\workspace\encryption_new\src\sio" -I"E:\code\tianmai\workspace\encryption_new\src\puf" -ID:/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\zstd" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzma" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lz4" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\compress\lzo" -I"E:\code\tianmai\workspace\encryption_new\src\compress\ucl" -I"" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/inet -ID:/ACoreIDE/target/common/include/drv/sio -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/vxworks -ID:/ACoreIDE/target/acoreosmp/include/posix -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -MMD -MF"src/compress/lzo/minilzo.d" -o "src/compress/lzo/minilzo.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp"
  3994. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  3995. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  3996. #pragma once
  3997. ^
  3998. E:/code/tianmai/workspace/encryption_new/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  3999. #pragma once
  4000. ^
  4001. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c
  4002. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/FileIO.d" -o "src/compress/lzma/FileIO.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/FileIO.c"
  4003. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c
  4004. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaCompress.d" -o "src/compress/lzma/TinyLzmaCompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaCompress.c"
  4005. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c
  4006. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lzma/TinyLzmaDecompress.d" -o "src/compress/lzma/TinyLzmaDecompress.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c"
  4007. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c: In function 'tinyLzmaDecompress':
  4008. E:/code/tianmai/workspace/encryption_new/src/compress/lzma/TinyLzmaDecompress.c:482:5: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
  4009. printf("comingg lzma1\n");
  4010. ^
  4011. Building file: E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c
  4012. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/compress/lz4/lz4.d" -o "src/compress/lz4/lz4.o" "E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c"
  4013. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  4014. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4015. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  4016. ^
  4017. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  4018. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4019. ^
  4020. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4021. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  4022. ^
  4023. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  4024. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4025. ^
  4026. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4027. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  4028. ^
  4029. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  4030. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4031. ^
  4032. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4033. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  4034. ^
  4035. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  4036. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4037. ^
  4038. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4039. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  4040. ^
  4041. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  4042. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4043. ^
  4044. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4045. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  4046. ^
  4047. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  4048. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4049. ^
  4050. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4051. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  4052. ^
  4053. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  4054. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4055. ^
  4056. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  4057. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  4058. ^
  4059. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  4060. LZ4_FORCE_INLINE int LZ4_compress_generic(
  4061. ^
  4062. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  4063. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  4064. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  4065. ^
  4066. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4067. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  4068. ^
  4069. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  4070. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  4071. ^
  4072. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4073. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  4074. ^
  4075. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  4076. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  4077. (BYTE*)dest, NULL, 0);
  4078. ^
  4079. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  4080. LZ4_decompress_generic(
  4081. ^
  4082. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  4083. (BYTE*)dest, NULL, 0);
  4084. ^
  4085. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  4086. LZ4_decompress_generic(
  4087. ^
  4088. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  4089. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  4090. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  4091. ^
  4092. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4093. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  4094. ^
  4095. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  4096. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  4097. ^
  4098. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4099. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  4100. ^
  4101. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  4102. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  4103. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  4104. ^
  4105. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4106. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  4107. ^
  4108. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  4109. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  4110. ^
  4111. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4112. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  4113. ^
  4114. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  4115. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  4116. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  4117. ^
  4118. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4119. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  4120. ^
  4121. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  4122. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  4123. ^
  4124. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4125. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  4126. ^
  4127. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  4128. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  4129. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  4130. ^
  4131. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4132. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  4133. ^
  4134. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  4135. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  4136. ^
  4137. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4138. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  4139. ^
  4140. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  4141. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  4142. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  4143. ^
  4144. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4145. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  4146. ^
  4147. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  4148. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  4149. ^
  4150. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4151. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  4152. ^
  4153. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  4154. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  4155. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  4156. ^
  4157. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4158. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  4159. ^
  4160. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  4161. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  4162. ^
  4163. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4164. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  4165. ^
  4166. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  4167. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  4168. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  4169. ^
  4170. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  4171. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  4172. ^
  4173. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  4174. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  4175. ^
  4176. E:/code/tianmai/workspace/encryption_new/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  4177. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  4178. ^
  4179. Building file: E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c
  4180. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/cpu_endian.d" -o "src/common/cpu_endian.o" "E:/code/tianmai/workspace/encryption_new/src/common/cpu_endian.c"
  4181. Building file: E:/code/tianmai/workspace/encryption_new/src/common/debug.c
  4182. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/debug.d" -o "src/common/debug.o" "E:/code/tianmai/workspace/encryption_new/src/common/debug.c"
  4183. E:/code/tianmai/workspace/encryption_new/src/common/debug.c: In function 'debugDisplayArray':
  4184. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  4185. TRACE_PRINTF("%s", prepend);
  4186. ^
  4187. E:/code/tianmai/workspace/encryption_new/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  4188. Building file: E:/code/tianmai/workspace/encryption_new/src/common/str.c
  4189. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF"src/common/str.d" -o "src/common/str.o" "E:/code/tianmai/workspace/encryption_new/src/common/str.c"
  4190. Building file: E:/code/tianmai/workspace/encryption_new/.system/appComInit.c
  4191. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DACOREMCOS_MCORE -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -ID:/ACoreIDE/target/acoreosmp/include/vxworks -I"E:\code\tianmai\workspace\encryption_new\src\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers\common" -I"E:\code\tianmai\workspace\encryption_new\src\headers" -I"" -IE:/code/tianmai/workspace/encryption_new/ -IE:/code/tianmai/workspace/encryption_new/src -ID:/ACoreIDE/target/common/include -ID:/ACoreIDE/target/common/include/os -ID:/ACoreIDE/target/common/include/arch -ID:/ACoreIDE/target/common/include/rtl -ID:/ACoreIDE/target/common/include/rtl/sys -ID:/ACoreIDE/target/common/include/rtl/math -ID:/ACoreIDE/target/common/include/fs -ID:/ACoreIDE/target/common/include/drv -ID:/ACoreIDE/target/acoreosmp/include/ -ID:/ACoreIDE/target/acoreosmp/include/posix -ID:/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -O0 -g -Wall -c -fno-builtin -fno-common -fno-strict-aliasing -fno-short-enums -fmessage-length=0 -march=armv8-a -mword-relocations -mlong-calls -mlittle-endian -mhard-float -mfpu=vfpv3 -mno-unaligned-access -MMD -MF".system/appComInit.d" -o ".system/appComInit.o" "E:/code/tianmai/workspace/encryption_new/.system/appComInit.c"
  4192. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a
  4193. Invoking: GCC Archiver
  4194. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a @prjObjs.lst
  4195. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished\n'
  4196. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a Finished
  4197. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -ID:/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.c
  4198. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  4199. #D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -o checkname.o
  4200. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/preLinkCmds D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  4201. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/size -A -x E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel 1>presize.txt
  4202. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/gawk -f D:/ACoreIDE/host/acoreosmp/script/parse.awk presize.txt > linkcmds
  4203. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel presize.txt
  4204. Invoking: GCC C Linker
  4205. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -r -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel
  4206. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy --add-section .imgattr=E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/ImgInfoGen E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_tmp.rel E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel
  4207. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.rel Finished
  4208. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  4209. Invoking: GCC C Linker
  4210. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -Ttext=0xa0000000 -LE:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore -LD:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a -LD:/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/catlinkcmds -Map map.txt D:/ACoreIDE/target/acoreosmp/lib/mcore/gcc-4.8.1/arm/armv8a/appCplusStart.o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/imageInfo.o D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/libencryption_new.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -lmo2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lvmm2aclb -lmpart2aclb -lselect2aclb -lv2aclb -lvxAtomic -lcomarch --end-group D:/ACoreIDE/target/common/lib/mcore/gcc-4.8.1/arm/armv8a/crtend.o -o E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf
  4211. D:/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy -O binary --strip-unneeded -R .note -R .comment -R .stab -R .stabstr -R .pbss E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new_ROM.elf E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin
  4212. Building target: E:/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore/encryption_new.bin Finished
  4213. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption_new/ft2000aC4_le_hard_sys_mcore'