encryption.build.log 471 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223
  1. 13:32:58 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  2. make clean
  3. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  4. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  5. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  6. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  7. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  9. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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. 13:32:59 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  11. make clean
  12. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  13. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  14. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  15. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  16. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  17. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  18. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  19. 13:32:59 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  20. make all
  21. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  22. Generate config files...
  23. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  24. .h and .mk File build success!
  25. Generate link script files...
  26. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  27. done.
  28. Image Info file... ImageInfo.c ImageinfoGen
  29. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  30. imageInfo.c File build success!
  31. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  32. ImgInfoGen File build success!
  33. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  34. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  35. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  36. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  37. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:25:19: fatal error: ioLib.h: No such file or directory
  38. #include <ioLib.h>
  39. ^
  40. compilation terminated.
  41. make[1]: *** [src/sio/sioPl01x.o] Error 1
  42. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  43. make: *** [all] Error 2
  44. 13:34:57 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  45. make clean
  46. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  47. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  48. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  49. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  50. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  51. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  52. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  53. 13:34:57 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  54. make all
  55. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  56. Generate config files...
  57. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  58. .h and .mk File build success!
  59. Generate link script files...
  60. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  61. done.
  62. Image Info file... ImageInfo.c ImageinfoGen
  63. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  64. imageInfo.c File build success!
  65. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  66. ImgInfoGen File build success!
  67. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  68. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  69. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  70. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  71. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:25:19: fatal error: ioLib.h: No such file or directory
  72. #include <ioLib.h>
  73. ^
  74. compilation terminated.
  75. make[1]: *** [src/sio/sioPl01x.o] Error 1
  76. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  77. make: *** [all] Error 2
  78. 13:35:25 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  79. make clean
  80. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  81. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  82. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  83. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  84. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  85. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  86. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  87. 13:35:25 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  88. make all
  89. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  90. Generate config files...
  91. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  92. .h and .mk File build success!
  93. Generate link script files...
  94. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  95. done.
  96. Image Info file... ImageInfo.c ImageinfoGen
  97. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  98. imageInfo.c File build success!
  99. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  100. ImgInfoGen File build success!
  101. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  102. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  103. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  104. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  105. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:25:19: fatal error: ioLib.h: No such file or directory
  106. #include <ioLib.h>
  107. ^
  108. compilation terminated.
  109. make[1]: *** [src/sio/sioPl01x.o] Error 1
  110. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  111. make: *** [all] Error 2
  112. 13:36:26 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  113. make clean
  114. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  115. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  116. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  117. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  118. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  119. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  120. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  121. 13:36:27 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  122. make all
  123. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  124. Generate config files...
  125. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  126. .h and .mk File build success!
  127. Generate link script files...
  128. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  129. done.
  130. Image Info file... ImageInfo.c ImageinfoGen
  131. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  132. imageInfo.c File build success!
  133. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  134. ImgInfoGen File build success!
  135. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  136. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  137. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  138. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  139. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  140. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  141. ACoreOs_cache_flush(1, 0, 0);
  142. ^
  143. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  144. UINT32 numChars = 0;
  145. ^
  146. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'serial':
  147. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  148. unsigned char *readed = malloc(41);
  149. ^
  150. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  151. unsigned char *readed = malloc(41);
  152. ^
  153. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:583:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  154. memset(readed,0,41);
  155. ^
  156. Building file: C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp
  157. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp"
  158. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  159. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1:0: note: this is the location of the previous definition
  160. /*
  161. ^
  162. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  163. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  164. #define MAX_DIRNAMES 32 /* max directory names in path*/
  165. ^
  166. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  167. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  168. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  169. #define MAX_DIRNAMES 148 /* max directory names in path */
  170. ^
  171. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  172. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  173. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  174. ^
  175. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  176. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  177. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  178. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  179. ^
  180. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  181. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  182. #define FIOUNMOUNT 39 /* unmount disk volume */
  183. ^
  184. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  185. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  186. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  187. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  188. ^
  189. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  190. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  191. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  192. ^
  193. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  194. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  195. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  196. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  197. ^
  198. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  199. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  200. #define FIONCONTIG 41 /* get size of max contig area on dev */
  201. ^
  202. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  203. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  204. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  205. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  206. ^
  207. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  208. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  209. #define FIOTRUNC 42 /* truncate file to specified length */
  210. ^
  211. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  212. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  213. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  214. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  215. ^
  216. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  217. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  218. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  219. ^
  220. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  221. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  222. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  223. #define FIOGETFL 44 /* 获得文件操作模式 */
  224. ^
  225. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  226. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  227. #define FIOTIMESET 44 /* change times on a file for utime() */
  228. ^
  229. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  230. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  231. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  232. #define FIOTIMESET 45 /* 改变文件的时间 */
  233. ^
  234. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  235. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  236. #define FIOINODETONAME 45 /* given inode number, return filename*/
  237. ^
  238. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  239. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  240. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  241. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  242. ^
  243. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  244. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:38:
  245. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  246. #define _CACHE_ALIGN_SIZE 32
  247. ^
  248. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  249. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:28:
  250. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  251. #define _CACHE_ALIGN_SIZE 16
  252. ^
  253. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:66:19: fatal error: pl01x.h: No such file or directory
  254. #include "pl01x.h"
  255. ^
  256. compilation terminated.
  257. make[1]: *** [src/init_test.o] Error 1
  258. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  259. make: *** [all] Error 2
  260. 13:37:37 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  261. make clean
  262. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  263. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  264. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  265. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  266. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  267. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  268. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  269. 13:37:38 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  270. make all
  271. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  272. Generate config files...
  273. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  274. .h and .mk File build success!
  275. Generate link script files...
  276. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  277. done.
  278. Image Info file... ImageInfo.c ImageinfoGen
  279. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  280. imageInfo.c File build success!
  281. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  282. ImgInfoGen File build success!
  283. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  284. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  285. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  286. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  287. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  288. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  289. ACoreOs_cache_flush(1, 0, 0);
  290. ^
  291. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  292. UINT32 numChars = 0;
  293. ^
  294. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'serial':
  295. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  296. unsigned char *readed = malloc(41);
  297. ^
  298. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  299. unsigned char *readed = malloc(41);
  300. ^
  301. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:583:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  302. memset(readed,0,41);
  303. ^
  304. Building file: C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp
  305. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp"
  306. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  307. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1:0: note: this is the location of the previous definition
  308. /*
  309. ^
  310. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  311. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  312. #define MAX_DIRNAMES 32 /* max directory names in path*/
  313. ^
  314. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  315. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  316. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  317. #define MAX_DIRNAMES 148 /* max directory names in path */
  318. ^
  319. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  320. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  321. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  322. ^
  323. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  324. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  325. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  326. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  327. ^
  328. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  329. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  330. #define FIOUNMOUNT 39 /* unmount disk volume */
  331. ^
  332. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  333. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  334. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  335. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  336. ^
  337. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  338. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  339. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  340. ^
  341. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  342. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  343. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  344. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  345. ^
  346. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  347. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  348. #define FIONCONTIG 41 /* get size of max contig area on dev */
  349. ^
  350. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  351. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  352. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  353. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  354. ^
  355. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  356. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  357. #define FIOTRUNC 42 /* truncate file to specified length */
  358. ^
  359. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  360. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  361. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  362. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  363. ^
  364. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  365. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  366. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  367. ^
  368. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  369. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  370. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  371. #define FIOGETFL 44 /* 获得文件操作模式 */
  372. ^
  373. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  374. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  375. #define FIOTIMESET 44 /* change times on a file for utime() */
  376. ^
  377. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  378. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  379. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  380. #define FIOTIMESET 45 /* 改变文件的时间 */
  381. ^
  382. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  383. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  384. #define FIOINODETONAME 45 /* given inode number, return filename*/
  385. ^
  386. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  387. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  388. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  389. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  390. ^
  391. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  392. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:38:
  393. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  394. #define _CACHE_ALIGN_SIZE 32
  395. ^
  396. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  397. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:28:
  398. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  399. #define _CACHE_ALIGN_SIZE 16
  400. ^
  401. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:66:19: fatal error: pl01x.h: No such file or directory
  402. #include "pl01x.h"
  403. ^
  404. compilation terminated.
  405. make[1]: *** [src/init_test.o] Error 1
  406. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  407. make: *** [all] Error 2
  408. 13:38:06 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  409. make clean
  410. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  411. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  412. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  413. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  414. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  415. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  416. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  417. 13:38:06 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  418. make all
  419. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  420. Generate config files...
  421. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  422. .h and .mk File build success!
  423. Generate link script files...
  424. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  425. done.
  426. Image Info file... ImageInfo.c ImageinfoGen
  427. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  428. imageInfo.c File build success!
  429. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  430. ImgInfoGen File build success!
  431. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  432. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  433. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  434. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  435. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  436. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  437. ACoreOs_cache_flush(1, 0, 0);
  438. ^
  439. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  440. UINT32 numChars = 0;
  441. ^
  442. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'serial':
  443. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  444. unsigned char *readed = malloc(41);
  445. ^
  446. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  447. unsigned char *readed = malloc(41);
  448. ^
  449. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:583:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  450. memset(readed,0,41);
  451. ^
  452. Building file: C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp
  453. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp"
  454. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  455. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1:0: note: this is the location of the previous definition
  456. /*
  457. ^
  458. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  459. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  460. #define MAX_DIRNAMES 32 /* max directory names in path*/
  461. ^
  462. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  463. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  464. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  465. #define MAX_DIRNAMES 148 /* max directory names in path */
  466. ^
  467. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  468. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  469. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  470. ^
  471. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  472. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  473. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  474. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  475. ^
  476. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  477. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  478. #define FIOUNMOUNT 39 /* unmount disk volume */
  479. ^
  480. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  481. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  482. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  483. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  484. ^
  485. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  486. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  487. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  488. ^
  489. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  490. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  491. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  492. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  493. ^
  494. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  495. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  496. #define FIONCONTIG 41 /* get size of max contig area on dev */
  497. ^
  498. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  499. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  500. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  501. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  502. ^
  503. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  504. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  505. #define FIOTRUNC 42 /* truncate file to specified length */
  506. ^
  507. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  508. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  509. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  510. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  511. ^
  512. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  513. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  514. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  515. ^
  516. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  517. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  518. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  519. #define FIOGETFL 44 /* 获得文件操作模式 */
  520. ^
  521. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  522. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  523. #define FIOTIMESET 44 /* change times on a file for utime() */
  524. ^
  525. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  526. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  527. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  528. #define FIOTIMESET 45 /* 改变文件的时间 */
  529. ^
  530. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  531. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  532. #define FIOINODETONAME 45 /* given inode number, return filename*/
  533. ^
  534. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  535. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  536. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  537. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  538. ^
  539. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  540. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:38:
  541. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  542. #define _CACHE_ALIGN_SIZE 32
  543. ^
  544. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  545. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:28:
  546. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  547. #define _CACHE_ALIGN_SIZE 16
  548. ^
  549. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:98:0:
  550. C:\Users\613\Desktop\workspace\encryption\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  551. #define R_OK 0
  552. ^
  553. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:26:0:
  554. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  555. #define R_OK 4
  556. ^
  557. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:145:0: warning: "writel" redefined [enabled by default]
  558. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  559. ^
  560. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:23:0:
  561. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  562. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  563. ^
  564. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:79:0:
  565. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  566. char *PRIME_SOURCE_FILE = "primes.txt";
  567. ^
  568. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  569. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:130:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  570. for (int i = 0; i < len; i++) {
  571. ^
  572. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  573. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:260:1: warning: no return statement in function returning non-void [-Wreturn-type]
  574. }
  575. ^
  576. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  577. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:380:1: warning: no return statement in function returning non-void [-Wreturn-type]
  578. }
  579. ^
  580. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'uint8_t* get_mac()':
  581. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:462:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  582. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  583. ^
  584. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'void task_3()':
  585. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:507:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  586. int fd = check("ty0");
  587. ^
  588. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:610:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  589. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  590. ^
  591. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:634:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  592. flash_address + MAGIC_LENGTH + encrypted_file_size,
  593. ^
  594. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:634:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  595. flash_address + MAGIC_LENGTH + encrypted_file_size,
  596. ^
  597. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:653:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  598. flash_address + MAGIC_LENGTH + encrypted_file_size
  599. ^
  600. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:653:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  601. flash_address + MAGIC_LENGTH + encrypted_file_size
  602. ^
  603. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:654:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  604. + encrypted_key_size,
  605. ^
  606. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:664:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  607. flash_address + MAGIC_LENGTH + encrypted_file_size
  608. ^
  609. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:664:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  610. flash_address + MAGIC_LENGTH + encrypted_file_size
  611. ^
  612. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:665:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  613. + encrypted_key_size
  614. ^
  615. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:666:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  616. + sizeof(struct public_key_class),
  617. ^
  618. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:702:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  619. flash_address + MAGIC_LENGTH + encrypted_file_size
  620. ^
  621. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:702:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  622. flash_address + MAGIC_LENGTH + encrypted_file_size
  623. ^
  624. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:703:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  625. + encrypted_key_size,
  626. ^
  627. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:720:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  628. flash_address + MAGIC_LENGTH + encrypted_file_size
  629. ^
  630. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:720:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  631. flash_address + MAGIC_LENGTH + encrypted_file_size
  632. ^
  633. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  634. + encrypted_key_size + ECC_KEYSIZE,
  635. ^
  636. In file included from C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:4:0,
  637. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:80:
  638. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  639. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  640. ^
  641. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  642. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  643. ^
  644. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:31: note: in expansion of macro 'ECC_KEYSIZE'
  645. + encrypted_key_size + ECC_KEYSIZE,
  646. ^
  647. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  648. #define ECC_PRV_KEY_SIZE 72
  649. ^
  650. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  651. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  652. ^
  653. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:31: note: in expansion of macro 'ECC_KEYSIZE'
  654. + encrypted_key_size + ECC_KEYSIZE,
  655. ^
  656. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:754:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  657. flash_address + MAGIC_LENGTH + encrypted_file_size
  658. ^
  659. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:754:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  660. flash_address + MAGIC_LENGTH + encrypted_file_size
  661. ^
  662. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  663. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  664. ^
  665. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  666. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  667. ^
  668. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  669. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  670. ^
  671. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:816:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  672. for (int i = 0; i < encrypted_key_size; i++) {
  673. ^
  674. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:854:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  675. for (int i = 0; i < encrypted_file_size; i += input_length) {
  676. ^
  677. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:863:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  678. for (int i = 0; i < encrypted_file_size; i += input_length) {
  679. ^
  680. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:871:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  681. for (int i = 0; i < encrypted_file_size; i += input_length) {
  682. ^
  683. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:967:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  684. fd = check("ty0");
  685. ^
  686. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1010:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  687. for (int i = 0; i < reencrypted_file_size; i += input_length)
  688. ^
  689. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1018:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  690. for (int i = 0; i < reencrypted_file_size; i += input_length)
  691. ^
  692. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1026:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  693. for (int i = 0; i < reencrypted_file_size; i += input_length)
  694. ^
  695. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1119:12: warning: unused variable 'out_size' [-Wunused-variable]
  696. uint32_t out_size;
  697. ^
  698. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:740:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  699. uint8_t cp_mac_array[10][18] = { '0' };
  700. ^
  701. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: At global scope:
  702. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  703. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  704. ^
  705. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  706. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  707. ^
  708. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/aes.c
  709. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/aes.c"
  710. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/cpu_endian.c
  711. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/cpu_endian.c"
  712. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/des.c
  713. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/des.c"
  714. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/des3.c
  715. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/des3.c"
  716. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecb.c
  717. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecb.c"
  718. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc.c
  719. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc.c"
  720. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc_rc4.c
  721. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc_rc4.c"
  722. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c
  723. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c"
  724. C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  725. static void gf2field_inc(gf2elem_t x) {
  726. ^
  727. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/rc4.c
  728. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/rc4.c"
  729. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/rsa.c
  730. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/rsa.c"
  731. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c
  732. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c"
  733. C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  734. #define CLOCKS_PER_SEC 1000
  735. ^
  736. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  737. from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/stdio.h:34,
  738. from C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c:43282:
  739. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  740. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  741. ^
  742. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/alloc_ucl.c
  743. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/alloc_ucl.c"
  744. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/io.c
  745. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/io.c"
  746. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_99.c
  747. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_99.c"
  748. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_d.c
  749. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_d.c"
  750. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_ds.c
  751. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_ds.c"
  752. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_to.c
  753. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_to.c"
  754. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_99.c
  755. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_99.c"
  756. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_d.c
  757. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_d.c"
  758. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_ds.c
  759. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_ds.c"
  760. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_to.c
  761. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_to.c"
  762. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_99.c
  763. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_99.c"
  764. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_d.c
  765. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_d.c"
  766. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_ds.c
  767. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_ds.c"
  768. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_to.c
  769. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_to.c"
  770. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_crc.c
  771. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_crc.c"
  772. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_dll.c
  773. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_dll.c"
  774. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_init.c
  775. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_init.c"
  776. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_ptr.c
  777. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_ptr.c"
  778. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_str.c
  779. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_str.c"
  780. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_util.c
  781. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_util.c"
  782. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp
  783. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp"
  784. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  785. C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  786. #pragma once
  787. ^
  788. C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  789. #pragma once
  790. ^
  791. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/FileIO.c
  792. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/FileIO.c"
  793. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaCompress.c
  794. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaCompress.c"
  795. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaDecompress.c
  796. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaDecompress.c"
  797. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c
  798. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c"
  799. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  800. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  801. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  802. ^
  803. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  804. LZ4_FORCE_INLINE int LZ4_compress_generic(
  805. ^
  806. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  807. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  808. ^
  809. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  810. LZ4_FORCE_INLINE int LZ4_compress_generic(
  811. ^
  812. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  813. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  814. ^
  815. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  816. LZ4_FORCE_INLINE int LZ4_compress_generic(
  817. ^
  818. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  819. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  820. ^
  821. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  822. LZ4_FORCE_INLINE int LZ4_compress_generic(
  823. ^
  824. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  825. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  826. ^
  827. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  828. LZ4_FORCE_INLINE int LZ4_compress_generic(
  829. ^
  830. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  831. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  832. ^
  833. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  834. LZ4_FORCE_INLINE int LZ4_compress_generic(
  835. ^
  836. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  837. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  838. ^
  839. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  840. LZ4_FORCE_INLINE int LZ4_compress_generic(
  841. ^
  842. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  843. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  844. ^
  845. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  846. LZ4_FORCE_INLINE int LZ4_compress_generic(
  847. ^
  848. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  849. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  850. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  851. ^
  852. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  853. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  854. ^
  855. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  856. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  857. ^
  858. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  859. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  860. ^
  861. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  862. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  863. (BYTE*)dest, NULL, 0);
  864. ^
  865. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  866. LZ4_decompress_generic(
  867. ^
  868. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  869. (BYTE*)dest, NULL, 0);
  870. ^
  871. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  872. LZ4_decompress_generic(
  873. ^
  874. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  875. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  876. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  877. ^
  878. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  879. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  880. ^
  881. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  882. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  883. ^
  884. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  885. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  886. ^
  887. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  888. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  889. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  890. ^
  891. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  892. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  893. ^
  894. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  895. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  896. ^
  897. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  898. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  899. ^
  900. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  901. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  902. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  903. ^
  904. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  905. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  906. ^
  907. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  908. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  909. ^
  910. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  911. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  912. ^
  913. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  914. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  915. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  916. ^
  917. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  918. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  919. ^
  920. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  921. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  922. ^
  923. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  924. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  925. ^
  926. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  927. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  928. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  929. ^
  930. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  931. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  932. ^
  933. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  934. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  935. ^
  936. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  937. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  938. ^
  939. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  940. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  941. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  942. ^
  943. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  944. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  945. ^
  946. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  947. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  948. ^
  949. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  950. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  951. ^
  952. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  953. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  954. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  955. ^
  956. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  957. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  958. ^
  959. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  960. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  961. ^
  962. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  963. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  964. ^
  965. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/cpu_endian.c
  966. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/cpu_endian.c"
  967. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/debug.c
  968. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/debug.c"
  969. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c: In function 'debugDisplayArray':
  970. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  971. TRACE_PRINTF("%s", prepend);
  972. ^
  973. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  974. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/str.c
  975. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/str.c"
  976. Building file: C:/Users/613/Desktop/workspace/encryption/.system/appComInit.c
  977. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/.system/appComInit.c"
  978. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a
  979. Invoking: GCC Archiver
  980. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a @prjObjs.lst
  981. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a Finished\n'
  982. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a Finished
  983. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.c
  984. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  985. #C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -o checkname.o
  986. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/preLinkCmds C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  987. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/size -A -x C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel 1>presize.txt
  988. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/gawk -f C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/acoreosmp/script/parse.awk presize.txt > linkcmds
  989. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel presize.txt
  990. Invoking: GCC C Linker
  991. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -r -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/catlinkcmds -Map map.txt C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_tmp.rel
  992. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy --add-section .imgattr=C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/ImgInfoGen C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_tmp.rel C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  993. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel Finished
  994. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin
  995. Invoking: GCC C Linker
  996. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -Ttext=0xa0000000 -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/catlinkcmds -Map map.txt C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_ROM.elf
  997. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy -O binary --strip-unneeded -R .note -R .comment -R .stab -R .stabstr -R .pbss C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_ROM.elf C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin
  998. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin Finished
  999. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1000. 13:49:26 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  1001. make clean
  1002. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  1003. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1004. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  1005. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  1006. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  1007. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1008. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  1009. 13:49:26 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  1010. make all
  1011. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  1012. Generate config files...
  1013. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  1014. .h and .mk File build success!
  1015. Generate link script files...
  1016. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  1017. done.
  1018. Image Info file... ImageInfo.c ImageinfoGen
  1019. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  1020. imageInfo.c File build success!
  1021. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  1022. ImgInfoGen File build success!
  1023. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  1024. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1025. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  1026. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  1027. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  1028. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  1029. ACoreOs_cache_flush(1, 0, 0);
  1030. ^
  1031. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  1032. UINT32 numChars = 0;
  1033. ^
  1034. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'serial':
  1035. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  1036. unsigned char *readed = malloc(41);
  1037. ^
  1038. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  1039. unsigned char *readed = malloc(41);
  1040. ^
  1041. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:583:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  1042. memset(readed,0,41);
  1043. ^
  1044. Building file: C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp
  1045. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp"
  1046. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  1047. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1:0: note: this is the location of the previous definition
  1048. /*
  1049. ^
  1050. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1051. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  1052. #define MAX_DIRNAMES 32 /* max directory names in path*/
  1053. ^
  1054. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1055. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1056. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  1057. #define MAX_DIRNAMES 148 /* max directory names in path */
  1058. ^
  1059. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1060. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  1061. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  1062. ^
  1063. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1064. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1065. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  1066. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  1067. ^
  1068. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1069. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  1070. #define FIOUNMOUNT 39 /* unmount disk volume */
  1071. ^
  1072. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1073. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1074. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  1075. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  1076. ^
  1077. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1078. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  1079. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  1080. ^
  1081. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1082. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1083. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  1084. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  1085. ^
  1086. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1087. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  1088. #define FIONCONTIG 41 /* get size of max contig area on dev */
  1089. ^
  1090. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1091. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1092. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  1093. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  1094. ^
  1095. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1096. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  1097. #define FIOTRUNC 42 /* truncate file to specified length */
  1098. ^
  1099. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1100. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1101. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  1102. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  1103. ^
  1104. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1105. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  1106. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  1107. ^
  1108. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1109. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1110. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  1111. #define FIOGETFL 44 /* 获得文件操作模式 */
  1112. ^
  1113. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1114. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  1115. #define FIOTIMESET 44 /* change times on a file for utime() */
  1116. ^
  1117. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1118. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1119. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  1120. #define FIOTIMESET 45 /* 改变文件的时间 */
  1121. ^
  1122. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1123. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  1124. #define FIOINODETONAME 45 /* given inode number, return filename*/
  1125. ^
  1126. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1127. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1128. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  1129. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  1130. ^
  1131. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  1132. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:38:
  1133. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  1134. #define _CACHE_ALIGN_SIZE 32
  1135. ^
  1136. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  1137. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:28:
  1138. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  1139. #define _CACHE_ALIGN_SIZE 16
  1140. ^
  1141. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:98:0:
  1142. C:\Users\613\Desktop\workspace\encryption\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  1143. #define R_OK 0
  1144. ^
  1145. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:26:0:
  1146. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  1147. #define R_OK 4
  1148. ^
  1149. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:145:0: warning: "writel" redefined [enabled by default]
  1150. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  1151. ^
  1152. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:23:0:
  1153. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  1154. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  1155. ^
  1156. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:79:0:
  1157. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1158. char *PRIME_SOURCE_FILE = "primes.txt";
  1159. ^
  1160. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  1161. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:130:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1162. for (int i = 0; i < len; i++) {
  1163. ^
  1164. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  1165. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:260:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1166. }
  1167. ^
  1168. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  1169. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:380:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1170. }
  1171. ^
  1172. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'uint8_t* get_mac()':
  1173. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:462:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  1174. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  1175. ^
  1176. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'void task_3()':
  1177. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:507:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1178. int fd = check("ty0");
  1179. ^
  1180. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:610:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1181. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  1182. ^
  1183. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:634:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1184. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1185. ^
  1186. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:634:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1187. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1188. ^
  1189. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:653:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1190. flash_address + MAGIC_LENGTH + encrypted_file_size
  1191. ^
  1192. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:653:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1193. flash_address + MAGIC_LENGTH + encrypted_file_size
  1194. ^
  1195. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:654:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1196. + encrypted_key_size,
  1197. ^
  1198. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:664:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1199. flash_address + MAGIC_LENGTH + encrypted_file_size
  1200. ^
  1201. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:664:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1202. flash_address + MAGIC_LENGTH + encrypted_file_size
  1203. ^
  1204. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:665:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1205. + encrypted_key_size
  1206. ^
  1207. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:666:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1208. + sizeof(struct public_key_class),
  1209. ^
  1210. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:702:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1211. flash_address + MAGIC_LENGTH + encrypted_file_size
  1212. ^
  1213. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:702:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1214. flash_address + MAGIC_LENGTH + encrypted_file_size
  1215. ^
  1216. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:703:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1217. + encrypted_key_size,
  1218. ^
  1219. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:720:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1220. flash_address + MAGIC_LENGTH + encrypted_file_size
  1221. ^
  1222. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:720:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1223. flash_address + MAGIC_LENGTH + encrypted_file_size
  1224. ^
  1225. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1226. + encrypted_key_size + ECC_KEYSIZE,
  1227. ^
  1228. In file included from C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:4:0,
  1229. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:80:
  1230. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1231. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  1232. ^
  1233. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  1234. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1235. ^
  1236. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:31: note: in expansion of macro 'ECC_KEYSIZE'
  1237. + encrypted_key_size + ECC_KEYSIZE,
  1238. ^
  1239. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1240. #define ECC_PRV_KEY_SIZE 72
  1241. ^
  1242. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  1243. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1244. ^
  1245. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:31: note: in expansion of macro 'ECC_KEYSIZE'
  1246. + encrypted_key_size + ECC_KEYSIZE,
  1247. ^
  1248. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:754:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1249. flash_address + MAGIC_LENGTH + encrypted_file_size
  1250. ^
  1251. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:754:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1252. flash_address + MAGIC_LENGTH + encrypted_file_size
  1253. ^
  1254. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1255. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1256. ^
  1257. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1258. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1259. ^
  1260. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1261. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1262. ^
  1263. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:816:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1264. for (int i = 0; i < encrypted_key_size; i++) {
  1265. ^
  1266. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:854:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1267. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1268. ^
  1269. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:863:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1270. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1271. ^
  1272. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:871:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1273. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1274. ^
  1275. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:967:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1276. fd = check("ty0");
  1277. ^
  1278. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1010:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1279. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1280. ^
  1281. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1018:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1282. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1283. ^
  1284. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1026:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1285. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1286. ^
  1287. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1119:12: warning: unused variable 'out_size' [-Wunused-variable]
  1288. uint32_t out_size;
  1289. ^
  1290. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:740:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  1291. uint8_t cp_mac_array[10][18] = { '0' };
  1292. ^
  1293. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: At global scope:
  1294. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  1295. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  1296. ^
  1297. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  1298. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  1299. ^
  1300. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/aes.c
  1301. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/aes.c"
  1302. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/cpu_endian.c
  1303. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/cpu_endian.c"
  1304. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/des.c
  1305. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/des.c"
  1306. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/des3.c
  1307. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/des3.c"
  1308. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecb.c
  1309. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecb.c"
  1310. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc.c
  1311. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc.c"
  1312. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc_rc4.c
  1313. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc_rc4.c"
  1314. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c
  1315. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c"
  1316. C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  1317. static void gf2field_inc(gf2elem_t x) {
  1318. ^
  1319. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/rc4.c
  1320. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/rc4.c"
  1321. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/rsa.c
  1322. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/rsa.c"
  1323. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c
  1324. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c"
  1325. C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  1326. #define CLOCKS_PER_SEC 1000
  1327. ^
  1328. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  1329. from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/stdio.h:34,
  1330. from C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c:43282:
  1331. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  1332. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  1333. ^
  1334. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/alloc_ucl.c
  1335. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/alloc_ucl.c"
  1336. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/io.c
  1337. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/io.c"
  1338. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_99.c
  1339. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_99.c"
  1340. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_d.c
  1341. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_d.c"
  1342. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_ds.c
  1343. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_ds.c"
  1344. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_to.c
  1345. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_to.c"
  1346. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_99.c
  1347. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_99.c"
  1348. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_d.c
  1349. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_d.c"
  1350. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_ds.c
  1351. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_ds.c"
  1352. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_to.c
  1353. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_to.c"
  1354. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_99.c
  1355. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_99.c"
  1356. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_d.c
  1357. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_d.c"
  1358. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_ds.c
  1359. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_ds.c"
  1360. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_to.c
  1361. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_to.c"
  1362. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_crc.c
  1363. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_crc.c"
  1364. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_dll.c
  1365. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_dll.c"
  1366. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_init.c
  1367. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_init.c"
  1368. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_ptr.c
  1369. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_ptr.c"
  1370. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_str.c
  1371. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_str.c"
  1372. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_util.c
  1373. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_util.c"
  1374. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp
  1375. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp"
  1376. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  1377. C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  1378. #pragma once
  1379. ^
  1380. C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  1381. #pragma once
  1382. ^
  1383. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/FileIO.c
  1384. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/FileIO.c"
  1385. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaCompress.c
  1386. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaCompress.c"
  1387. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaDecompress.c
  1388. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaDecompress.c"
  1389. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c
  1390. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c"
  1391. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  1392. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1393. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  1394. ^
  1395. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1396. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1397. ^
  1398. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1399. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  1400. ^
  1401. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1402. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1403. ^
  1404. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1405. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  1406. ^
  1407. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1408. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1409. ^
  1410. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1411. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  1412. ^
  1413. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1414. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1415. ^
  1416. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1417. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  1418. ^
  1419. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1420. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1421. ^
  1422. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1423. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  1424. ^
  1425. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1426. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1427. ^
  1428. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1429. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  1430. ^
  1431. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1432. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1433. ^
  1434. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1435. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  1436. ^
  1437. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1438. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1439. ^
  1440. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  1441. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1442. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  1443. ^
  1444. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1445. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1446. ^
  1447. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1448. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  1449. ^
  1450. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1451. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1452. ^
  1453. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  1454. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  1455. (BYTE*)dest, NULL, 0);
  1456. ^
  1457. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1458. LZ4_decompress_generic(
  1459. ^
  1460. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  1461. (BYTE*)dest, NULL, 0);
  1462. ^
  1463. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  1464. LZ4_decompress_generic(
  1465. ^
  1466. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  1467. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1468. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1469. ^
  1470. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1471. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1472. ^
  1473. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1474. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1475. ^
  1476. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1477. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1478. ^
  1479. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  1480. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1481. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1482. ^
  1483. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1484. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1485. ^
  1486. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1487. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  1488. ^
  1489. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1490. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1491. ^
  1492. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  1493. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1494. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  1495. ^
  1496. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1497. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1498. ^
  1499. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1500. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  1501. ^
  1502. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1503. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1504. ^
  1505. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  1506. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1507. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  1508. ^
  1509. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1510. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1511. ^
  1512. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  1513. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  1514. ^
  1515. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1516. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  1517. ^
  1518. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  1519. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1520. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  1521. ^
  1522. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1523. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1524. ^
  1525. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1526. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  1527. ^
  1528. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1529. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1530. ^
  1531. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  1532. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1533. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  1534. ^
  1535. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1536. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1537. ^
  1538. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  1539. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  1540. ^
  1541. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1542. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  1543. ^
  1544. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  1545. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1546. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  1547. ^
  1548. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  1549. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1550. ^
  1551. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  1552. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  1553. ^
  1554. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  1555. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  1556. ^
  1557. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/cpu_endian.c
  1558. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/cpu_endian.c"
  1559. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/debug.c
  1560. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/debug.c"
  1561. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c: In function 'debugDisplayArray':
  1562. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  1563. TRACE_PRINTF("%s", prepend);
  1564. ^
  1565. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  1566. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/str.c
  1567. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/str.c"
  1568. Building file: C:/Users/613/Desktop/workspace/encryption/.system/appComInit.c
  1569. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/.system/appComInit.c"
  1570. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a
  1571. Invoking: GCC Archiver
  1572. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a @prjObjs.lst
  1573. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a Finished\n'
  1574. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a Finished
  1575. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.c
  1576. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  1577. #C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -o checkname.o
  1578. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/preLinkCmds C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  1579. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/size -A -x C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel 1>presize.txt
  1580. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/gawk -f C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/acoreosmp/script/parse.awk presize.txt > linkcmds
  1581. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel presize.txt
  1582. Invoking: GCC C Linker
  1583. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -r -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/catlinkcmds -Map map.txt C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_tmp.rel
  1584. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy --add-section .imgattr=C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/ImgInfoGen C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_tmp.rel C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  1585. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel Finished
  1586. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin
  1587. Invoking: GCC C Linker
  1588. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -Ttext=0xa0000000 -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/catlinkcmds -Map map.txt C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_ROM.elf
  1589. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy -O binary --strip-unneeded -R .note -R .comment -R .stab -R .stabstr -R .pbss C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_ROM.elf C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin
  1590. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin Finished
  1591. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1592. 14:19:26 **** Clean-only build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  1593. make clean
  1594. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk clean
  1595. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1596. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf ImgAttr.info linkcmds catlinkcmds map.txt presize.txt presize.txt
  1597. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf *.rel *.elf *.bin *.o
  1598. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.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
  1599. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1600. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/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
  1601. 14:19:26 **** Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  1602. make all
  1603. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R C:/Users/613/Desktop/workspace/encryption
  1604. Generate config files...
  1605. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/hAndMkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE
  1606. .h and .mk File build success!
  1607. Generate link script files...
  1608. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/linkFileBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  1609. done.
  1610. Image Info file... ImageInfo.c ImageinfoGen
  1611. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imageInfoBuilder.jar C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  1612. imageInfo.c File build success!
  1613. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  1614. ImgInfoGen File build success!
  1615. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  1616. make[1]: Entering directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  1617. Building file: C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c
  1618. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c"
  1619. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'pl01xSioInt':
  1620. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:385:6: warning: implicit declaration of function 'ACoreOs_cache_flush' [-Wimplicit-function-declaration]
  1621. ACoreOs_cache_flush(1, 0, 0);
  1622. ^
  1623. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:341:9: warning: variable 'numChars' set but not used [-Wunused-but-set-variable]
  1624. UINT32 numChars = 0;
  1625. ^
  1626. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c: In function 'serial':
  1627. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:2: warning: implicit declaration of function 'malloc' [-Wimplicit-function-declaration]
  1628. unsigned char *readed = malloc(41);
  1629. ^
  1630. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:582:26: warning: initialization makes pointer from integer without a cast [enabled by default]
  1631. unsigned char *readed = malloc(41);
  1632. ^
  1633. C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c:583:2: warning: implicit declaration of function 'memset' [-Wimplicit-function-declaration]
  1634. memset(readed,0,41);
  1635. ^
  1636. Building file: C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp
  1637. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp"
  1638. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  1639. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1:0: note: this is the location of the previous definition
  1640. /*
  1641. ^
  1642. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1643. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:11:0: warning: "MAX_DIRNAMES" redefined [enabled by default]
  1644. #define MAX_DIRNAMES 32 /* max directory names in path*/
  1645. ^
  1646. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1647. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1648. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:42:0: note: this is the location of the previous definition
  1649. #define MAX_DIRNAMES 148 /* max directory names in path */
  1650. ^
  1651. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1652. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:12:0: warning: "MAX_FILENAME_LENGTH" redefined [enabled by default]
  1653. #define MAX_FILENAME_LENGTH (VX_PATH_MAX + 1) /* max chars in filename */
  1654. ^
  1655. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1656. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1657. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:43:0: note: this is the location of the previous definition
  1658. #define MAX_FILENAME_LENGTH PATH_MAX /* max chars in pathname */
  1659. ^
  1660. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1661. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:67:0: warning: "FIOUNMOUNT" redefined [enabled by default]
  1662. #define FIOUNMOUNT 39 /* unmount disk volume */
  1663. ^
  1664. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1665. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1666. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:99:0: note: this is the location of the previous definition
  1667. #define FIOUNMOUNT 40 /* 卸载磁盘卷 */
  1668. ^
  1669. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1670. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:68:0: warning: "FIOSCSICOMMAND" redefined [enabled by default]
  1671. #define FIOSCSICOMMAND 40 /* issue a SCSI command */
  1672. ^
  1673. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1674. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1675. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:100:0: note: this is the location of the previous definition
  1676. #define FIOSCSICOMMAND 41 /* 执行SCSI命令 */
  1677. ^
  1678. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1679. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:69:0: warning: "FIONCONTIG" redefined [enabled by default]
  1680. #define FIONCONTIG 41 /* get size of max contig area on dev */
  1681. ^
  1682. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1683. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1684. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:101:0: note: this is the location of the previous definition
  1685. #define FIONCONTIG 42 /* 获得设备上最大连续空间的大小 */
  1686. ^
  1687. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1688. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:70:0: warning: "FIOTRUNC" redefined [enabled by default]
  1689. #define FIOTRUNC 42 /* truncate file to specified length */
  1690. ^
  1691. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1692. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1693. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:102:0: note: this is the location of the previous definition
  1694. #define FIOTRUNC 43 /* 使文件在指定的长度结尾 */
  1695. ^
  1696. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1697. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:71:0: warning: "FIOGETFL" redefined [enabled by default]
  1698. #define FIOGETFL 43 /* get file mode, like fcntl(F_GETFL) */
  1699. ^
  1700. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1701. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1702. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:103:0: note: this is the location of the previous definition
  1703. #define FIOGETFL 44 /* 获得文件操作模式 */
  1704. ^
  1705. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1706. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:72:0: warning: "FIOTIMESET" redefined [enabled by default]
  1707. #define FIOTIMESET 44 /* change times on a file for utime() */
  1708. ^
  1709. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1710. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1711. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:104:0: note: this is the location of the previous definition
  1712. #define FIOTIMESET 45 /* 改变文件的时间 */
  1713. ^
  1714. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:33:0:
  1715. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/ioLib.h:73:0: warning: "FIOINODETONAME" redefined [enabled by default]
  1716. #define FIOINODETONAME 45 /* given inode number, return filename*/
  1717. ^
  1718. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sysUart.h:31:0,
  1719. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:21:
  1720. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/sysIO.h:105:0: note: this is the location of the previous definition
  1721. #define FIOINODETONAME 46 /* 获得指定inode号对应的文件名*/
  1722. ^
  1723. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/ftpLib.h:26:0,
  1724. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:38:
  1725. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet/inetBase.h:46:0: warning: "_CACHE_ALIGN_SIZE" redefined [enabled by default]
  1726. #define _CACHE_ALIGN_SIZE 32
  1727. ^
  1728. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/vxWorks.h:170:0,
  1729. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:28:
  1730. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks/types/vxArch.h:75:0: note: this is the location of the previous definition
  1731. #define _CACHE_ALIGN_SIZE 16
  1732. ^
  1733. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:98:0:
  1734. C:\Users\613\Desktop\workspace\encryption\src\compress\lzma/TinyLzmaCompress.h:17:0: warning: "R_OK" redefined [enabled by default]
  1735. #define R_OK 0
  1736. ^
  1737. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:26:0:
  1738. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/unistd.h:423:0: note: this is the location of the previous definition
  1739. #define R_OK 4
  1740. ^
  1741. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:145:0: warning: "writel" redefined [enabled by default]
  1742. #define writel(val, addr) (*(volatile UINT32*)(addr) = (val))
  1743. ^
  1744. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:23:0:
  1745. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch/arm/ioArm.h:158:0: note: this is the location of the previous definition
  1746. #define writel(value, addr) (*(volatile unsigned int *)(addr) = (value))
  1747. ^
  1748. In file included from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:79:0:
  1749. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/rsa.h:16:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1750. char *PRIME_SOURCE_FILE = "primes.txt";
  1751. ^
  1752. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'void printBytes(unsigned char*, long unsigned int)':
  1753. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:130:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1754. for (int i = 0; i < len; i++) {
  1755. ^
  1756. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'int qspinor_erase(long long unsigned int, int)':
  1757. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:260:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1758. }
  1759. ^
  1760. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'int get_random_bytes(uint8_t*, int)':
  1761. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:380:1: warning: no return statement in function returning non-void [-Wreturn-type]
  1762. }
  1763. ^
  1764. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'uint8_t* get_mac()':
  1765. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:462:10: warning: address of local variable 'macAddress' returned [-Wreturn-local-addr]
  1766. uint8_t macAddress[18]; // 17 个字符 + 1 个终止符
  1767. ^
  1768. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: In function 'void task_3()':
  1769. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:507:22: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1770. int fd = check("ty0");
  1771. ^
  1772. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:610:42: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1773. memcpy(encrypted_array, flash_address + MAGIC_LENGTH, encrypted_file_size);
  1774. ^
  1775. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:634:21: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1776. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1777. ^
  1778. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:634:36: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1779. flash_address + MAGIC_LENGTH + encrypted_file_size,
  1780. ^
  1781. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:653:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1782. flash_address + MAGIC_LENGTH + encrypted_file_size
  1783. ^
  1784. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:653:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1785. flash_address + MAGIC_LENGTH + encrypted_file_size
  1786. ^
  1787. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:654:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1788. + encrypted_key_size,
  1789. ^
  1790. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:664:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1791. flash_address + MAGIC_LENGTH + encrypted_file_size
  1792. ^
  1793. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:664:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1794. flash_address + MAGIC_LENGTH + encrypted_file_size
  1795. ^
  1796. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:665:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1797. + encrypted_key_size
  1798. ^
  1799. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:666:40: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1800. + sizeof(struct public_key_class),
  1801. ^
  1802. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:702:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1803. flash_address + MAGIC_LENGTH + encrypted_file_size
  1804. ^
  1805. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:702:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1806. flash_address + MAGIC_LENGTH + encrypted_file_size
  1807. ^
  1808. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:703:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1809. + encrypted_key_size,
  1810. ^
  1811. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:720:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1812. flash_address + MAGIC_LENGTH + encrypted_file_size
  1813. ^
  1814. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:720:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1815. flash_address + MAGIC_LENGTH + encrypted_file_size
  1816. ^
  1817. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1818. + encrypted_key_size + ECC_KEYSIZE,
  1819. ^
  1820. In file included from C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:4:0,
  1821. from C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:80:
  1822. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecdh.h:87:51: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1823. #define ECC_PUB_KEY_SIZE (2 * ECC_PRV_KEY_SIZE)
  1824. ^
  1825. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:11:21: note: in expansion of macro 'ECC_PUB_KEY_SIZE'
  1826. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1827. ^
  1828. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:31: note: in expansion of macro 'ECC_KEYSIZE'
  1829. + encrypted_key_size + ECC_KEYSIZE,
  1830. ^
  1831. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecdh.h:81:30: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1832. #define ECC_PRV_KEY_SIZE 72
  1833. ^
  1834. C:\Users\613\Desktop\workspace\encryption\src\headers/cipher/ecc.h:11:40: note: in expansion of macro 'ECC_PRV_KEY_SIZE'
  1835. #define ECC_KEYSIZE ECC_PUB_KEY_SIZE + ECC_PRV_KEY_SIZE
  1836. ^
  1837. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:721:31: note: in expansion of macro 'ECC_KEYSIZE'
  1838. + encrypted_key_size + ECC_KEYSIZE,
  1839. ^
  1840. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:754:22: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1841. flash_address + MAGIC_LENGTH + encrypted_file_size
  1842. ^
  1843. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:754:37: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1844. flash_address + MAGIC_LENGTH + encrypted_file_size
  1845. ^
  1846. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:10: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1847. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1848. ^
  1849. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:31: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1850. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1851. ^
  1852. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:755:55: warning: pointer of type 'void *' used in arithmetic [-Wpointer-arith]
  1853. + encrypted_key_size + tmp_asy_key_size + 18 * i,
  1854. ^
  1855. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:816:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1856. for (int i = 0; i < encrypted_key_size; i++) {
  1857. ^
  1858. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:854:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1859. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1860. ^
  1861. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:863:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1862. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1863. ^
  1864. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:871:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1865. for (int i = 0; i < encrypted_file_size; i += input_length) {
  1866. ^
  1867. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:967:18: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
  1868. fd = check("ty0");
  1869. ^
  1870. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1010:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1871. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1872. ^
  1873. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1018:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1874. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1875. ^
  1876. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1026:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  1877. for (int i = 0; i < reencrypted_file_size; i += input_length)
  1878. ^
  1879. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:1119:12: warning: unused variable 'out_size' [-Wunused-variable]
  1880. uint32_t out_size;
  1881. ^
  1882. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:740:10: warning: unused variable 'cp_mac_array' [-Wunused-variable]
  1883. uint8_t cp_mac_array[10][18] = { '0' };
  1884. ^
  1885. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp: At global scope:
  1886. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:108:19: warning: 'wrkmem' defined but not used [-Wunused-variable]
  1887. static HEAP_ALLOC(wrkmem, LZO1X_1_MEM_COMPRESS);
  1888. ^
  1889. C:/Users/613/Desktop/workspace/encryption/src/init_test.cpp:106:30: note: in definition of macro 'HEAP_ALLOC'
  1890. lzo_align_t __LZO_MMODEL var [ ((size) + (sizeof(lzo_align_t) - 1)) / sizeof(lzo_align_t) ]
  1891. ^
  1892. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/aes.c
  1893. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/aes.c"
  1894. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/cpu_endian.c
  1895. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/cpu_endian.c"
  1896. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/des.c
  1897. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/des.c"
  1898. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/des3.c
  1899. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/des3.c"
  1900. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecb.c
  1901. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecb.c"
  1902. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc.c
  1903. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc.c"
  1904. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc_rc4.c
  1905. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecc_rc4.c"
  1906. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c
  1907. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c"
  1908. C:/Users/613/Desktop/workspace/encryption/src/encryption/ecdh.c:410:13: warning: 'gf2field_inc' defined but not used [-Wunused-function]
  1909. static void gf2field_inc(gf2elem_t x) {
  1910. ^
  1911. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/rc4.c
  1912. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/rc4.c"
  1913. Building file: C:/Users/613/Desktop/workspace/encryption/src/encryption/rsa.c
  1914. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/encryption/rsa.c"
  1915. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c
  1916. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c"
  1917. C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c:43967:0: warning: "CLOCKS_PER_SEC" redefined [enabled by default]
  1918. #define CLOCKS_PER_SEC 1000
  1919. ^
  1920. In file included from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/iores.h:33:0,
  1921. from C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/stdio.h:34,
  1922. from C:/Users/613/Desktop/workspace/encryption/src/compress/zstd/zstd.c:43282:
  1923. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/time.h:45:0: note: this is the location of the previous definition
  1924. #define CLOCKS_PER_SEC clockTickPerSecondGet() /* 时钟频率 */
  1925. ^
  1926. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/alloc_ucl.c
  1927. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/alloc_ucl.c"
  1928. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/io.c
  1929. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/io.c"
  1930. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_99.c
  1931. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_99.c"
  1932. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_d.c
  1933. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_d.c"
  1934. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_ds.c
  1935. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_ds.c"
  1936. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_to.c
  1937. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2b_to.c"
  1938. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_99.c
  1939. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_99.c"
  1940. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_d.c
  1941. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_d.c"
  1942. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_ds.c
  1943. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_ds.c"
  1944. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_to.c
  1945. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2d_to.c"
  1946. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_99.c
  1947. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_99.c"
  1948. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_d.c
  1949. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_d.c"
  1950. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_ds.c
  1951. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_ds.c"
  1952. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_to.c
  1953. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/n2e_to.c"
  1954. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_crc.c
  1955. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_crc.c"
  1956. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_dll.c
  1957. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_dll.c"
  1958. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_init.c
  1959. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_init.c"
  1960. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_ptr.c
  1961. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_ptr.c"
  1962. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_str.c
  1963. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_str.c"
  1964. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_util.c
  1965. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/ucl/ucl_util.c"
  1966. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp
  1967. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -DCPU=ARMV8A -D__LOADED_PROGRAM__ -D__cplusplus -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -I"C:\Users\613\Desktop\workspace\encryption\src\puf" -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\zstd" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzma" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lz4" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\lzo" -I"C:\Users\613\Desktop\workspace\encryption\src\compress\ucl" -I"" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/inet -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv/sio -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp"
  1968. <command-line>:0:0: warning: "__cplusplus" redefined [enabled by default]
  1969. C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp:1:0: note: this is the location of the previous definition
  1970. #pragma once
  1971. ^
  1972. C:/Users/613/Desktop/workspace/encryption/src/compress/lzo/minilzo.cpp:1:9: warning: #pragma once in main file [enabled by default]
  1973. #pragma once
  1974. ^
  1975. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/FileIO.c
  1976. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/FileIO.c"
  1977. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaCompress.c
  1978. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaCompress.c"
  1979. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaDecompress.c
  1980. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lzma/TinyLzmaDecompress.c"
  1981. Building file: C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c
  1982. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c"
  1983. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_fast_extState':
  1984. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1985. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  1986. ^
  1987. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  1988. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1989. ^
  1990. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1387:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1991. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, byU16, noDict, noDictIssue, acceleration);
  1992. ^
  1993. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  1994. LZ4_FORCE_INLINE int LZ4_compress_generic(
  1995. ^
  1996. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  1997. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  1998. ^
  1999. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2000. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2001. ^
  2002. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1390:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2003. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, 0, notLimited, tableType, noDict, noDictIssue, acceleration);
  2004. ^
  2005. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2006. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2007. ^
  2008. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2009. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  2010. ^
  2011. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2012. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2013. ^
  2014. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1394:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2015. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, byU16, noDict, noDictIssue, acceleration);
  2016. ^
  2017. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2018. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2019. ^
  2020. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 2 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2021. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  2022. ^
  2023. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2024. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2025. ^
  2026. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1397:13: warning: pointer targets in passing argument 3 of 'LZ4_compress_generic' differ in signedness [-Wpointer-sign]
  2027. return LZ4_compress_generic(ctx, source, dest, inputSize, NULL, maxOutputSize, limitedOutput, tableType, noDict, noDictIssue, acceleration);
  2028. ^
  2029. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1341:22: note: expected 'char * const' but argument is of type 'unsigned char *'
  2030. LZ4_FORCE_INLINE int LZ4_compress_generic(
  2031. ^
  2032. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_destSize_extState_internal':
  2033. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2034. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  2035. ^
  2036. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2037. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2038. ^
  2039. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1484:9: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2040. return LZ4_compress_fast_extState(state, src, dst, *srcSizePtr, targetDstSize, acceleration);
  2041. ^
  2042. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2043. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2044. ^
  2045. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe':
  2046. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 1 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  2047. (BYTE*)dest, NULL, 0);
  2048. ^
  2049. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2021:1: note: expected 'const char * const' but argument is of type 'const unsigned char *'
  2050. LZ4_decompress_generic(
  2051. ^
  2052. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2455:35: warning: pointer targets in passing argument 2 of 'LZ4_decompress_generic' differ in signedness [-Wpointer-sign]
  2053. (BYTE*)dest, NULL, 0);
  2054. ^
  2055. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2021:1: note: expected 'char * const' but argument is of type 'unsigned char *'
  2056. LZ4_decompress_generic(
  2057. ^
  2058. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_continue':
  2059. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2060. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2061. ^
  2062. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2063. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2064. ^
  2065. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2639:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2066. result = LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2067. ^
  2068. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2069. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2070. ^
  2071. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_decompress_safe_usingDict':
  2072. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2073. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2074. ^
  2075. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2076. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2077. ^
  2078. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2722:9: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2079. return LZ4_decompress_safe(source, dest, compressedSize, maxOutputSize);
  2080. ^
  2081. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2082. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2083. ^
  2084. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput':
  2085. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2086. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  2087. ^
  2088. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2089. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2090. ^
  2091. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2766:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2092. return LZ4_compress_default(source, dest, inputSize, maxOutputSize);
  2093. ^
  2094. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2095. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2096. ^
  2097. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress':
  2098. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 1 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2099. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  2100. ^
  2101. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2102. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2103. ^
  2104. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2770:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_default' differ in signedness [-Wpointer-sign]
  2105. return LZ4_compress_default(src, dest, srcSize, LZ4_compressBound(srcSize));
  2106. ^
  2107. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1469:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2108. int LZ4_compress_default(const unsigned char* src, unsigned char* dst, int srcSize, int dstCapacity)
  2109. ^
  2110. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_limitedOutput_withState':
  2111. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2112. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  2113. ^
  2114. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2115. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2116. ^
  2117. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2774:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2118. return LZ4_compress_fast_extState(state, src, dst, srcSize, dstSize, 1);
  2119. ^
  2120. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2121. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2122. ^
  2123. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_compress_withState':
  2124. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 2 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2125. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  2126. ^
  2127. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2128. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2129. ^
  2130. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2778:5: warning: pointer targets in passing argument 3 of 'LZ4_compress_fast_extState' differ in signedness [-Wpointer-sign]
  2131. return LZ4_compress_fast_extState(state, src, dst, srcSize, LZ4_compressBound(srcSize), 1);
  2132. ^
  2133. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:1379:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2134. int LZ4_compress_fast_extState(void* state, const unsigned char* source, unsigned char* dest, int inputSize, int maxOutputSize, int acceleration)
  2135. ^
  2136. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c: In function 'LZ4_uncompress_unknownOutputSize':
  2137. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 1 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2138. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  2139. ^
  2140. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'const unsigned char *' but argument is of type 'const char *'
  2141. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2142. ^
  2143. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2801:5: warning: pointer targets in passing argument 2 of 'LZ4_decompress_safe' differ in signedness [-Wpointer-sign]
  2144. return LZ4_decompress_safe(source, dest, isize, maxOutputSize);
  2145. ^
  2146. C:/Users/613/Desktop/workspace/encryption/src/compress/lz4/lz4.c:2450:5: note: expected 'unsigned char *' but argument is of type 'char *'
  2147. int LZ4_decompress_safe(const unsigned char* source, unsigned char* dest, int compressedSize, int maxDecompressedSize)
  2148. ^
  2149. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/cpu_endian.c
  2150. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/cpu_endian.c"
  2151. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/debug.c
  2152. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/debug.c"
  2153. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c: In function 'debugDisplayArray':
  2154. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c:52:10: warning: implicit declaration of function 'osSuspendAllTasks' [-Wimplicit-function-declaration]
  2155. TRACE_PRINTF("%s", prepend);
  2156. ^
  2157. C:/Users/613/Desktop/workspace/encryption/src/common/debug.c:52:10: warning: implicit declaration of function 'osResumeAllTasks' [-Wimplicit-function-declaration]
  2158. Building file: C:/Users/613/Desktop/workspace/encryption/src/common/str.c
  2159. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/src/common/str.c"
  2160. Building file: C:/Users/613/Desktop/workspace/encryption/.system/appComInit.c
  2161. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -D__LOADED_PROGRAM__ -DCPU=ARMV8A -IC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/vxworks -I"C:\Users\613\Desktop\workspace\encryption\src\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers\common" -I"C:\Users\613\Desktop\workspace\encryption\src\headers" -I"" -IC:/Users/613/Desktop/workspace/encryption/ -IC:/Users/613/Desktop/workspace/encryption/src -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/os -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/arch -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/sys -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/rtl/math -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/fs -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include/drv -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/ -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/include/posix -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/usrsrc/project/app/cpp -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/bsp/mdsp/arm/hksa9201Drv/include/serial -I"C:\Users\613\Desktop\workspace\encryption\src\sio" -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" "C:/Users/613/Desktop/workspace/encryption/.system/appComInit.c"
  2162. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a
  2163. Invoking: GCC Archiver
  2164. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ar -rc C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a @prjObjs.lst
  2165. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/echo -e 'Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a Finished\n'
  2166. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a Finished
  2167. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/gcc -IC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/include -Darm -mhard-float -O0 -g -Wall -c -fno-builtin -fno-short-enums -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.c
  2168. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  2169. #C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -r -whole-archive C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -o checkname.o
  2170. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/preLinkCmds C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  2171. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/size -A -x C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel 1>presize.txt
  2172. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/gawk -f C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/acoreosmp/script/parse.awk presize.txt > linkcmds
  2173. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/cygwin/gcc-4.8.1/bin/rm -rf C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel presize.txt
  2174. Invoking: GCC C Linker
  2175. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -r -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/catlinkcmds -Map map.txt C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_tmp.rel
  2176. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy --add-section .imgattr=C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/ImgInfoGen C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_tmp.rel C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel
  2177. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.rel Finished
  2178. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin
  2179. Invoking: GCC C Linker
  2180. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/ld -Ttext=0xa0000000 -L"C:\Users\613\Desktop\workspace\encryption\src" -LC:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a -LC:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/gcc-4.8.1/arm/armv8a/little -d -N -T C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/catlinkcmds -Map map.txt C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/acoreosmp/lib/score/gcc-4.8.1/arm/armv8a/appCplusStart.o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/imageInfo.o C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtbegin.o --start-group C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/libencryption.a -lgcc -lclib -lrtlsup -lacsup -lo2aclb -leu2aclb -lnce2aclb -ldm2aclb -lkinfo2aclb -lcomarch -lstdc++ -lcplussup -lm -lmatharch -ltimer2aclb -ltvar2aclb -lcache2aclb -lrwsem2aclb -lac2aclb -lvmm2aclb -lmpart2aclb -lsig2aclb -lselect2aclb -lipnet2aclb -ldkm2aclb -lminfo2aclb -lrtp2aclb -lpci2aclb -lv2aclb -lvxAtomic -lcomarch -lvrtp2aclb -lpx2aclb --end-group C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/target/common/lib/score/gcc-4.8.1/arm/armv8a/crtend.o -o C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_ROM.elf
  2181. C:/Users/613/Desktop/ACoreIDE_1063_0901patch/ACoreIDE/host/gnu/gcc-4.8.1/arm/bin/objcopy -O binary --strip-unneeded -R .note -R .comment -R .stab -R .stabstr -R .pbss C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption_ROM.elf C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin
  2182. Building target: C:/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score/encryption.bin Finished
  2183. make[1]: Leaving directory `/cygdrive/c/Users/613/Desktop/workspace/encryption/ft2000ahk_le_hard_sys_score'
  2184. 23:58:23 **** Incremental Build of configuration ft2000ahk_le_hard_sys_score for project encryption ****
  2185. make all
  2186. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/chmod 777 -R E:/code/tianmai/workspace/encryption
  2187. Generate config files...
  2188. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/hAndMkFileBuilder.jar E:/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score/appcfg.cfg D:/ACoreIDE
  2189. .h and .mk File build success!
  2190. Generate link script files...
  2191. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/linkFileBuilder.jar E:/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp preLinkCmds _linkcmds
  2192. done.
  2193. Image Info file... ImageInfo.c ImageinfoGen
  2194. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imageInfoBuilder.jar E:/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score E:/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score/tra_debug.mtp encryption app arm
  2195. imageInfo.c File build success!
  2196. D:/ACoreIDE/host/ide/eclipse/jre/bin/java -agentlib:agentlib -jar D:/ACoreIDE/host/java/imgInfoGenBuilder.jar 1 E:/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score encryption gcc-4.8.1 E:/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score/config_appcfg.mk
  2197. ImgInfoGen File build success!
  2198. D:/ACoreIDE/host/cygwin/gcc-4.8.1/bin/make -f make.mk all
  2199. make[1]: Entering directory `/cygdrive/e/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score'
  2200. make[1]: *** No rule to make target `C:/Users/613/Desktop/workspace/encryption/src/sio/sioPl01x.c', needed by `src/sio/sioPl01x.o'. Stop.
  2201. make[1]: Leaving directory `/cygdrive/e/code/tianmai/workspace/encryption/ft2000ahk_le_hard_sys_score'
  2202. make: *** [all] Error 2