@hptsf 可以按照你现在的做法 直接比较

xiaowenge 发布的帖子
-
回复: 请问一下,D1平台,tina的kernel和标准的5.4kernel有哪些区别?
@hptsf kernel应该改动不大,linux kernel这么好的东西,一般能不动都不动的,除非系统起不来
-
回复: R329的DSP开发如何申请?
@razor7788 大佬分享一下授权经验,要怎么搞啊?
(我司虽然有candence的授权,但是都是商务法务搞好的,我只会无脑用,不知道怎么搞的,很好奇) -
回复: 基于星辰处理器的全志XR806鸿蒙开发板上手体验
@zhugx 可以的,IDE只是一个工具而已。头文件不知道在哪就要自己找一下了,有些IDE会支持转跳,可以自己选择一个顺手的IDE,用惯了效率就高了
-
回复: 【XR806鸿蒙开发实战1】实操下载XR806鸿蒙代码并编译烧写
@zhugx 可以参考在线文档里的hello word教程:https://xr806.docs.aw-ol.com/study/soft_helloword/ 手把手教你写第一个程序 hello word
-
泰诺丰全志D1s开发板上线
泰诺丰科技基于全志D1s芯片设计的D1s芯片设计的D1s基础板上线。
淘宝链接:https://item.taobao.com/item.htm?spm=2013.1.w4004-24062560461.4.465ea71113gmfH&id=658797225022
-
回复: D1 开发板哪吒专用8寸MIPI 屏幕显示异常,质量问题?
请输入命令行进行测试:
cd /sys/kernel/debug/dispdbg echo disp0 > name; echo switch1 > command; echo 1 4 0 0 0x4 0x101 0 0 0 8 > param; echo 1 > start;
如果仍然出现异常线条,请淘宝发起退换货
参考文档:https://d1.docs.aw-ol.com/study/study_5connect/#_4 -
全志ISP调试工具介绍
TigerISP是一款专门用于全志专业图像质量调试的工具,可以通过局域网络连接单板在线调试 ISP 各个模块的参数,使用标定分析工具进行各类数据分析,使用 rtsp 工具实时预览图像效果等。
签了NDA的客户可以从全志量产工具平台(APST)上下载到ISP工具。如有需要后续会从全志在线全线开放。
在下载下来的工具包里有对应的调试说明文档《TigerISP使用指南》和《图像质量调优操作指南》,分别是教你如何使用这个工具和教你如果调出更好的ISP参数的。
教学视频见:https://www.aw-ol.com/training
【教学视频】初识ISP工具:
ISP深度教学视频共12集,见 全志在线-开发者学院-基础课程 :https://www.aw-ol.com/training
-
全志XR806开源鸿蒙开发板正式发售,免费开放全部源码和硬件设计资料
时维1024
序属金秋
雄州雾列
俊采星驰
浙有云栖大会
粤有HDC
皖有讯飞开发者节
共贺佳节,展科技力量。值此佳节,XR806开源鸿蒙开发板正式发售啦!
XR806开发板是基于XR806芯片设计开发的参考评估,支持OpenHarmony(开源鸿蒙)系统,具有集成度高、硬件设计简单、BOM成本低、安全可靠等特点。可广泛应用于智能家居、智慧楼宇、工业互联、儿童玩具、电子竞赛、极客DIY 等领域。
参数规格:
主控:XR806AF2L (Arm star ARMv8-M)
DDR:288KB SRAM
存储:160KB Code ROM. SIP 16Mbit Flash.
天线:板载WiFi/BT双天线,可共存为了方便开发者自由开发和定制化,全志在线释放了包括完整系统源码、硬件原理图、bomlist、硬件位号图在内的全部软硬件资料。
gittee仓库地址:https://gitee.com/openharmony-sig/devboard_device_allwinner_xr806
硬件资料下载地址:https://www.aw-ol.com/downloads?cat=12 -
一图看懂XR806鸿蒙系统架构
XR806支持的OpenHarmony属于 轻量系统(mini system)
轻量系统是面向MCU类处理器例如Arm Cortex-M、RISC-V 32位的设备,硬件资源极其有限,支持的设备最小内存为128KiB,可以提供多种轻量级网络协议,轻量级的图形框架,以及丰富的IOT总线读写部件等。可支撑的产品如智能家居领域的连接类模组、传感器设备、穿戴类设备等。
XR806-OpenHarmony系统框图如下:
从下到上分别是:
内核层(Kernel)- 系统驱动层(System Driver)- 系统服务层(System Server)-用户层(User Space)
内核层(Kernel)
内核层使用的是OpenHarmony的LiteOS-M。LiteOS-M内核是面向IoT领域构建的轻量级物联网操作系统内核,具有小体积、低功耗、高性能的特点。其代码结构简单,主要包括内核最小功能集、内核抽象层、可选组件以及工程目录等。OpenHarmony LiteOS-M内核架构包含硬件相关层以及硬件无关层,其中硬件相关层按不同编译工具链、芯片架构分类,提供统一的HAL(Hardware Abstraction Layer)接口,提升了硬件易适配性,满足AIoT类型丰富的硬件和编译工具链的拓展;其他模块属于硬件无关层,其中基础内核模块提供基础能力,扩展模块提供网络、文件系统等组件能力,还提供错误处理、调测等能力。
详见:https://www.openharmony.cn/#/documents/device-dev-kernel/device-dev-kernel-1/kernel-mini-overview
系统驱动层(System Driver)
系统驱动层主要提供安全、存储、时钟、音频和接口等模块的框架和驱动,包括:NOR Flash、Trust Zone、Flash Crypto、CE、EFUSE、PSRAM、CCM、PRCM、NVIC、Timer、RTC、WDG、XIP、DMA、Cache、Audio Codec、Smart Card、Cmsis Core、UART、PWM、I2C、I2S、GPIO、IR、SPI、GPADC等
系统服务层(System Server)
系统驱动层主要提供系统运行及用户层开发用到的基础系统框架、库和工具等。
作为核心功能,XR806 OpenHarmony SDK提供了完善的BLE协议栈和WiFi协议栈。
BLE部分包括BLE Controller、Link Layer/PHY Driver等。
WiFi部分包括WLAN Control、LMAC driver、UMAC、Supplicant、Hostpad等。
基于WiFi协议栈之上,对常用的网络服务进行了封装和支持,包括:TCP/IP Stack、Web Socket、MQTT、DNS、Mebed
TLS、HTTP Client、HTTP Server、iPerf、SNTP、DHCP、Ping、OTA等。除此之外,还提供了Audio Manager、EFPG、FDCM、CedarX、Reverb、ATCMD、Console、Voice Print、Secure Boot、CJson、PKG等。
在文件系统方面,可以支持FATFS、LittleFS、SPIFS三种不同的文件系统,可以在编译前在make menuconfig中选择编译。
用户层(User Space)
用户层为可供开发者进行应用开发的用户空间,SDK中提供了Command、Player APP、Recorder APP、Event Framework、Network Control等基础应用服务。同时开发者可以天马行空,在应用层挥洒创意。
-
回复: 【XR806鸿蒙开发实战1】实操下载XR806鸿蒙代码并编译烧写
编译lib完成后回到源码的根目录,完整编译
编译配置
hb set
这里可能要多敲一次回车才会出来这个选项框
选择wifi_skylake编译
hb build -f
编译完成后生成的固件在路径xr806_openharmony2/device/xradio/xr806/xr_skylark/out 下:
将 xr_system.img 烧写到设备中即可
-
回复: 【XR806鸿蒙开发实战1】实操下载XR806鸿蒙代码并编译烧写
@xiaowenge 在 实操下载XR806鸿蒙代码并编译烧写 中说:
make lib -j遇到亿点点问题,正在处理中
PDC-XRseries@AwExdroid94:~/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark$ make lib -j make[1]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' cd ../../../..; make prj=demo/wlan_ble_demo include/generated/autoconf.h; cd - make[2]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark' make[3]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/tools/config' make[3]: 'conf' is up to date. make[3]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/tools/config' /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark # # No change to .config # NUPD .config NUPD include/generated/autoconf.h make[2]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark' /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc make __lib sdk_cfg_rdy=y make[2]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' make -C ../../../../src install make[3]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' make _install TARGET=install make[4]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' make -C driver/chip install make -C libc install make -C image install make -C rom install make -C sys install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/chip' make -C debug install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/libc' make -C driver/bluetooth install make -C ble install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/image' make -C pm install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/rom' make -C driver/component install make -C console install make -C efpg install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sys' make -C fs install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/debug' make -C audio/pcm install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/pm' make -C audio/manager install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/bluetooth' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/ble' make -C net/ethernetif install make -C net/lwip-2.1.2 install make -C net/ping install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/component' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/console' make -C net/HTTPClient install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/efpg' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/fs' make -C net/mbedtls-"2.16.8" install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/pcm' make -C net/nopoll install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/manager' make -C net/libwebsockets/lib install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ethernetif' make -C net/mqtt install make -C net/shttpd-1.42 install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/lwip-2.1.2' **************************** ******* DIRS=./common ./tinycrypt/source/ ./porting ./net ./settings/source ******* **************************** make -C net/sntp install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ping' make -C net/udhcp-0.9.8 install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/HTTPClient' make -C net/cloud/aliyun install make -C smartlink install make -C wlan install make -C atcmd install make -C cjson install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/udhcp-0.9.8' make -C util install make -C sdd install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/mqtt' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/sntp' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/nopoll' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/cloud/aliyun' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/mbedtls-2.16.8' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/util' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/shttpd-1.42' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sdd' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o rom_core.o rom_core.c make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/libwebsockets/lib' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/smartlink' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/wlan' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o console.o console.c make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/atcmd' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o ethernetif.o ethernetif.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o audio_manager.o audio_manager.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o audio_pcm.o audio_pcm.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o ping.o ping.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o wrap_malloc.o wrap_malloc.c DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o fdcm.o fdcm.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -include ../../include/generated/autoconf.h -c -x assembler-with-cpp -o cpu.o cpu.s ../../../gcc.mk:230: recipe for target 'audio_manager.o' failed make[5]: *** [audio_manager.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/manager' Makefile:112: recipe for target 'audio/manager' failed make[4]: *** [audio/manager] Error 2 make[4]: *** Waiting for unfinished jobs.... ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o sntp.o sntp.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o default/bt_ctrl_driver.o default/bt_ctrl_driver.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o coexist.o coexist.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o vfs.o vfs.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/cjson' DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o backtrace.o backtrace.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o pm.o pm.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'console.o' failed make[5]: *** [console.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/console' Makefile:112: recipe for target 'console' failed make[4]: *** [console] Error 2 ../../../gcc.mk:230: recipe for target 'audio_pcm.o' failed make[5]: *** [audio_pcm.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/pcm' Makefile:112: recipe for target 'audio/pcm' failed make[4]: *** [audio/pcm] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o debug.o debug.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o wrap_stdio.o wrap_stdio.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o default/bt_zephyr_adapter.o default/bt_zephyr_adapter.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o spiffs/spiffs_cache.o spiffs/spiffs_cache.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o heap/common/sys_heap.o heap/common/sys_heap.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o atomic.o atomic.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o port.o port.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o flash.o flash.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o ad_button/drv_ad_button.o ad_button/drv_ad_button.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o wrap_time.o wrap_time.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DVERSION='"0.9.8"' -DXR_DHCPD -DDHCPD_LWIP -DDHCPD_HEAP_REPLACE_STACK -DDHCPD_USRCFG -DDHCPD_FREERTOS -DDHCPD_ICMPPING -DDHCPD_LOW_LEVEL -DDHCPD_DNS -DDHCPD_USE_DEFAULT_INIT -DDHCPD_UPGRADE_STA_MAC -DDHCPD_TIMEALT -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR=../../gcc.mk:230: recipe for target 'rom_core.o' failed make[5]: *** [rom_core.o] Error 126 "\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o usr_dhcpd.o usr_dhcpd.c make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/rom' ../../../gcc.mk:230: recipe for target 'ping.o' failed make[5]: *** [ping.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ping' /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'rom' failed make[4]: *** [rom] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'net/ping' failed make[4]: *** [net/ping] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o efpg.o efpg.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o codec/ac101.o codec/ac101.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/mqtt/MQTTPacket -I../../../include/net/mqtt/MQTTClient-C -I./MQTTPacket -I./MQTTClient-C -I./MQTTClient-C/Xr_RTOS -I./MQTTClient-C/Xr_RTOS/utest -o MQTTClient-C/MQTTClient.o MQTTClient-C/MQTTClient.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o image.o image.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o heap/dma_heap/dma_heap.o heap/dma_heap/dma_heap.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'coexist.o' failed make[5]: *** [coexist.o] Error 126 ../../gcc.mk:230: recipe for target 'vfs.o' failed make[5]: *** [vfs.o] Error 126 make[5]: *** Waiting for unfinished jobs.... make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'sntp.o' failed make[5]: *** [sntp.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/sntp' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../project/ -o at_command.o at_command.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/nopoll -I./src -o src/nopoll.o src/nopoll.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DVERSION='"0.9.8"' -DXR_DHCPD -DDHCPD_LWIP -DDHCPD_HEAP_REPLACE_STACK -DDHCPD_USRCFG -DDHCPD_FREERTOS -DDHCPD_ICMPPING -DDHCPD_LOW_LEVEL -DDHCPD_DNS -DDHCPD_USE_DEFAULT_INIT -DDHCPD_UPGRADE_STA_MAC -DDHCPD_TIMEALT -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR=~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -"\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o arpping.o arpping.c DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o mbuf/mbuf_0.o mbuf/mbuf_0.c Makefile:112: recipe for target 'net/sntp' failed make[4]: *** [net/sntp] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o btsnoop.o btsnoop.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o codec/ac107.o codec/ac107.c ../../../gcc.mk:230: recipe for target 'default/bt_ctrl_driver.o' failed make[5]: *** [default/bt_ctrl_driver.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DVERSION='"0.9.8"' -DXR_DHCPD -DDHCPD_LWIP -DDHCPD_HEAP_REPLACE_STACK -DDHCPD_USRCFG -DDHCPD_FREERTOS -DDHCPD_ICMPPING -DDHCPD_LOW_LEVEL -DDHCPD_DNS -DDHCPD_USE_DEFAULT_INIT -DDHCPD_UPGRADE_STA_MAC -DDHCPD_TIMEALT -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR=DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o bme280/bme280.o bme280/bme280.c "\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o files.o files.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/src/smartlink/alink/include/ -I../../include/ble -o airkiss/airkiss_ack.o airkiss/airkiss_ack.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../project/ -o at_common.o at_common.c ../../gcc.mk:230: recipe for target 'heap/dma_heap/dma_heap.o' failed make[5]: *** [heap/dma_heap/dma_heap.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o codec/xradio_internal_codec.o codec/xradio_internal_codec.c ../../../gcc.mk:230: recipe for target 'usr_dhcpd.o' failed make[5]: *** [usr_dhcpd.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** Waiting for unfinished jobs.... /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o mbuf/mbuf_0_mem.o mbuf/mbuf_0_mem.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../gcc.mk:230: recipe for target 'at_command.o' failed make[5]: *** [at_command.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../..//include -I../../../..//include/libc -I../../../..//include/driver/cmsis -I../../../..//include/net -I../../../..//include/net/lwip-2.1.2 -I../../../..//include/net/mbedtls-"2.16.8" -I../../../..//include/blec -I../../../..//include/ble -I../../../..//../../../../kernel/liteos_m -I../../../..//../../../../kernel/liteos_m/utils -I../../../..//../../../../kernel/liteos_m/kernel/arch/include -I../../../..//.. -o alink_auth.o alink_auth.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'wrap_time.o' failed make[5]: *** Waiting for unfinished jobs.... make[5]: *** [wrap_time.o] Error 126 ../../../gcc.mk:230: recipe for target 'codec/ac101.o' failed make[5]: *** [codec/ac101.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** Waiting for unfinished jobs.... DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o sdd.o sdd.c make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'fdcm.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [fdcm.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'ethernetif.o' failed make[5]: *** Waiting for unfinished jobs.... make[5]: *** [ethernetif.o] Error 126 ../../gcc.mk:230: recipe for target 'image.o' failed make[5]: *** [image.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ethernetif' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:224: recipe for target 'cpu.o' failed ../../gcc.mk:230: recipe for target 'wrap_malloc.o' failed make[5]: *** [wrap_malloc.o] Error 126 make[5]: *** [cpu.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'pm.o' failed ../../../gcc.mk:230: recipe for target 'default/bt_zephyr_adapter.o' failed DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/mqtt/MQTTPacket -I../../../include/net/mqtt/MQTTClient-C -I./MQTTPacket -I./MQTTClient-C -I./MQTTClient-C/Xr_RTOS -I./MQTTClient-C/Xr_RTOS/utest -o MQTTClient-C/Xr_RTOS/MQTTXrRTOS.o MQTTClient-C/Xr_RTOS/MQTTXrRTOS.c make[5]: *** [pm.o] Error 126 make[5]: *** [default/bt_zephyr_adapter.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/bluetooth' ../../../gcc.mk:230: recipe for target 'arpping.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [arpping.o] Error 126 Makefile:112: recipe for target 'net/ethernetif' failed make[4]: *** [net/ethernetif] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -DZTEST_UNITTEST -DVIRTUAL_HCI -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/ble -I../../src/ble/tinycrypt/include -I../../src/ble -I../../include/ble/drivers -I../../include/driver/chip -I../../include/ble/sys -I../../src/ble/settings -o host/hci_ecc.o host/hci_ecc.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../gcc.mk:230: recipe for target 'wrap_stdio.o' failed make[5]: *** [wrap_stdio.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/nopoll -I./src -o src/nopoll_FreeRTOS.o src/nopoll_FreeRTOS.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/libc' /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'driver/bluetooth' failed make[4]: *** [driver/bluetooth] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/HTTPClient -I../../../include/net/HTTPClient/API -o HTTPCUsr_api.o HTTPCUsr_api.c DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/shttpd/ -o examples/web_server_demo.o examples/web_server_demo.c ../../gcc.mk:230: recipe for target 'backtrace.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** [backtrace.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o save_log_by_uart.o save_log_by_uart.c make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'debug.o' failed make[5]: *** [debug.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/debug' Makefile:112: recipe for target 'libc' failed ../../gcc.mk:230: recipe for target 'flash.o' failed make[5]: *** [flash.o] Error 126 make[4]: *** [libc] Error 2 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/image' Makefile:112: recipe for target 'debug' failed make[4]: *** [debug] Error 2 ../../gcc.mk:230: recipe for target 'atomic.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** [atomic.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/src/smartlink/alink/include/ -I../../include/ble -o airkiss/airkiss_discover.o airkiss/airkiss_discover.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -Makefile:112: recipe for target 'image' failed make[5]: *** Waiting for unfinished jobs.... DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o efpg_efuse.o efpg_efuse.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o cJSON.o cJSON.c make[4]: *** [image] Error 2 ../../gcc.mk:230: recipe for target 'heap/common/sys_heap.o' failed ../../gcc.mk:230: recipe for target 'btsnoop.o' failed ../../gcc.mk:230: recipe for target 'spiffs/spiffs_cache.o' failed make[5]: *** [heap/common/sys_heap.o] Error 126 make[5]: *** [btsnoop.o] Error 126 make[5]: *** [spiffs/spiffs_cache.o] Error 126 ../../../gcc.mk:230: recipe for target 'MQTTClient-C/MQTTClient.o' failed ../../gcc.mk:230: recipe for target 'efpg.o' failed make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sys' make[5]: *** [efpg.o] Error 126 make[5]: *** [MQTTClient-C/MQTTClient.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** Waiting for unfinished jobs.... DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o bme280/drv_bme280.o bme280/drv_bme280.c make[5]: *** wait: No child processes. Stop. ../../gcc.mk:230: recipe for target 'port.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [port.o] Error 126 ../../gcc.mk:230: recipe for target 'mbuf/mbuf_0.o' failed make[5]: *** [mbuf/mbuf_0.o] Error 126 make[5]: *** Waiting for unfinished jobs.... make[5]: *** wait: No child processes. Stop. Makefile:112: recipe for target 'sys' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[4]: *** [sys] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/nopoll -I./src -o src/nopoll_conn.o src/nopoll_conn.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/HTTPClient -I../../../include/net/HTTPClient/API -o HTTPMbedTLSWrapper.o HTTPMbedTLSWrapper.c Makefile:112: recipe for target 'pm' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[4]: *** [pm] Error 2 ../../../gcc.mk:230: recipe for target 'ad_button/drv_ad_button.o' failed DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/shttpd/ -o src/auth.o src/auth.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'fs' failed make[5]: *** [ad_button/drv_ad_button.o] Error 126 make[4]: *** [fs] Error 2 make[5]: *** Waiting for unfinished jobs.... /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/src/smartlink/alink/include/ -I../../include/ble -o airkiss/airkiss_main.o airkiss/airkiss_main.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../../gcc.mk:230: recipe for target 'codec/ac107.o' failed make[5]: *** [codec/ac107.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../..//include -I../../../..//include/libc -I../../../..//include/driver/cmsis -I../../../..//include/net -I../../../..//include/net/lwip-2.1.2 -I../../../..//include/net/mbedtls-"2.16.8" -I../../../..//include/blec -I../../../..//include/ble -I../../../..//../../../../kernel/liteos_m -I../../../..//../../../../kernel/liteos_m/utils -I../../../..//../../../../kernel/liteos_m/kernel/arch/include -I../../../..//.. -o alink_ca.o alink_ca.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'bme280/bme280.o' failed make[5]: *** [bme280/bme280.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -DZTEST_UNITTEST -DVIRTUAL_HCI -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/ble -I../../src/ble/tinycrypt/include -I../../src/ble -I../../include/ble/drivers -I../../include/driver/chip -I../../include/ble/sys -I../../src/ble/settings -o host/settings.o host/settings.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'airkiss/airkiss_ack.o' failed make[5]: *** [airkiss/airkiss_ack.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'codec/xradio_internal_codec.o' failed make[5]: *** [codec/xradio_internal_codec.o] Error 126 ../../../gcc.mk:230: recipe for target 'files.o' failed make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/chip' make[5]: *** [files.o] Error 126 ../../gcc.mk:230: recipe for target 'at_common.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [at_common.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/udhcp-0.9.8' make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/atcmd' ../../gcc.mk:230: recipe for target 'mbuf/mbuf_0_mem.o' failed Makefile:112: recipe for target 'net/udhcp-0.9.8' failed make[5]: *** [mbuf/mbuf_0_mem.o] Error 126 make[4]: *** [net/udhcp-0.9.8] Error 2 Makefile:112: recipe for target 'driver/chip' failed make[4]: *** [driver/chip] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'atcmd' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[4]: *** [atcmd] Error 2 make[5]: *** wait: No child processes. Stop. /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'src/nopoll.o' failed make[5]: *** [src/nopoll.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'MQTTClient-C/Xr_RTOS/MQTTXrRTOS.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'wlan' failed make[4]: *** [wlan] Error 2 ../../../gcc.mk:230: recipe for target 'src/nopoll_FreeRTOS.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../gcc.mk:230: recipe for target 'save_log_by_uart.o' failed ../../../gcc.mk:230: recipe for target 'HTTPCUsr_api.o' failed make[5]: *** [save_log_by_uart.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../../include -I../../../../include/libc -I../../../../include/driver/cmsis -I../../../../include/net -I../../../../include/net/lwip-2.1.2 -I../../../../include/net/mbedtls-"2.16.8" -I../../../../include/blec -I../../../../include/ble -I../../../../../../../../kernel/liteos_m -I../../../../../../../../kernel/liteos_m/utils -I../../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../../.. -I../../../../include/net/libwebsockets -I../../../../include/net/libwebsockets/config -o alloc.o alloc.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -Wno-address -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTmake[5]: *** [HTTPCUsr_api.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/util' ../../../gcc.mk:230: recipe for target 'examples/web_server_demo.o' failed ../../gcc.mk:230: recipe for target 'airkiss/airkiss_discover.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DMBEDTLS_CONFIG_FILE='<config-xr-mini-cliserv.h>' -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o src/api/api_lib.o src/api/api_lib.c make[5]: *** Waiting for unfinished jobs.... make[5]: *** [airkiss/airkiss_discover.o] Error 126 IN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/ -I../../../include/net/mbedtls-2.16.8/mbedtls/configs -o mbedtls.o mbedtls.c make[5]: *** [MQTTClient-C/Xr_RTOS/MQTTXrRTOS.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o json_test.o json_test.c make[5]: *** [src/nopoll_FreeRTOS.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/mqtt' make[5]: *** [examples/web_server_demo.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'sdd.o' failed make[5]: *** [sdd.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sdd' Makefile:112: recipe for target 'util' failed make[4]: *** [util] Error 2 Makefile:112: recipe for target 'net/mqtt' failed make[4]: *** [net/mqtt] Error 2 Makefile:112: recipe for target 'sdd' failed make[4]: *** [sdd] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'host/hci_ecc.o' failed make[5]: *** [host/hci_ecc.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../..//gcc.mk:230: recipe for target 'alink_auth.o' failed make[5]: *** [alink_auth.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'efpg_efuse.o' failed make[5]: *** [efpg_efuse.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/efpg' Makefile:112: recipe for target 'efpg' failed make[4]: *** [efpg] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../../include -I../../../../include/libc -I../../../../include/driver/cmsis -I../../../../include/net -I../../../../include/net/lwip-2.1.2 -I../../../../include/net/mbedtls-"2.16.8" -I../../../../include/blec -I../../../../include/ble -I../../../../../../../../kernel/liteos_m -I../../../../../../../../kernel/liteos_m/utils -I../../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../../.. -I../../../../include/net/libwebsockets -I../../../../include/net/libwebsockets/config -o context.o context.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -Wno-address -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o src/api/api_msg.o src/api/api_msg.c ../../../gcc.mk:230: recipe for target 'HTTPMbedTLSWrapper.o' failed make[5]: *** [HTTPMbedTLSWrapper.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DMBEDTLS_CONFIG_FILE='<config-xr-mini-cliserv.h>' -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/ -I../../../include/net/mbedtls-2.16.8/mbedtls/configs -o library/aes.o library/aes.c make[5]: *** wait: No child processes. Stop. /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'cJSON.o' failed Makefile:112: recipe for target 'net/HTTPClient' failed make[4]: *** [net/HTTPClient] Error 2 make[5]: *** [cJSON.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'src/auth.o' failed make[5]: *** [src/auth.o] Error 126 make[5]: *** wait: No child processes. Stop. /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'net/shttpd-1.42' failed make[4]: *** [net/shttpd-1.42] Error 2 ../../gcc.mk:230: recipe for target 'airkiss/airkiss_main.o' failed make[5]: *** [airkiss/airkiss_main.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/smartlink' /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../..//gcc.mk:230: recipe for target 'alink_ca.o' failed make[5]: *** [alink_ca.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'smartlink' failed make[5]: *** wait: No child processes. Stop. make[4]: *** [smartlink] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../../gcc.mk:230: recipe for target 'src/nopoll_conn.o' failed make[5]: *** [src/nopoll_conn.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../../include -I../../../../include/libc -I../../../../include/driver/cmsis -I../../../../include/net -I../../../../include/net/lwip-2.1.2 -I../../../../include/net/mbedtls-"2.16.8" -I../../../../include/blec -I../../../../include/ble -I../../../../../../../../kernel/liteos_m -I../../../../../../../../kernel/liteos_m/utils -I../../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../../.. -I../../../../include/net/libwebsockets -I../../../../include/net/libwebsockets/config -o handshake.o handshake.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -Wno-address -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTmake[5]: *** wait: No child processes. Stop. R="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o src/api/err.o src/api/err.c ../../../gcc.mk:230: recipe for target 'bme280/drv_bme280.o' failed Makefile:112: recipe for target 'net/cloud/aliyun' failed make[5]: *** [bme280/drv_bme280.o] Error 126 make[4]: *** [net/cloud/aliyun] Error 2 ../../gcc.mk:230: recipe for target 'host/settings.o' failed make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/component' make[5]: *** [host/settings.o] Error 126 make[5]: *** wait: No child processes. Stop. Makefile:112: recipe for target 'net/nopoll' failed make[4]: *** [net/nopoll] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'driver/component' failed ../../../gcc.mk:230: recipe for target 'mbedtls.o' failed make[4]: *** [driver/component] Error 2 make[5]: *** [mbedtls.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** Waiting for unfinished jobs.... Makefile:112: recipe for target 'ble' failed make[4]: *** [ble] Error 2 ../../gcc.mk:230: recipe for target 'json_test.o' failed make[5]: *** [json_test.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/cjson' ../../../../gcc.mk:230: recipe for target 'alloc.o' failed make[5]: *** [alloc.o] Error 126 make[5]: *** Waiting for unfinished jobs.... Makefile:112: recipe for target 'cjson' failed make[4]: *** [cjson] Error 2 ../../../gcc.mk:230: recipe for target 'src/api/api_lib.o' failed make[5]: *** [src/api/api_lib.o] Error 126 make[5]: *** Waiting for unfinished jobs.... /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'src/api/api_msg.o' failed make[5]: *** [src/api/api_msg.o] Error 126 ../../../gcc.mk:230: recipe for target 'library/aes.o' failed make[5]: *** [library/aes.o] Error 126 make[5]: *** wait: No child processes. Stop. ../../../../gcc.mk:230: recipe for target 'context.o' failed make[5]: *** [context.o] Error 126 Makefile:112: recipe for target 'net/mbedtls-"2.16.8"' failed make[4]: *** [net/mbedtls-"2.16.8"] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../../gcc.mk:230: recipe for target 'handshake.o' failed make[5]: *** [handshake.o] Error 126 make[5]: *** wait: No child processes. Stop. ../../../gcc.mk:230: recipe for target 'src/api/err.o' failed make[5]: *** [src/api/err.o] Error 126 Makefile:112: recipe for target 'net/libwebsockets/lib' failed make[5]: *** wait: No child processes. Stop. make[4]: *** [net/libwebsockets/lib] Error 2 Makefile:112: recipe for target 'net/lwip-2.1.2' failed make[4]: *** [net/lwip-2.1.2] Error 2 make[4]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' Makefile:103: recipe for target 'install' failed make[3]: *** [install] Error 2 make[3]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' ../../../../project/project.mk:460: recipe for target '__lib' failed make[2]: *** [__lib] Error 2 make[2]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' ../../../../project/project.mk:463: recipe for target '__lib' failed make[1]: *** [__lib] Error 2 make[1]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' Makefile:152: recipe for target 'lib' failed make: *** [lib] Error 2
这个问题应该是编译工具链路径没配置号造成的,遇到同样问题可以检查一下编译工具链
-
回复: 【XR806鸿蒙开发实战1】实操下载XR806鸿蒙代码并编译烧写
make lib -j遇到亿点点问题,正在处理中
PDC-XRseries@AwExdroid94:~/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark$ make lib -j make[1]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' cd ../../../..; make prj=demo/wlan_ble_demo include/generated/autoconf.h; cd - make[2]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark' make[3]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/tools/config' make[3]: 'conf' is up to date. make[3]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/tools/config' /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark # # No change to .config # NUPD .config NUPD include/generated/autoconf.h make[2]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark' /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc make __lib sdk_cfg_rdy=y make[2]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' make -C ../../../../src install make[3]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' make _install TARGET=install make[4]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' make -C driver/chip install make -C libc install make -C image install make -C rom install make -C sys install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/chip' make -C debug install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/libc' make -C driver/bluetooth install make -C ble install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/image' make -C pm install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/rom' make -C driver/component install make -C console install make -C efpg install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sys' make -C fs install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/debug' make -C audio/pcm install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/pm' make -C audio/manager install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/bluetooth' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/ble' make -C net/ethernetif install make -C net/lwip-2.1.2 install make -C net/ping install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/component' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/console' make -C net/HTTPClient install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/efpg' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/fs' make -C net/mbedtls-"2.16.8" install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/pcm' make -C net/nopoll install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/manager' make -C net/libwebsockets/lib install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ethernetif' make -C net/mqtt install make -C net/shttpd-1.42 install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/lwip-2.1.2' **************************** ******* DIRS=./common ./tinycrypt/source/ ./porting ./net ./settings/source ******* **************************** make -C net/sntp install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ping' make -C net/udhcp-0.9.8 install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/HTTPClient' make -C net/cloud/aliyun install make -C smartlink install make -C wlan install make -C atcmd install make -C cjson install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/udhcp-0.9.8' make -C util install make -C sdd install make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/mqtt' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/sntp' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/nopoll' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/cloud/aliyun' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/mbedtls-2.16.8' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/util' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/shttpd-1.42' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sdd' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o rom_core.o rom_core.c make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/libwebsockets/lib' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/smartlink' make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/wlan' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o console.o console.c make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/atcmd' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o ethernetif.o ethernetif.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o audio_manager.o audio_manager.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o audio_pcm.o audio_pcm.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o ping.o ping.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o wrap_malloc.o wrap_malloc.c DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o fdcm.o fdcm.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -include ../../include/generated/autoconf.h -c -x assembler-with-cpp -o cpu.o cpu.s ../../../gcc.mk:230: recipe for target 'audio_manager.o' failed make[5]: *** [audio_manager.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/manager' Makefile:112: recipe for target 'audio/manager' failed make[4]: *** [audio/manager] Error 2 make[4]: *** Waiting for unfinished jobs.... ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o sntp.o sntp.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o default/bt_ctrl_driver.o default/bt_ctrl_driver.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o coexist.o coexist.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o vfs.o vfs.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: Entering directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/cjson' DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o backtrace.o backtrace.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o pm.o pm.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'console.o' failed make[5]: *** [console.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/console' Makefile:112: recipe for target 'console' failed make[4]: *** [console] Error 2 ../../../gcc.mk:230: recipe for target 'audio_pcm.o' failed make[5]: *** [audio_pcm.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/audio/pcm' Makefile:112: recipe for target 'audio/pcm' failed make[4]: *** [audio/pcm] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o debug.o debug.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o wrap_stdio.o wrap_stdio.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o default/bt_zephyr_adapter.o default/bt_zephyr_adapter.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o spiffs/spiffs_cache.o spiffs/spiffs_cache.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o heap/common/sys_heap.o heap/common/sys_heap.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o atomic.o atomic.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o port.o port.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o flash.o flash.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o ad_button/drv_ad_button.o ad_button/drv_ad_button.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o wrap_time.o wrap_time.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DVERSION='"0.9.8"' -DXR_DHCPD -DDHCPD_LWIP -DDHCPD_HEAP_REPLACE_STACK -DDHCPD_USRCFG -DDHCPD_FREERTOS -DDHCPD_ICMPPING -DDHCPD_LOW_LEVEL -DDHCPD_DNS -DDHCPD_USE_DEFAULT_INIT -DDHCPD_UPGRADE_STA_MAC -DDHCPD_TIMEALT -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR=../../gcc.mk:230: recipe for target 'rom_core.o' failed make[5]: *** [rom_core.o] Error 126 "\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o usr_dhcpd.o usr_dhcpd.c make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/rom' ../../../gcc.mk:230: recipe for target 'ping.o' failed make[5]: *** [ping.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ping' /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'rom' failed make[4]: *** [rom] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'net/ping' failed make[4]: *** [net/ping] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o efpg.o efpg.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o codec/ac101.o codec/ac101.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/mqtt/MQTTPacket -I../../../include/net/mqtt/MQTTClient-C -I./MQTTPacket -I./MQTTClient-C -I./MQTTClient-C/Xr_RTOS -I./MQTTClient-C/Xr_RTOS/utest -o MQTTClient-C/MQTTClient.o MQTTClient-C/MQTTClient.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o image.o image.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o heap/dma_heap/dma_heap.o heap/dma_heap/dma_heap.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'coexist.o' failed make[5]: *** [coexist.o] Error 126 ../../gcc.mk:230: recipe for target 'vfs.o' failed make[5]: *** [vfs.o] Error 126 make[5]: *** Waiting for unfinished jobs.... make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'sntp.o' failed make[5]: *** [sntp.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/sntp' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../project/ -o at_command.o at_command.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/nopoll -I./src -o src/nopoll.o src/nopoll.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DVERSION='"0.9.8"' -DXR_DHCPD -DDHCPD_LWIP -DDHCPD_HEAP_REPLACE_STACK -DDHCPD_USRCFG -DDHCPD_FREERTOS -DDHCPD_ICMPPING -DDHCPD_LOW_LEVEL -DDHCPD_DNS -DDHCPD_USE_DEFAULT_INIT -DDHCPD_UPGRADE_STA_MAC -DDHCPD_TIMEALT -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR=~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -"\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o arpping.o arpping.c DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o mbuf/mbuf_0.o mbuf/mbuf_0.c Makefile:112: recipe for target 'net/sntp' failed make[4]: *** [net/sntp] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o btsnoop.o btsnoop.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o codec/ac107.o codec/ac107.c ../../../gcc.mk:230: recipe for target 'default/bt_ctrl_driver.o' failed make[5]: *** [default/bt_ctrl_driver.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DVERSION='"0.9.8"' -DXR_DHCPD -DDHCPD_LWIP -DDHCPD_HEAP_REPLACE_STACK -DDHCPD_USRCFG -DDHCPD_FREERTOS -DDHCPD_ICMPPING -DDHCPD_LOW_LEVEL -DDHCPD_DNS -DDHCPD_USE_DEFAULT_INIT -DDHCPD_UPGRADE_STA_MAC -DDHCPD_TIMEALT -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR=DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o bme280/bme280.o bme280/bme280.c "\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o files.o files.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/src/smartlink/alink/include/ -I../../include/ble -o airkiss/airkiss_ack.o airkiss/airkiss_ack.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../project/ -o at_common.o at_common.c ../../gcc.mk:230: recipe for target 'heap/dma_heap/dma_heap.o' failed make[5]: *** [heap/dma_heap/dma_heap.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o codec/xradio_internal_codec.o codec/xradio_internal_codec.c ../../../gcc.mk:230: recipe for target 'usr_dhcpd.o' failed make[5]: *** [usr_dhcpd.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** Waiting for unfinished jobs.... /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o mbuf/mbuf_0_mem.o mbuf/mbuf_0_mem.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../gcc.mk:230: recipe for target 'at_command.o' failed make[5]: *** [at_command.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../..//include -I../../../..//include/libc -I../../../..//include/driver/cmsis -I../../../..//include/net -I../../../..//include/net/lwip-2.1.2 -I../../../..//include/net/mbedtls-"2.16.8" -I../../../..//include/blec -I../../../..//include/ble -I../../../..//../../../../kernel/liteos_m -I../../../..//../../../../kernel/liteos_m/utils -I../../../..//../../../../kernel/liteos_m/kernel/arch/include -I../../../..//.. -o alink_auth.o alink_auth.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'wrap_time.o' failed make[5]: *** Waiting for unfinished jobs.... make[5]: *** [wrap_time.o] Error 126 ../../../gcc.mk:230: recipe for target 'codec/ac101.o' failed make[5]: *** [codec/ac101.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** Waiting for unfinished jobs.... DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o sdd.o sdd.c make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'fdcm.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [fdcm.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'ethernetif.o' failed make[5]: *** Waiting for unfinished jobs.... make[5]: *** [ethernetif.o] Error 126 ../../gcc.mk:230: recipe for target 'image.o' failed make[5]: *** [image.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/ethernetif' ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -/bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:224: recipe for target 'cpu.o' failed ../../gcc.mk:230: recipe for target 'wrap_malloc.o' failed make[5]: *** [wrap_malloc.o] Error 126 make[5]: *** [cpu.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'pm.o' failed ../../../gcc.mk:230: recipe for target 'default/bt_zephyr_adapter.o' failed DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/mqtt/MQTTPacket -I../../../include/net/mqtt/MQTTClient-C -I./MQTTPacket -I./MQTTClient-C -I./MQTTClient-C/Xr_RTOS -I./MQTTClient-C/Xr_RTOS/utest -o MQTTClient-C/Xr_RTOS/MQTTXrRTOS.o MQTTClient-C/Xr_RTOS/MQTTXrRTOS.c make[5]: *** [pm.o] Error 126 make[5]: *** [default/bt_zephyr_adapter.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/bluetooth' ../../../gcc.mk:230: recipe for target 'arpping.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [arpping.o] Error 126 Makefile:112: recipe for target 'net/ethernetif' failed make[4]: *** [net/ethernetif] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -DZTEST_UNITTEST -DVIRTUAL_HCI -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/ble -I../../src/ble/tinycrypt/include -I../../src/ble -I../../include/ble/drivers -I../../include/driver/chip -I../../include/ble/sys -I../../src/ble/settings -o host/hci_ecc.o host/hci_ecc.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../gcc.mk:230: recipe for target 'wrap_stdio.o' failed make[5]: *** [wrap_stdio.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/nopoll -I./src -o src/nopoll_FreeRTOS.o src/nopoll_FreeRTOS.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/libc' /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'driver/bluetooth' failed make[4]: *** [driver/bluetooth] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/HTTPClient -I../../../include/net/HTTPClient/API -o HTTPCUsr_api.o HTTPCUsr_api.c DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/shttpd/ -o examples/web_server_demo.o examples/web_server_demo.c ../../gcc.mk:230: recipe for target 'backtrace.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** [backtrace.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o save_log_by_uart.o save_log_by_uart.c make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'debug.o' failed make[5]: *** [debug.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/debug' Makefile:112: recipe for target 'libc' failed ../../gcc.mk:230: recipe for target 'flash.o' failed make[5]: *** [flash.o] Error 126 make[4]: *** [libc] Error 2 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/image' Makefile:112: recipe for target 'debug' failed make[4]: *** [debug] Error 2 ../../gcc.mk:230: recipe for target 'atomic.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** [atomic.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/src/smartlink/alink/include/ -I../../include/ble -o airkiss/airkiss_discover.o airkiss/airkiss_discover.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -Makefile:112: recipe for target 'image' failed make[5]: *** Waiting for unfinished jobs.... DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o efpg_efuse.o efpg_efuse.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o cJSON.o cJSON.c make[4]: *** [image] Error 2 ../../gcc.mk:230: recipe for target 'heap/common/sys_heap.o' failed ../../gcc.mk:230: recipe for target 'btsnoop.o' failed ../../gcc.mk:230: recipe for target 'spiffs/spiffs_cache.o' failed make[5]: *** [heap/common/sys_heap.o] Error 126 make[5]: *** [btsnoop.o] Error 126 make[5]: *** [spiffs/spiffs_cache.o] Error 126 ../../../gcc.mk:230: recipe for target 'MQTTClient-C/MQTTClient.o' failed ../../gcc.mk:230: recipe for target 'efpg.o' failed make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sys' make[5]: *** [efpg.o] Error 126 make[5]: *** [MQTTClient-C/MQTTClient.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[5]: *** Waiting for unfinished jobs.... DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o bme280/drv_bme280.o bme280/drv_bme280.c make[5]: *** wait: No child processes. Stop. ../../gcc.mk:230: recipe for target 'port.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [port.o] Error 126 ../../gcc.mk:230: recipe for target 'mbuf/mbuf_0.o' failed make[5]: *** [mbuf/mbuf_0.o] Error 126 make[5]: *** Waiting for unfinished jobs.... make[5]: *** wait: No child processes. Stop. Makefile:112: recipe for target 'sys' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[4]: *** [sys] Error 2 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/nopoll -I./src -o src/nopoll_conn.o src/nopoll_conn.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/HTTPClient -I../../../include/net/HTTPClient/API -o HTTPMbedTLSWrapper.o HTTPMbedTLSWrapper.c Makefile:112: recipe for target 'pm' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -make[4]: *** [pm] Error 2 ../../../gcc.mk:230: recipe for target 'ad_button/drv_ad_button.o' failed DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/shttpd/ -o src/auth.o src/auth.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'fs' failed make[5]: *** [ad_button/drv_ad_button.o] Error 126 make[4]: *** [fs] Error 2 make[5]: *** Waiting for unfinished jobs.... /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/src/smartlink/alink/include/ -I../../include/ble -o airkiss/airkiss_main.o airkiss/airkiss_main.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../../gcc.mk:230: recipe for target 'codec/ac107.o' failed make[5]: *** [codec/ac107.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../..//include -I../../../..//include/libc -I../../../..//include/driver/cmsis -I../../../..//include/net -I../../../..//include/net/lwip-2.1.2 -I../../../..//include/net/mbedtls-"2.16.8" -I../../../..//include/blec -I../../../..//include/ble -I../../../..//../../../../kernel/liteos_m -I../../../..//../../../../kernel/liteos_m/utils -I../../../..//../../../../kernel/liteos_m/kernel/arch/include -I../../../..//.. -o alink_ca.o alink_ca.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'bme280/bme280.o' failed make[5]: *** [bme280/bme280.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -DCONFIG_ARM -DZTEST_UNITTEST -DVIRTUAL_HCI -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -I../../include/ble -I../../src/ble/tinycrypt/include -I../../src/ble -I../../include/ble/drivers -I../../include/driver/chip -I../../include/ble/sys -I../../src/ble/settings -o host/settings.o host/settings.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'airkiss/airkiss_ack.o' failed make[5]: *** [airkiss/airkiss_ack.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'codec/xradio_internal_codec.o' failed make[5]: *** [codec/xradio_internal_codec.o] Error 126 ../../../gcc.mk:230: recipe for target 'files.o' failed make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/chip' make[5]: *** [files.o] Error 126 ../../gcc.mk:230: recipe for target 'at_common.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** [at_common.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/udhcp-0.9.8' make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/atcmd' ../../gcc.mk:230: recipe for target 'mbuf/mbuf_0_mem.o' failed Makefile:112: recipe for target 'net/udhcp-0.9.8' failed make[5]: *** [mbuf/mbuf_0_mem.o] Error 126 make[4]: *** [net/udhcp-0.9.8] Error 2 Makefile:112: recipe for target 'driver/chip' failed make[4]: *** [driver/chip] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'atcmd' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[4]: *** [atcmd] Error 2 make[5]: *** wait: No child processes. Stop. /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'src/nopoll.o' failed make[5]: *** [src/nopoll.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'MQTTClient-C/Xr_RTOS/MQTTXrRTOS.o' failed /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'wlan' failed make[4]: *** [wlan] Error 2 ../../../gcc.mk:230: recipe for target 'src/nopoll_FreeRTOS.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../gcc.mk:230: recipe for target 'save_log_by_uart.o' failed ../../../gcc.mk:230: recipe for target 'HTTPCUsr_api.o' failed make[5]: *** [save_log_by_uart.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../../include -I../../../../include/libc -I../../../../include/driver/cmsis -I../../../../include/net -I../../../../include/net/lwip-2.1.2 -I../../../../include/net/mbedtls-"2.16.8" -I../../../../include/blec -I../../../../include/ble -I../../../../../../../../kernel/liteos_m -I../../../../../../../../kernel/liteos_m/utils -I../../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../../.. -I../../../../include/net/libwebsockets -I../../../../include/net/libwebsockets/config -o alloc.o alloc.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -Wno-address -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTmake[5]: *** [HTTPCUsr_api.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/util' ../../../gcc.mk:230: recipe for target 'examples/web_server_demo.o' failed ../../gcc.mk:230: recipe for target 'airkiss/airkiss_discover.o' failed ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DMBEDTLS_CONFIG_FILE='<config-xr-mini-cliserv.h>' -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o src/api/api_lib.o src/api/api_lib.c make[5]: *** Waiting for unfinished jobs.... make[5]: *** [airkiss/airkiss_discover.o] Error 126 IN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/ -I../../../include/net/mbedtls-2.16.8/mbedtls/configs -o mbedtls.o mbedtls.c make[5]: *** [MQTTClient-C/Xr_RTOS/MQTTXrRTOS.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../include -I../../include/libc -I../../include/driver/cmsis -I../../include/net -I../../include/net/lwip-2.1.2 -I../../include/net/mbedtls-"2.16.8" -I../../include/blec -I../../include/ble -I../../../../../../kernel/liteos_m -I../../../../../../kernel/liteos_m/utils -I../../../../../../kernel/liteos_m/kernel/arch/include -I../../.. -o json_test.o json_test.c make[5]: *** [src/nopoll_FreeRTOS.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/net/mqtt' make[5]: *** [examples/web_server_demo.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'sdd.o' failed make[5]: *** [sdd.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/sdd' Makefile:112: recipe for target 'util' failed make[4]: *** [util] Error 2 Makefile:112: recipe for target 'net/mqtt' failed make[4]: *** [net/mqtt] Error 2 Makefile:112: recipe for target 'sdd' failed make[4]: *** [sdd] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'host/hci_ecc.o' failed make[5]: *** [host/hci_ecc.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../..//gcc.mk:230: recipe for target 'alink_auth.o' failed make[5]: *** [alink_auth.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../gcc.mk:230: recipe for target 'efpg_efuse.o' failed make[5]: *** [efpg_efuse.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/efpg' Makefile:112: recipe for target 'efpg' failed make[4]: *** [efpg] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../../include -I../../../../include/libc -I../../../../include/driver/cmsis -I../../../../include/net -I../../../../include/net/lwip-2.1.2 -I../../../../include/net/mbedtls-"2.16.8" -I../../../../include/blec -I../../../../include/ble -I../../../../../../../../kernel/liteos_m -I../../../../../../../../kernel/liteos_m/utils -I../../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../../.. -I../../../../include/net/libwebsockets -I../../../../include/net/libwebsockets/config -o context.o context.c /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -Wno-address -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o src/api/api_msg.o src/api/api_msg.c ../../../gcc.mk:230: recipe for target 'HTTPMbedTLSWrapper.o' failed make[5]: *** [HTTPMbedTLSWrapper.o] Error 126 ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DMBEDTLS_CONFIG_FILE='<config-xr-mini-cliserv.h>' -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -I../../../include/net/ -I../../../include/net/mbedtls-2.16.8/mbedtls/configs -o library/aes.o library/aes.c make[5]: *** wait: No child processes. Stop. /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../gcc.mk:230: recipe for target 'cJSON.o' failed Makefile:112: recipe for target 'net/HTTPClient' failed make[4]: *** [net/HTTPClient] Error 2 make[5]: *** [cJSON.o] Error 126 make[5]: *** Waiting for unfinished jobs.... ../../../gcc.mk:230: recipe for target 'src/auth.o' failed make[5]: *** [src/auth.o] Error 126 make[5]: *** wait: No child processes. Stop. /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'net/shttpd-1.42' failed make[4]: *** [net/shttpd-1.42] Error 2 ../../gcc.mk:230: recipe for target 'airkiss/airkiss_main.o' failed make[5]: *** [airkiss/airkiss_main.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/smartlink' /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../..//gcc.mk:230: recipe for target 'alink_ca.o' failed make[5]: *** [alink_ca.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'smartlink' failed make[5]: *** wait: No child processes. Stop. make[4]: *** [smartlink] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTR="\"0x1\"" -../../../gcc.mk:230: recipe for target 'src/nopoll_conn.o' failed make[5]: *** [src/nopoll_conn.o] Error 126 DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../../include -I../../../../include/libc -I../../../../include/driver/cmsis -I../../../../include/net -I../../../../include/net/lwip-2.1.2 -I../../../../include/net/mbedtls-"2.16.8" -I../../../../include/blec -I../../../../include/ble -I../../../../../../../../kernel/liteos_m -I../../../../../../../../kernel/liteos_m/utils -I../../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../../.. -I../../../../include/net/libwebsockets -I../../../../include/net/libwebsockets/config -o handshake.o handshake.c ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc -mcpu=cortex-m33 -mtune=cortex-m33 -march=armv8-m.main+dsp -mfpu=fpv5-sp-d16 -mfloat-abi=softfp -mcmse -mthumb -c -g -fno-common -fmessage-length=0 -fno-exceptions -ffunction-sections -fdata-sections -fomit-frame-pointer -Wall -Werror -Wno-cpp -Wpointer-arith -Wno-error=unused-function -MMD -MP -Os -DNDEBUG -Wno-error=stringop-truncation -Wno-error=restrict -include xr_config.h -Wno-address -DCONFIG_CHIP_ARCH_VER=3 -DCONFIG_ARCH_APP_CORE -DCONFIG_CPU_CM33F -DPRJ_XIP_SIZE=8M -DPRJ_BOOT_CERT="\"null\"" -DPRJ_IMAGE_BOOT_ATTR="\"0x1\"" -DPRJ_IMAGE_APP_SRAM_OFFS="\"0x00201000\"" -DPRJ_IMAGE_APP_EP="\"0x00201101\"" -DPRJ_IMAGE_BOOT_SRAM_OFFS="\"0x00230000\"" -DPRJ_IMAGE_BOOT_EP="\"0x00230101\"" -DPRJ_IMAGE_TZ_ATTR="\"0x25\"" -DPRJ_IMAGE_TZ_XIP_ATTR="\"0x26\"" -DPRJ_IMAGE_TZ_PSRAM_ATTR="\"0x25\"" -DPRJ_APP_BIN_CERT="\"null\"" -DPRJ_APP_XIP_BIN_CERT="\"null\"" -DPRJ_APP_PSRAM_BIN_CERT="\"null\"" -DPRJ_IMAGE_APP_ATTmake[5]: *** wait: No child processes. Stop. R="\"0x1\"" -DPRJ_IMAGE_APP_XIP_ATTR="\"0x2\"" -DPRJ_IMAGE_APP_PSRAM_ATTR="\"0x1\"" -DCONFIG_RAM_START=0x00201000 -DPRJ_RAM_SIZE=284K -DPRJ_PSRAM_START_OFFS="\"0x01400000\"" -DCONFIG_PSRAM_START=0x01400000 -DPRJ_PSRAM_SIZE=0K -DPRJ_IMAGE_BOOT_BIN="\"boot_"40"M.bin\"" -DPRJ_IMAGE_SYS_SDD_BIN="\"sys_sdd_"40"M.bin\"" -std=gnu99 -I../../../include -I../../../include/libc -I../../../include/driver/cmsis -I../../../include/net -I../../../include/net/lwip-2.1.2 -I../../../include/net/mbedtls-"2.16.8" -I../../../include/blec -I../../../include/ble -I../../../../../../../kernel/liteos_m -I../../../../../../../kernel/liteos_m/utils -I../../../../../../../kernel/liteos_m/kernel/arch/include -I../../../.. -o src/api/err.o src/api/err.c ../../../gcc.mk:230: recipe for target 'bme280/drv_bme280.o' failed Makefile:112: recipe for target 'net/cloud/aliyun' failed make[5]: *** [bme280/drv_bme280.o] Error 126 make[4]: *** [net/cloud/aliyun] Error 2 ../../gcc.mk:230: recipe for target 'host/settings.o' failed make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/driver/component' make[5]: *** [host/settings.o] Error 126 make[5]: *** wait: No child processes. Stop. Makefile:112: recipe for target 'net/nopoll' failed make[4]: *** [net/nopoll] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error Makefile:112: recipe for target 'driver/component' failed ../../../gcc.mk:230: recipe for target 'mbedtls.o' failed make[4]: *** [driver/component] Error 2 make[5]: *** [mbedtls.o] Error 126 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error make[5]: *** Waiting for unfinished jobs.... Makefile:112: recipe for target 'ble' failed make[4]: *** [ble] Error 2 ../../gcc.mk:230: recipe for target 'json_test.o' failed make[5]: *** [json_test.o] Error 126 make[5]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src/cjson' ../../../../gcc.mk:230: recipe for target 'alloc.o' failed make[5]: *** [alloc.o] Error 126 make[5]: *** Waiting for unfinished jobs.... Makefile:112: recipe for target 'cjson' failed make[4]: *** [cjson] Error 2 ../../../gcc.mk:230: recipe for target 'src/api/api_lib.o' failed make[5]: *** [src/api/api_lib.o] Error 126 make[5]: *** Waiting for unfinished jobs.... /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../gcc.mk:230: recipe for target 'src/api/api_msg.o' failed make[5]: *** [src/api/api_msg.o] Error 126 ../../../gcc.mk:230: recipe for target 'library/aes.o' failed make[5]: *** [library/aes.o] Error 126 make[5]: *** wait: No child processes. Stop. ../../../../gcc.mk:230: recipe for target 'context.o' failed make[5]: *** [context.o] Error 126 Makefile:112: recipe for target 'net/mbedtls-"2.16.8"' failed make[4]: *** [net/mbedtls-"2.16.8"] Error 2 /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error /bin/sh: /home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-gcc: cannot execute binary file: Exec format error ../../../../gcc.mk:230: recipe for target 'handshake.o' failed make[5]: *** [handshake.o] Error 126 make[5]: *** wait: No child processes. Stop. ../../../gcc.mk:230: recipe for target 'src/api/err.o' failed make[5]: *** [src/api/err.o] Error 126 Makefile:112: recipe for target 'net/libwebsockets/lib' failed make[5]: *** wait: No child processes. Stop. make[4]: *** [net/libwebsockets/lib] Error 2 Makefile:112: recipe for target 'net/lwip-2.1.2' failed make[4]: *** [net/lwip-2.1.2] Error 2 make[4]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' Makefile:103: recipe for target 'install' failed make[3]: *** [install] Error 2 make[3]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/src' ../../../../project/project.mk:460: recipe for target '__lib' failed make[2]: *** [__lib] Error 2 make[2]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' ../../../../project/project.mk:463: recipe for target '__lib' failed make[1]: *** [__lib] Error 2 make[1]: Leaving directory '/home/PDC-XRseries/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark/project/demo/wlan_ble_demo/gcc' Makefile:152: recipe for target 'lib' failed make: *** [lib] Error 2
-
回复: 【XR806鸿蒙开发实战1】实操下载XR806鸿蒙代码并编译烧写
- 下载编译工具链
下载页面:https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads
根据自己的编译PC选择对应的编译工具链,我的PC是x86 linux的,所以选择gcc-arm-none-eabi-10-2020-q4-major-x86_64-linux.tar.bz2
2.1
解压出来放到源码的根目录的tool下tar -jxvf gcc-arm-none-eabi-10-2020-q4-major-src.tar.bz2
2.2
改编译工具链路径
改成
~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-majorPDC-XRseries@AwExdroid94:~/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/liteos_m$ git diff . diff --git a/xr806/liteos_m/config.gni b/xr806/liteos_m/config.gni index 85878dc..08718a9 100755 --- a/xr806/liteos_m/config.gni +++ b/xr806/liteos_m/config.gni @@ -34,7 +34,7 @@ board_toolchain = "arm-none-eabi-gcc" board_toolchain_path = "" # Compiler prefix. -board_toolchain_prefix = "~/tools/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-" +board_toolchain_prefix = "~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin/arm-none-eabi-" # Compiler type, "gcc" or "clang". board_toolchain_type = "gcc" @@ -95,4 +95,4 @@ storage_type = "" asmflags = [ "-D__FPU_PRESENT=1U", "-D__FPU_USED=1U"
xr_skylarks里的gcc
PDC-XRseries@AwExdroid94:~/workspace/chenkunyao/xr806_openharmony2/device/xradio/xr806/xr_skylark$ git diff gcc.mk diff --git a/xr806/xr_skylark/gcc.mk b/xr806/xr_skylark/gcc.mk index 0512969..dbc908c 100755 --- a/xr806/xr_skylark/gcc.mk +++ b/xr806/xr_skylark/gcc.mk @@ -5,7 +5,7 @@ # ---------------------------------------------------------------------------- # cross compiler # ---------------------------------------------------------------------------- -CC_DIR := ~/tools/gcc-arm-none-eabi-10-2020-q4-major/bin +CC_DIR := ~/workspace/chenkunyao/xr806_openharmony2/tool/gcc-arm-none-eabi-10-2020-q4-major/bin CC_PREFIX := $(CC_DIR)/arm-none-eabi- AS := $(CC_PREFIX)as
- 下载编译工具链
-
【XR806鸿蒙开发实战1】实操下载XR806鸿蒙代码并编译烧写
今天表演下载xr806鸿蒙代码并编译 并烧写 并跑起来
下载命令
mkdir xr806_openharmony cd xr806_openharmony repo init -u ssh://git@gitee.com/openharmony-sig/manifest.git -b OpenHarmony_1.0.1_release --no-repo-verify -m devboard_xr806.xml repo sync -c //下载部分大容量二进制文件 repo forall -c 'git lfs pull'
下载中。。。
PDC-XRseries@AwExdroid94:~/workspace/chenkunyao/xr806_openharmony2$ repo init -u ssh://git@gitee.com/openharmony-sig/manifest.git -b OpenHarmony_1.0.1_release --no-repo-verify -m devboard_xr806.xml Downloading Repo source from https://mirrors.tuna.tsinghua.edu.cn/git/git-repo/ remote: Enumerating objects: 7031, done. remote: Counting objects: 100% (7031/7031), done. remote: Compressing objects: 100% (3676/3676), done. remote: Total 7031 (delta 4541), reused 5422 (delta 3281) Receiving objects: 100% (7031/7031), 3.04 MiB | 7.14 MiB/s, done. Resolving deltas: 100% (4541/4541), done. repo: warning: verification of repo code has been disabled; repo will not be able to verify the integrity of itself. Downloading manifest from ssh://git@gitee.com/openharmony-sig/manifest.git remote: Enumerating objects: 181, done. remote: Counting objects: 100% (181/181), done. remote: Compressing objects: 100% (136/136), done. remote: Total 274 (delta 89), reused 94 (delta 45), pack-reused 93
下载大的二进制文件。。。
repo forall -c 'git lfs pull' Git LFS: (0 of 2 files) 0 B / 3.82 MB Git LFS: (0 of 2 files) 0 B / 3.82 MB Git LFS: (0 of 2 files) 0 B / 3.82 MB Git LFS: (0 of 2 files) 51.69 KB / 3.82 MB Git LFS: (0 of 2 files) 691.23 KB / 3.82 MB Git LFS: (1 of 2 files) 2.17 MB / 3.82 MB Git LFS: (1 of 2 files) 2.52 MB / 3.82 MB Git LFS: (1 of 2 files) 3.08 MB / 3.82 MB Git LFS: (1 of 2 files) 3.79 MB / 3.82 MB Git LFS: (2 of 2 files) 3.82 MB / 3.82 MB
-
回复: 【资料释放】D1哪吒阿里小程序SDK释放
小程序开发手册
一、SDK 集成说明
二、小程序开发说明
三、D-Bus开发说明一、SDK 集成说明
1.目录结构:
-
/usr/lib/*.so,框架使用的so库
-
/usr/bin/miniapp,框架启动程序
-
/etc/miniapp/resources/,框架使用的资源目录
2.小程序预置:
-
/etc/miniapp/resources/local_packages.json
配置预置小程序列表(HOME和GUIDE唯一,标识桌面和向导应用,首次开机进入向导小程序) -
amr文件预置到/etc/miniapp/resources/presetpgks/目录
注意: -
默认显示对接的fb设备节点为/dev/fb0
-
默认触屏对接的设备节点为/dev/input/event0
二、小程序开发说明
1.开发手册:参⻅ https://haas.iot.aliyun.com/haasui/quickstart
2.示例demo:参⻅ haas-ui-demo 工程
3.真机调试:
方法1,按照《一、SDK 集成说明》,预置 amr 到设备上,清除/data/miniapp/目录,重启
方法2,拷⻉ .falcon 目录到设备上,带路径来启动 miniapp 进程(示例:miniapp {appPath}),其中 appPath 为 amr 解压后的路径三、D-Bus开发说明
D-Bus 开发遵循官方说明。https://www.freedesktop.org/wiki/Software/dbus/
https://dbus.freedesktop.org/doc/api/html/index.html
https://dbus.freedesktop.org/doc/api/html/group__DBusBus.html
c code example:
http://www.matthew.ath.cx/articles/dbus
https://www.softprayog.in/programming/d-bus-tutorial -
-
【资料释放】D1哪吒阿里小程序SDK释放
阿里基于D1哪吒开发板适配的阿里小程序框架源码释放,后续将会有更多文档放出,开发者可以在D1哪吒开发板商适配或者移植阿里小程序。
详情请见平头哥OCC平台:
https://occ.t-head.cn/vendor/detail/download?spm=a2cl5.14293897.0.0.d1495db1mfcC26&id=3913671825380876288&vendorId=3878439890589003776&module=1#sticky开发文档清单:
-
回复: 【资料释放】全志XR806开发板全资料释放,连bomlist都给出来了
3.软件SDK——OpenHarmony/鸿蒙
XR806开发板支持L0(轻量设备)级别的鸿蒙系统
全部代码已经从gitee开源
gittee仓库链接:
https://gitee.com/moldy-potato-chips/devboard_device_allwinner_xr806
https://gitee.com/openharmony-sig/devboard_device_allwinner_xr806 (已废弃)
-
回复: 【资料释放】全志XR806开发板全资料释放,连bomlist都给出来了
2.硬件设计下载链接
https://www.aw-ol.com/downloads?cat=12硬件设计文件:
开发板原理图 https://www.aw-ol.com/downloads/resources/50
核心板原理图 https://www.aw-ol.com/downloads/resources/51位号图:
核心板 https://www.aw-ol.com/downloads/resources/52
底板 https://www.aw-ol.com/downloads/resources/53
-
回复: 【资料释放】全志XR806开发板全资料释放,连bomlist都给出来了
1.硬件bomlist
包含核心板和底板两个部分
核心板:
底板:
完整excel文档下载:
XR806鸿蒙开发板bomlist20211018.xlsbomlist文档下载链接:https://www.aw-ol.com/downloads?cat=12
贴片生产由合作伙伴 汇智伟业 提供,感谢支持!
商务合作可联系汇智伟业,邮箱:lzd@hzwygps.com -
【资料释放】全志XR806开发板全资料释放,连bomlist都给出来了
全志XR806开发板/模组全部资料都将通过本帖子释放,包括bomlist、完整硬件设计、软件SDK等,拿到资料就能DIY板子
开放原子基金会官方介绍链接:
https://www.openharmony.cn/#/supportDevices/XR806 -
回复: 网友 @SdtEE 分享的 D1s 开源原理图与 PCB (验证OK)
@sdtee 在 网友 @Excelsior 分享的 D1s 开源原理图与 PCB,待验证 中说:
原作者冒个泡,其实这个工程已经开放在GitHub上了(https://github.com/SdtElectronics/Xassette-Asterisk),不过原本是打算验证过后再公布的。GitHub上的那一版相比一楼压缩包里的有些小改动,比如此前一处丝印把
TVOUT
误标成TVIN
,之后修正了过来。等我焊好之后会再更新后续感谢原作者!
(啥时候有卖? -
小爱音箱立体声组网上手试玩
最近搞了两个小爱音箱Art,可以组成立体声矩阵,试玩一波给大家探探水
1.首先在同一个路由器下把两个音箱都配置好,并设置到同一个房间
2.点击组成立体声。不过这个功能bug还比较多,体验比较差,经常组网失败,或者虽然组网完成了,但是播放的时候默认还是从一个音箱出来
3.设置左右升到,现在好像只能设置两个,左右声道,不知道我想组个8方位的全空间立体声能不能实现
4.组网成功后在小爱音箱的音乐播放界面选择立体声组合播放,一首蔡琴的《渡口》,有内味了
emmm .... 高音准,中音甜,低音劲,一个字——通透
-
开放原子基金会930 OpenHarmony见面会实况分享,全志三款支持鸿蒙的芯片亮相
9月30日,开放原子基金会举办了OpenHarmony线上见面会,各路大佬分享了各自领域的研发成果,见面会在B站等多个平台进行了全程直播,累计观看人数超2W人。直播全文视频见B站链接:
https://www.bilibili.com/video/BV1gq4y1Z7Rw?spm_id_from=333.999.0.0其中全志在会上分享了3款支持OpenHarmony的芯片/开发板,分别是XR806 T507和D1
XR806开发板使用的是全志自研的XR806芯片,支持wifi和ble,可以应用于智能家居、工业控制等场景的无线互联。它使用的是Arm-Star ARMv8-M MCU,sip了ddr和flash,集成度非常高,可以帮助我们的客户和开发者最大化地降低硬件设计的复杂度,降低bom成本。同时支持efuse和security,留给了我们更大的软件开发和设计空间。
第二款是全志和合作伙伴小熊派一起做的T507开发板,使用的是全志自研的T507的芯片,在工业、消费、车载、教育等行业都有巨大的应用空间。
第三款是全志的D1开发板,这款开发板是全志在线5月份的时候推出的,最近在国内外的极客圈子里都非常火,因为它的CPU是RISC-V架构的,使用的是阿里平头哥的C906核心。中科院台阳老师团队和全志都在进行OpenHarmony系统的移植,预计年底可以完成适配。 -
回复: 在Win10用PhoenixCard烧录镜像到TF提示格式化失败1377
@tattakatandan 在 在Win10用PhoenixCard烧录镜像到TF提示格式化失败1377 中说:
@xiaowenge
ありがとう!無事に書き込み完了したよ!
でも、UBOX使ってるんだけど、中国国内(上海)では、ネットワーク接続が出来ないみたい。。。
これは、しょうがないね。諦めるしかないね。UBOXとは?
-
回复: 在Win10用PhoenixCard烧录镜像到TF提示格式化失败1377
@tattakatandan 在 在Win10用PhoenixCard烧录镜像到TF提示格式化失败1377 中说:
待っていれば終わるよね。
You have failed. Developers who use AMD computer have also encountered this problem. The solution is to use the new version of the tool. Try this:
https://www.aw-ol.com/downloads/resources/42 -
回复: 【资源汇总】D1-H芯片资料资源汇总
2021年第二期成果汇总
点亮技能 开发者 简介 自适应MIPI屏幕-240*32 IAMLIUBO 实现修改dts文件驱动自己的屏幕!制作转接板,根据厂商驱动修改设备树节点,进行初始化,成功点亮! 扩展板的设计 xfdr0805 借鉴树莓派,给哪吒设计制作一个扩展板,可以充分利用哪吒引出的外设引脚 扩展版实现-SPI-LCD xfdr0805 在扩展板上使用引出的SPI1接口驱动屏幕,同时用3屏 扩展版实现-IIC-OLED xfdr0805 在应用层操作OLED,实现IIC应用层写数据,并移植u8g2GUI框架 扩展版实现-红外发送与接收 xfdr0805 利用芯片内置的ir实现红外的发射与接收 扩展版实现-按键与旋转编码器 xfdr0805 使用扩展芯片引出脚做按键检测,配置设备dts添加设备,提供按键与编码器的测试程序 扩展版实现-点灯 xfdr0805 分别使用LEDC子系统与GPIO系统 点灯,同时展示了多种特效,呼吸效果,定时效果,并提供了测试代码 DLNA客户端投屏 逸俊晨晖 可以实现网络投屏!给哪吒适配DLNA客户端,并支持gsteamer硬解视频流,可支持同一网络下投屏使用,显示帧率够用 D1使用gstreamer硬件解码视频 逸俊晨晖 提高视频播放流畅性软件进行视频播放浪费CPU计算资源且播放卡顿不流畅,使用插件调用libcedar进行视频硬件解码,会非常流畅 D1使用lvgl8和lvgl7 逸俊晨晖 移植LVGL官方显示框架,使用cmake构建项目,使用软件刷屏,帧率不高,资源占用大 哪吒3D打印外壳 whycan转载 隐藏哪吒霸气的PCB,可以直接3D打印的 stl 模型文件 SSH和VNC的远程桌面访问 liangdi 远程桌面连接!基于RVBoards Debian 系统,开启远程访问,摆脱鼠标键盘显示器 Fedora 系统在D1上运行 tigger Fedora 是知名的Linux操作系统,是由全球社区爱好者构建的面向日常应用的快速、稳定、强大的操作系统。提供系统镜像,可直接dd烧录 LVGL7移植 whycan 使用官方仓库构建,提供移植好的源码固件,可直接编译使用 D1 F133 DXP封装 tigger 对硬件感兴趣的同学可以看这里!目前缺少D1原理图库文件,后续会补充上来 D1双屏异显 BedRock 在D1上实现两个屏幕同时播放不同应用!HDMI播放视频,MIPI做UI交互,附固件及食用方法 D1驱动树莓派dsi屏幕 mangogeek 哪吒点亮树莓派屏幕。详细修改踩坑过程,非常具有参考性 D1驱动IIC OLED屏幕 BedRock 哪吒点亮IIC OLED屏幕,借鉴单片机驱动显示方法,直接在应用层操作设备 D1 外设GPIO应用层使用 BedRock 在应用层操作GPIO使用方法,模仿单片机操作方法。对比上面的模块是使用增加dts设备方法 用D1实现提醒器 qianhao 制作:web服务器加LVGL及传感器数据读取,能够根据设置实现定时报警功能,附有详细DIY教程! openEuler烧录安装使用 中科院软件所 openEuler 是基于 CentOS 的 Linux 发行版,为企业量身定做!能够使用 JAVA 编程,并能使用该系统的特性 SPI-NAND性能优化 Banquo 针对SPI NAND读写中的思考,还有优化空间,目前优化一点搬运过程钟的时间 D1哪吒开发板做一个卡牌识别机 BedRock 使用ncnn LVGL 实时视像头推理,能够实现卡牌识别,记录详细过程,并附有开源链接可二次开发! D1 openssl 加密CE DOT小文哥 用来加密个人APP,SDK直接提供,打上pach,可以直接用来测试 D1开发板4GNAS使用 WM_CH 摆脱网盘泄密风险,打造自己的NAS,使用官方软件包,使用和宇宙4G模组,可外网访问NAS D1 Tina 升级gstreamer DOT小文哥 Tina中的播放器插件,支持D1RV架构,连接到显示插件,支持g2d硬件旋转 交叉编译opencv BedRock 在哪吒上使用Opencv做图像处理第一步,交叉编译! 整理帖,完全步骤,很详细 -
回复: 坐等芒果派即将推出基于D1s代号麻雀MangoPi-MQ1 的 RISC-V Linux小板
@jordonwu 在 坐等芒果派即将推出基于D1s代号麻雀MangoPi-MQ1 的 RISC-V Linux小板 中说:
能接之前你们搞的那个MIPI屏吗?
软件上可以支持,但是D1s引脚少很多,硬件上得看芒果大佬想具体怎么设计
-
回复: 请教一下大神们,嵌入式中有没有类似游戏机的开源框架
国产开源掌机厂商TRIMUI用全志F1C100芯片做的开源掌机,应该已经移植了很多东西了,可以找他们聊聊
一起来一统三国吧!
https://www.zhe2.com/note/632314061391 -
回复: 请教一下大神们,嵌入式中有没有类似游戏机的开源框架
@bedrock 在 请教一下大神们,嵌入式中有没有类似游戏机的开源框架 中说:
如题。在网上找了找有一个mame,但是没在网上找到相关资源
然后再找了一下,就是需要图形桌面环境gtk,刚刚编译了一个SDL库,有没有用武之地。坑网司徒大佬是这方面的专家
-
回复: 别裸奔了,看大佬@lovexulu 给哪吒做的裤衩。 (转载) 外壳建模,3D打印
感谢大佬帮做的外壳,还专门印上了D1~
散热的空位还留了装小风扇的螺丝孔位,自信一点,我们不需要,有这么大散热空隙,不留孔应该都行 -
回复: 【资源汇总】2021年哪吒开发板第二期成果汇报
传送门:
2021年D1哪吒开发板第一期成果汇报:https://bbs.aw-ol.com/topic/189
2021年哪吒开发板第二期成果汇报:https://bbs.aw-ol.com/topic/418
D1-H/D1s/哪吒开发板成果汇报第三期(2022.4.08):https://bbs.aw-ol.com/topic/1267/ -
【威力加强包更新】D1哪吒开发板正式支持Fedora操作系统
【威力加强包更新】D1哪吒开发板正式支持Fedora操作系统
有红帽高级工程师Fuwei主持移植的Fedora操作系统正式释放啦!
中英文教程同步上线
中文:https://d1.docs.aw-ol.com/strong/strong_5Fedora/
English: https://d1.docs.aw-ol.com/en/strong/strong_5Fedora/
同时提供编好的Fedora固件,下载就能玩!
-
回复: 第一次调MIPI接口的显示屏,都是什么套路?
@iamliubo 在 第一次调MIPI接口的显示屏,都是什么套路? 中说:
更新:
PCB 工程已放在github: https://github.com/imliubo/kicad-projects
JD9852驱动:
jd9852.tarbrandy文件夹下的放到这个路径下:
tina-d1-open/lichee/brandy-2.0/u-boot-2018/drivers/video/sunxi/disp2/disp/lcd/
kernel文件下的放到这个路径:
tina-d1-open/lichee/linux-5.4/drivers/video/fbdev/sunxi/disp2/disp/lcd/
为什么是两份?因为我看uboot跟kernel的panels.h不太一样,两份驱动还是有些不太一样的。
然后可能还需要修改目录下的makefile跟Kconfig跟panels.c。
话说 tina-sdk 接受用户 contribute 不现在tina没有官方在github或者gitee建仓库,你可以自己建一个,建立自己的元宇宙,后面官方往gitee上推,就都要经过你审核
-
回复: 2021年D1哪吒开发板第一期成果汇报
@engineerxu 在 2021年D1哪吒开发板第一期成果汇报 中说:
现在用的系统是基于D1哪吒开发板移植 Debian11 系统,并预装LXDE桌面环境,但是系统太新了,很多老Debian的依赖下不了。
大家又编译Debian 10,放到哪吒D1里面跑起来求分享固件下载链接
-
回复: 在Win10用PhoenixCard烧录镜像到TF提示格式化失败1377
总结了大家的经验和数据,发现AMD的电脑比较搞概率出现烧录失败的问题,但也不是一定不能成功,有一个比较新的版本的PhoenixCard修复了部分问题,成功率比较高一些,下载链接:PhoenixCardv4.2.7.7z
-
回复: MCU通过以太网(UDP)发送图片到哪吒开发板进行处理
@aldfaaa 在 通过TCP/UDP图传到哪吒开发板 中说:
@xiaowenge jpeg转yuv的demo都有了, 输出你们熟悉的肝一下就出来....虽然开源木有钱...
好 我们想想怎么搞,尽快给出来
-
回复: 如果我做了D1方案的产品,用贴片式TF卡(SD NAND),请问大伙我应该如何烧录这个芯片呢?
全志有个量产烧写工具,PhonenixSuit Pro,USB烧写的,支持一次烧写8台设备。
也可以做一个夹具,比如一次烧录80片的夹具,一次把80片都放上去,烧写完成,再换80片,这样会毕竟快。
流程设计得好得话,小批量搞自动化还没有人工便宜,工厂人工25元一小时,别问我怎么知道,刚了解的行情,我准备要去电子厂打工了。 -
回复: MCU通过以太网(UDP)发送图片到哪吒开发板进行处理
@aldfaaa 在 通过TCP/UDP图传到哪吒开发板 中说:
请问大佬指点一下如何将图片通过HDMI输出到屏幕.
像官方文档HDMI测试指令和视频播放那样.说出来你可能不信,现在没有现成的可以图片的demo,但是播视频的有
-
回复: 弱弱问一下,d1_nezha_min-tina 与 d1_nezha-tina 有什么区别呢?
d1_nezha-tina是标准固件,该有的外设都选上了。
d1_nezha_min-tina,min=mini,只选了基础系统,就是只能把系跑起来,串口能起来,wifi好像也选了,用来测试芯片/nand/DDR是不是好的,或者用来往上做加法搭配出自己想要的固件,再或者做OTA时候的临时系统 -
回复: Allwinner Mass production start card making tutorial
hi~Everybody, there is english discussion zone, please use english.
-
【深度剖析】小米CyberDog四足机器人的AI运动系统的实现
追觅扫地机器人拆机:MR813扫地机器人拆解内部.pdf
2021年8月10日,雷军进行继宣布造车之后的第二次演讲。
在这场以“我的梦想,我的选择”为主题的演讲上,雷军详细讲述了创业后的故事,发布了一系列全新产品。其中,给人最大惊喜同时也给人带来诸多疑问的就是我们这篇推文的主角——“CyberDog”,中文名 “铁蛋”。
在现场的展示中,这只 “人类高质量宠物” 可以行走、站立、小碎步跳舞等等。
CyberDog拜年
CyberDog行走
在官方给出的运动性能参数中,介绍到,除了这些,CyberDog还支持恢复站立、姿态展示、缓慢趴下、缓跑、小跑、奔跑、跳跑、跳跃、倒地恢复、打滚、握手、跳舞、转圈、作揖、坐下等一系列功能动作。
此物一出,各大论坛上也是众说纷纭,有人惊叹于他的外观,有人惊叹于他的智能,也有人惊叹于他在不同指令下不同行为的体现。 可是这只全新的物种,到底是如何做到这些复杂的动作的?它的出现,又能为人类做些什么呢? 相信绝大多数人看到这只机器狗的第一反应都如下面的表情包一样,“我不理解”。
这只看起来像小狗的机器人其实是当前业内备受关注的新产品形态—— 仿生四足机器人 。CyberDog全身拥有11组高精度传感器时刻待命,可主动探测外部细微变化,它搭载了AI超级计算机——NVIDIA JETSON XAVIER NX平台,可处理来自多个传感器的海量数据。于此同时,CyberDog使用了自研的高性能伺服电机,通过全志MR813芯片对全身的运动模块进行控制。
如果把传感器组比作CyberDog的“眼睛”,那NVIDIA JETSON XAVIER NX就是它的“大脑”,伺服电机就是它的“肌肉”,Allwinner MR813就是“小脑”。
下面就来了解一下铁蛋的各个 “器官” 是如何组成它的运动系统的。
#01
大脑-英伟达主控
CyberDog 的“大脑”是英伟达的 Jetson Xavier NX 平台,这是一台用于嵌入式和边缘系统的 AI 超级计算机。它集成了6个core NVIDIA Carmel ARM v8.2 64-bit CPU、搭载 384 NVIDIA CUDA cores 和 48 Tensor cores的GPU、2个 NVDLA 引擎深度学习加速器、7路VLIW视觉处理器。可以提供最高21T的算力。这保证了 CyberDog 可以毫无障碍地处理从传感器系统捕获的大量数据,准确领会主人的意图。同时支持2个 MIPI CSI-2 D-PHY lanes、以太网、WIFI/BT、HDMI、多路USB等。
有了这个大脑,这台机械狗甚至可以直接外接显示输入设备变身一台“电脑”,当然并不是我们传统意义上使用的那种个人用电脑,而是用于开发等用途。
Nvidia Jetson Xavier NX
#02
眼睛-11组高精度传感器
为了让铁蛋真的像一条狗,小米为其配备了超过11组高精密传感器,包括Intel Realsense D450深度摄像头、AI交互相机、双目超广角相机、TOF传感器、环境光传感器、超声波传感器、惯性测量单元、GPS模组、地磁传感器、光流计、6MIC环型阵列、触摸传感器等。有了这些丰富的传感器,CyberDog就像一个拥有白眼的“感知型忍者”,可以敏锐地感觉都周围流动的“查克拉”,并做出避障、预警等行为。
不仅仅是堆砌硬件,小米手机影像部门还亲自介入,将自己在手机方面深耕多年影像的技术运用至四足机器人领域,将硬件的性能发挥到极致。比如CyberDog的自主跟随能力就是源自人脸识别技术的衍生,以及SLAM建图和导航避障功能都来自影像技术的延伸的视觉探知技术,CyberDog通过影像技术感知环境后,通过算法创建出地图并导航,最终规划出最优路线。
#03
肌肉-自研伺服电机
CyberDog全身的自由度是12,单腿的自由度是3,即每只脚大腿关节处有两个电机,小腿关节处有一个电机,共12个电机。12个电机的组合让CyberDog可以自由地做出奔跑、跳跃、空翻等高难度动作。据悉,这12个伺服电机均由小米自研,单个最大扭矩达32N·m,最大转速为220rpm,可以让这只14KG重的CyberDog以11.5km/h的速度前进,这个速度大概和一个普通人晨跑的速度相当,让主人带着CyberDog跑步遛狗成为可能。
伺服电机性能参数#04
小脑-全志MR813
CyberDog“小脑”使用的国内知名芯片设计厂商全志科技的
Allwinner MR813 。MR813将负责MPC算法的执行、运动控制、电源系统管理和OTA系统管理等工作。即CyberDog的四只脚以及上面的12个伺服电机,都将在MR813的控制下有序地行动,让CyberDog不会出现顺拐或者“扑街”。MR813 是全志针对运动机器人市场推出的高性能SoC,4核A53架构,主频高达1.6GHz,拥有丰富的音视频接口和运动驱动接口。
据悉,MR系列芯片已经在在扫地机器人产品上被广泛应用,其中包括小米、石头、追觅等知名厂商。本次CyberDog使用MR813也是复用追觅已经成熟的运动驱动模块, 这样可以保证产品的性价比、稳定性和可量产性 。
也就是说,MR813在其它产品上都是作为“大脑”,而在CyberDog中只用作“小脑”,可见MR813性能的强大,也透露出小米对CyberDog用料选项的踏实和良心。
CyberDog的MPC算法使用的则是知名开源四足MPC算法 MIT Mini Cheetah。对于仿生四足机器人MPC算法的研究一直是近年的热点。MIT这套算法广受开发者欢迎,许多DIY开发者甚至专业厂商,都会基于这套算法进行开发。MR813则是为算法的运行提供了一个高效稳定的环境。
MR813系统框图
米家扫地机器人1T,使用MR813作为“大脑”#05
神经系统-系统整合
在整体系统框架方面,CyberDog使用的是主流的机器人开源架构ROS 2,它提供一系列程序库和工具以帮助软件开发者创建机器人应用软件,同时提供了硬件抽象、设备驱动、库函数、可视化、消息传递和软件包管理等诸多功能。
其中,Jetson Xavier NX 运行的是Ubuntu 18.04操作系统,11组高性能传感器获取到的环境信息传到Jetson Xavier NX后,由Jetson Xavier NX进行处理,并将运动信息通过千兆网口下发到MR813,由MR813进行运动总控制,分别控制一个MCU进行OTA和电池包的管理和另一个MCU进行电机的控制,与12个高性能伺服电机通过CAN 2.0进行通信。
小米CyberDog系统框图
#市场前瞻
目前仿生领域四足机器人的研究比较成熟,世界上最有名的四足仿生机器人研发团队当属波士顿动力,旗下研发的“大狗”系列仿生机器人已经有十几个产品型号分支, 但售价却达到了惊人的7.5万美元(约合人民币48万) ,这个价格让很多普通消费者都望而却步。
今年 6 月,国内的宇树科技发布了 Unitree GO1,共有三个版本: 售价 2700 美元的 G01 Air base 型号、售价 3500 美元的 G01 和售价 8500 美元的 G01 Edu ,这个价格可以说率先打开了四足机器人在普通消费人群中的市场,不过碍于功能的不足,依然难以进入大众眼界。
也就是说, Unitree GO1 起步价仅需 1.6 万元人民币 ,然而这个价格纪录目前已被小米 9999 的CyberDog打破了。
但是从目前供应链获取到的信息来看, Jetson Xavier NX核心模块的市场报为3000+元,Intel Realsense D450深度摄像头的市场报价约为1500元 ,这两个关键元器件的成本,就已经接近CyberDog硬件成本的一半。 全志的芯片虽然一直以高性价比著称,但是作为一个扫地机器人大脑级别的芯片,再加上12个伺服电机、电池、金属外壳等材料,CyberDog 卖9999元的价格,真的是“交个朋友”了。 截止2021年8月底,CyberDog 产品虽然未交货,但是已经有人以数倍的价格收购名额了。
小米副总裁常程在微博对于 “为什么要做这样一个机器人” 的问题是这样回应的:
“这还是一项投资未来的决策。
一方面仿生机器人未来在服务、工程、安防、医疗等诸多领域蕴含着巨大的市场潜力。另一方面小米作为全球化的科技公司,有必要尽早在前沿领域进行几乎布局,夯实专利储备。探索仿生机器人的过程也是在做技术预研,其中机器视觉、导航避障、人机交互、AI语音算法等技术可以反哺手机、智能家居等产品。”
与此同时,我们在这个产品中看到了小米强大的模块整合能力,在项目中,分别调动了核心的手机影像部门、小爱同学AI部门、语音算法部门、生态链公司追觅、芯片原厂全志科技等众多部门、合作伙伴,从概念设计到机械结构设计、BSP、算法移植、系统联调到最终产品交付,只用了10个月的时间。
上一次我们看到这样集全集团之力去做一个玩具的场景,是《四驱兄弟》里的三国藤吉集合三国重工最高科技而打造他的疾速眼镜蛇。而这些模块其实也是自动驾驶会用到的技术热点,结合之前宣布造车的消息,外界猜测,CyberDog其实是在为小米汽车的团队搭建和技术预研做准备。-End-
原 贴 转 跳:【深度剖析】小米CyberDog四足机器人的AI运动系统的实现
公众号推文跳转:【深度剖析】小米CyberDog四足机器人的AI运动系统的实现 -
回复: D1-H/D1s SPI NAND & DDR支持列表
换了支持列表里的nand 【GD5F2GQ5UEYIGR】,拉了最新代码,发现烧写失败。。。
U-Boot 2018.05-00028-g01087f40d6-config-dirty (Aug 23 2021 - 13:51:47 +0800) Allwinner Technology [03.904]DRAM: 512 MiB [03.908]Relocation Offset is: 1dee2000 [03.929]secure enable bit: 0 [03.934]CPU=1008 MHz,PLL6=600 Mhz,AHB=200 Mhz, APB1=100Mhz MBus=300Mhz [03.940]flash init start [03.942]workmode = 16,storage type = 0 try card 2 set card number 2 get card number 2 [03.950][mmc]: mmc driver ver uboot2018:2021-08-18 17:06:00 [03.958][mmc]: get sdc_type fail and use default host:tm4. [03.983][mmc]: Is not Boot mode! [03.985][mmc]: SUNXI SDMMC Controller Version:0x50310 [03.997][mmc]: ************Try SD card 2************ [04.002][mmc]: mmc 2 cmd timeout 100 status 100 [04.006][mmc]: smc 2 err, cmd 8, RTO [04.009][mmc]: mmc 2 close bus gating and reset [04.014][mmc]: mmc 2 cmd timeout 100 status 100 [04.019][mmc]: smc 2 err, cmd 55, RTO [04.022][mmc]: mmc 2 close bus gating and reset [04.026][mmc]: ************Try MMC card 2************ [04.035][mmc]: mmc 2 cmd timeout 100 status 100 [04.039][mmc]: smc 2 err, cmd 1, RTO [04.043][mmc]: mmc 2 close bus gating and reset [04.047][mmc]: Card did not respond to voltage select! [04.052][mmc]: ************SD/MMC 2 init error!************ [04.057][mmc]: mmc init product failed MMC init failed try emmc fail [04.071]sunxi-spinand: AW SPINand MTD Layer Version: 1.5 20200407 [04.076]sunxi-spinand-phy: AW SPINand Phy Layer Version: 1.9 20200306 [04.123]sunxi-spinand-phy: request spi0 gpio ok [04.127]sunxi-spinand-phy: request general tx dma channel ok! [04.132]sunxi-spinand-phy: request general rx dma channel ok! [04.138]sunxi-spinand-phy: set spic0 clk to 20 Mhz [04.142]sunxi-spinand-phy: init spic0 clk ok [04.146]sunxi-spinand-phy: not detect any munufacture from id table [04.160]sunxi-spinand-phy: get spi-nand Model from fdt fail [04.165]sunxi-spinand-phy: get phy info from fdt fail [04.170]sunxi-spinand-phy: not detect munufacture from fdt [04.175]sunxi-spinand-phy: detect munufacture from id table: GD [04.180]sunxi-spinand-phy: detect spinand id: ffff52c8 ffffffff [04.186]sunxi-spinand-phy: ========== arch info ========== [04.191]sunxi-spinand-phy: Model: GD5F2GQ5UEYIGR [04.197]sunxi-spinand-phy: Munufacture: GD [04.201]sunxi-spinand-phy: DieCntPerChip: 1 [04.206]sunxi-spinand-phy: BlkCntPerDie: 2048 [04.210]sunxi-spinand-phy: PageCntPerBlk: 64 [04.215]sunxi-spinand-phy: SectCntPerPage: 4 [04.219]sunxi-spinand-phy: OobSizePerPage: 64 [04.224]sunxi-spinand-phy: BadBlockFlag: 0x0 [04.228]sunxi-spinand-phy: OperationOpt: 0x7 [04.233]sunxi-spinand-phy: MaxEraseTimes: 50000 [04.238]sunxi-spinand-phy: EccFlag: 0x1 [04.242]sunxi-spinand-phy: EccType: 7 [04.247]sunxi-spinand-phy: EccProtectedType: 2 [04.251]sunxi-spinand-phy: ======================================== [04.257]sunxi-spinand-phy: [04.260]sunxi-spinand-phy: ========== physical info ========== [04.265]sunxi-spinand-phy: TotalSize: 256 M [04.269]sunxi-spinand-phy: SectorSize: 512 B [04.274]sunxi-spinand-phy: PageSize: 2 K [04.277]sunxi-spinand-phy: BlockSize: 128 K [04.282]sunxi-spinand-phy: OOBSize: 64 B [04.286]sunxi-spinand-phy: ======================================== [04.292]sunxi-spinand-phy: [04.294]sunxi-spinand-phy: ========== logical info ========== [04.300]sunxi-spinand-phy: TotalSize: 256 M [04.304]sunxi-spinand-phy: SectorSize: 512 B [04.308]sunxi-spinand-phy: PageSize: 4 K [04.312]sunxi-spinand-phy: BlockSize: 256 K [04.316]sunxi-spinand-phy: OOBSize: 128 B [04.320]sunxi-spinand-phy: ======================================== [04.334]sunxi-spinand-phy: GD5F2GQ5UEYIGR reset rx bit width to 1 [04.339]sunxi-spinand-phy: GD5F2GQ5UEYIGR reset tx bit width to 1 [04.345]sunxi-spinand-phy: set spic0 clk to 100 Mhz [04.350]sunxi-spinand-phy: block lock register: 0x00 [04.354]sunxi-spinand-phy: feature register: 0x11 [04.359]sunxi-spinand-phy: sunxi physic nand init end [04.367]Loading Environment from SUNXI_FLASH... OK [04.378]try to burn key [04.382]out of usb burn from boot: not need burn key [04.386]Net: [04.387]No ethernet found. Hit any key to stop autoboot: 0 sunxi work mode=0x10 run usb efex delay time 2500 weak:otg_phy_config usb init ok set address 0x1f set address 0x1f ok SUNXI_EFEX_ERASE_TAG erase_flag = 0x12 origin_erase_flag = 0x1 FEX_CMD_fes_verify_status FEX_CMD_fes_verify last err=0 the 0 mbr table is ok the 1 mbr table is ok the 2 mbr table is ok the 3 mbr table is ok *************MBR DUMP*************** total mbr part 7 part[0] name :boot-resource part[0] classname :DISK part[0] addrlo :0x1f8 part[0] lenlo :0x1f8 part[0] user_type :32768 part[0] keydata :0 part[0] ro :0 part[1] name :env part[1] classname :DISK part[1] addrlo :0x3f0 part[1] lenlo :0x1f8 part[1] user_type :32768 part[1] keydata :0 part[1] ro :0 part[2] name :env-redund part[2] classname :DISK part[2] addrlo :0x5e8 part[2] lenlo :0x1f8 part[2] user_type :32768 part[2] keydata :0 part[2] ro :0 part[3] name :boot part[3] classname :DISK part[3] addrlo :0x7e0 part[3] lenlo :0x381c part[3] user_type :32768 part[3] keydata :0 part[3] ro :0 part[4] name :rootfs part[4] classname :DISK part[4] addrlo :0x3ffc part[4] lenlo :0x2370 part[4] user_type :32768 part[4] keydata :0 part[4] ro :0 part[5] name :dsp0 part[5] classname :DISK part[5] addrlo :0x636c part[5] lenlo :0x3f0 part[5] user_type :32768 part[5] keydata :0 part[5] ro :0 part[6] name :UDISK part[6] classname :DISK part[6] addrlo :0x675c part[6] lenlo :0x0 part[6] user_type :0 part[6] keydata :0 part[6] ro :0 total part: 8 mbr 0, 1f8, 8000 boot-resource 1, 1f8, 8000 env 2, 1f8, 8000 env-redund 3, 1f8, 8000 boot 4, 381c, 8000 rootfs 5, 2370, 8000 dsp0 6, 3f0, 8000 UDISK 7, 0, 0 [07.402]erase blk 0 to blk 32 [07.417]blk 6 is bad, skip to erase [07.420]blk 7 is bad, skip to erase [07.431]blk 12 is bad, skip to erase [07.446]blk 19 is bad, skip to erase [07.449]blk 20 is bad, skip to erase [07.452]blk 21 is bad, skip to erase [07.458]blk 23 is bad, skip to erase [07.469]blk 28 is bad, skip to erase [07.476]blk 31 is bad, skip to erase need erase flash: 18 [07.482]mtdparts: mtdparts=nand:1024k@0(boot0)ro,3072k@1048576(uboot)ro,1024k@4194304(secure_storage)ro,-(sys) device nand0 <nand>, # parts = 4 #: name size offset mask_flags 0: boot0 0x00100000 0x00000000 1 1: uboot 0x00300000 0x00100000 1 2: secure_storage 0x00100000 0x00400000 1 3: sys 0x0fb00000 0x00500000 0 active partition: nand0,0 - (boot0) 0x00100000 @ 0x00000000 defaults: mtdids : nand0=nand mtdparts: mtdparts=nand:1024k@0(boot0)ro,3072k@1048576(uboot)ro,1024k@4194304(secure_storage)ro,-(sys) [07.539]MTD info (4) [07.541]pagesize: 0x1000 [07.544]blksize: 0x40000 [07.546]num offset bytes name [07.549]0 0x00000000 0x00100000 boot0 [07.553]1 0x00100000 0x00300000 uboot [07.557]2 0x00400000 0x00100000 secure_storage [07.561]3 0x00500000 0x0fb00000 sys [07.564]ubi attach the last part of mtd device: NO.3 [07.724]ubi0: attaching mtd4 [07.907]ubi0: scanning is finished [07.910]ubi0 error: ubi_read_volume_table: the layout volume was not found [07.918]ubi0 error: ubi_attach_mtd_dev: failed to attach mtd4, error -22 [07.924]UBI error: cannot attach mtd4 [07.928]UBI error: cannot initialize UBI, error -22 UBI init error 22 Please check, if the correct MTD partition is used (size big enough?) [07.940]ubi part sys err ! [07.943]erase blk 0 to blk 32 [07.957]blk 6 is bad, skip to erase [07.960]blk 7 is bad, skip to erase [07.970]blk 12 is bad, skip to erase [07.985]blk 19 is bad, skip to erase [07.988]blk 20 is bad, skip to erase [07.991]blk 21 is bad, skip to erase [07.996]blk 23 is bad, skip to erase [08.007]blk 28 is bad, skip to erase [08.014]blk 31 is bad, skip to erase [08.017]erase blk 40 to blk 2048 [08.020]blk 40 is bad, skip to erase [08.024]blk 41 is bad, skip to erase [08.027]blk 42 is bad, skip to erase [08.030]blk 43 is bad, skip to erase [08.037]blk 46 is bad, skip to erase [08.044]blk 49 is bad, skip to erase [08.051]blk 52 is bad, skip to erase [08.077]blk 65 is bad, skip to erase [08.086]blk 69 is bad, skip to erase [08.100]blk 76 is bad, skip to erase [08.105]blk 78 is bad, skip to erase [08.109]blk 79 is bad, skip to erase [08.112]blk 80 is bad, skip to erase [08.115]blk 81 is bad, skip to erase [08.118]blk 82 is bad, skip to erase [08.126]blk 85 is bad, skip to erase [08.132]blk 88 is bad, skip to erase [08.136]blk 89 is bad, skip to erase [08.141]blk 91 is bad, skip to erase [08.146]blk 93 is bad, skip to erase [08.153]blk 96 is bad, skip to erase [08.158]blk 98 is bad, skip to erase [08.182]blk 110 is bad, skip to erase [08.187]blk 112 is bad, skip to erase [08.198]blk 117 is bad, skip to erase [08.201]blk 118 is bad, skip to erase [08.208]blk 121 is bad, skip to erase [08.217]blk 125 is bad, skip to erase [08.221]blk 126 is bad, skip to erase [08.235]blk 133 is bad, skip to erase [08.244]blk 137 is bad, skip to erase [08.261]blk 145 is bad, skip to erase [08.266]blk 147 is bad, skip to erase [08.273]blk 150 is bad, skip to erase [08.288]blk 157 is bad, skip to erase [08.325]blk 176 is bad, skip to erase [08.328]blk 177 is bad, skip to erase [08.341]blk 183 is bad, skip to erase [08.346]blk 185 is bad, skip to erase [08.351]blk 187 is bad, skip to erase [08.354]blk 188 is bad, skip to erase [08.367]blk 194 is bad, skip to erase [08.374]blk 197 is bad, skip to erase [08.377]blk 198 is bad, skip to erase [08.381]blk 199 is bad, skip to erase [08.390]blk 203 is bad, skip to erase [08.399]blk 207 is bad, skip to erase [08.408]blk 211 is bad, skip to erase [08.411]blk 212 is bad, skip to erase [08.414]blk 213 is bad, skip to erase [08.418]blk 214 is bad, skip to erase [08.438]blk 224 is bad, skip to erase [08.443]blk 226 is bad, skip to erase [08.447]blk 227 is bad, skip to erase [08.450]blk 228 is bad, skip to erase [08.453]blk 229 is bad, skip to erase [08.457]blk 230 is bad, skip to erase [08.479]blk 241 is bad, skip to erase [08.482]blk 242 is bad, skip to erase [08.488]blk 244 is bad, skip to erase [08.495]blk 247 is bad, skip to erase [08.498]blk 248 is bad, skip to erase [08.509]blk 253 is bad, skip to erase [08.514]blk 255 is bad, skip to erase [08.523]blk 259 is bad, skip to erase [08.528]blk 261 is bad, skip to erase [08.541]blk 267 is bad, skip to erase [08.544]blk 268 is bad, skip to erase [08.547]blk 269 is bad, skip to erase [08.555]blk 272 is bad, skip to erase [08.560]blk 274 is bad, skip to erase [08.586]blk 287 is bad, skip to erase [08.600]blk 294 is bad, skip to erase [08.611]blk 299 is bad, skip to erase [08.616]blk 301 is bad, skip to erase [08.623]blk 304 is bad, skip to erase [08.642]blk 313 is bad, skip to erase [08.675]blk 330 is bad, skip to erase [08.684]blk 334 is bad, skip to erase [08.697]blk 340 is bad, skip to erase [08.700]blk 341 is bad, skip to erase [08.705]blk 343 is bad, skip to erase [08.710]blk 345 is bad, skip to erase [08.714]blk 346 is bad, skip to erase [08.717]blk 347 is bad, skip to erase [08.722]blk 349 is bad, skip to erase [08.727]blk 351 is bad, skip to erase [08.734]blk 354 is bad, skip to erase [08.742]blk 357 is bad, skip to erase [08.752]blk 362 is bad, skip to erase [08.765]blk 368 is bad, skip to erase [08.774]blk 372 is bad, skip to erase [08.779]blk 374 is bad, skip to erase [08.783]blk 375 is bad, skip to erase [08.790]blk 378 is bad, skip to erase [08.804]blk 385 is bad, skip to erase [08.817]blk 391 is bad, skip to erase [08.820]blk 392 is bad, skip to erase [08.824]blk 393 is bad, skip to erase [08.831]blk 396 is bad, skip to erase [08.834]blk 397 is bad, skip to erase [08.839]blk 399 is bad, skip to erase [08.844]blk 401 is bad, skip to erase [08.850]blk 403 is bad, skip to erase [08.853]blk 404 is bad, skip to erase [08.860]blk 407 is bad, skip to erase [08.867]blk 410 is bad, skip to erase [08.872]blk 412 is bad, skip to erase [08.878]blk 414 is bad, skip to erase [08.881]blk 415 is bad, skip to erase [08.888]blk 418 is bad, skip to erase [08.893]blk 420 is bad, skip to erase [08.904]blk 425 is bad, skip to erase [08.913]blk 429 is bad, skip to erase [08.920]blk 432 is bad, skip to erase [08.925]blk 434 is bad, skip to erase [08.930]blk 436 is bad, skip to erase [08.936]blk 438 is bad, skip to erase [08.945]blk 442 is bad, skip to erase [08.948]blk 443 is bad, skip to erase [08.951]blk 444 is bad, skip to erase [08.966]blk 451 is bad, skip to erase [08.982]blk 459 is bad, skip to erase [08.986]blk 460 is bad, skip to erase [08.991]blk 462 is bad, skip to erase [08.996]blk 464 is bad, skip to erase [09.022]blk 477 is bad, skip to erase [09.025]blk 478 is bad, skip to erase [09.031]blk 480 is bad, skip to erase [09.038]blk 483 is bad, skip to erase [09.041]blk 484 is bad, skip to erase [09.077]blk 502 is bad, skip to erase [09.089]blk 508 is bad, skip to erase [09.095]blk 510 is bad, skip to erase [09.124]blk 525 is bad, skip to erase [09.129]blk 527 is bad, skip to erase [09.136]blk 530 is bad, skip to erase [09.155]blk 539 is bad, skip to erase [09.158]blk 540 is bad, skip to erase [09.169]blk 545 is bad, skip to erase [09.178]blk 549 is bad, skip to erase [09.189]blk 554 is bad, skip to erase [09.198]blk 558 is bad, skip to erase [09.220]blk 569 is bad, skip to erase [09.223]blk 570 is bad, skip to erase [09.232]blk 574 is bad, skip to erase [09.243]blk 579 is bad, skip to erase [09.250]blk 582 is bad, skip to erase [09.259]blk 586 is bad, skip to erase [09.262]blk 587 is bad, skip to erase [09.273]blk 592 is bad, skip to erase [09.277]blk 593 is bad, skip to erase [09.282]blk 595 is bad, skip to erase [09.293]blk 600 is bad, skip to erase [09.307]blk 607 is bad, skip to erase [09.311]blk 608 is bad, skip to erase [09.316]blk 610 is bad, skip to erase [09.325]blk 614 is bad, skip to erase [09.339]blk 621 is bad, skip to erase [09.345]blk 623 is bad, skip to erase [09.359]blk 630 is bad, skip to erase [09.362]blk 631 is bad, skip to erase [09.366]blk 632 is bad, skip to erase [09.371]blk 634 is bad, skip to erase [09.380]blk 638 is bad, skip to erase [09.383]blk 639 is bad, skip to erase [09.392]blk 643 is bad, skip to erase [09.398]blk 645 is bad, skip to erase [09.401]blk 646 is bad, skip to erase [09.408]blk 649 is bad, skip to erase [09.411]blk 650 is bad, skip to erase [09.419]blk 653 is bad, skip to erase [09.437]blk 662 is bad, skip to erase [09.440]blk 663 is bad, skip to erase [09.457]blk 671 is bad, skip to erase [09.462]blk 673 is bad, skip to erase [09.480]blk 682 is bad, skip to erase [09.489]blk 686 is bad, skip to erase [09.496]blk 689 is bad, skip to erase [09.507]blk 694 is bad, skip to erase [09.510]blk 695 is bad, skip to erase [09.515]blk 697 is bad, skip to erase [09.519]blk 698 is bad, skip to erase [09.524]blk 700 is bad, skip to erase [09.542]blk 709 is bad, skip to erase [09.548]blk 711 is bad, skip to erase [09.572]blk 723 is bad, skip to erase [09.575]blk 724 is bad, skip to erase [09.586]blk 729 is bad, skip to erase [09.600]blk 736 is bad, skip to erase [09.604]blk 737 is bad, skip to erase [09.613]blk 741 is bad, skip to erase [09.620]blk 744 is bad, skip to erase [09.632]blk 750 is bad, skip to erase [09.649]blk 758 is bad, skip to erase [09.664]blk 765 is bad, skip to erase [09.671]blk 768 is bad, skip to erase [09.674]blk 769 is bad, skip to erase [09.679]blk 771 is bad, skip to erase [09.684]blk 773 is bad, skip to erase [09.699]blk 780 is bad, skip to erase [09.704]blk 782 is bad, skip to erase [09.707]blk 783 is bad, skip to erase [09.711]blk 784 is bad, skip to erase [09.716]blk 786 is bad, skip to erase [09.721]blk 788 is bad, skip to erase [09.725]blk 789 is bad, skip to erase [09.728]blk 790 is bad, skip to erase [09.731]blk 791 is bad, skip to erase [09.742]blk 796 is bad, skip to erase [09.747]blk 798 is bad, skip to erase [09.760]blk 804 is bad, skip to erase [09.779]blk 813 is bad, skip to erase [09.791]blk 819 is bad, skip to erase [09.817]blk 832 is bad, skip to erase [09.826]blk 836 is bad, skip to erase [09.829]blk 837 is bad, skip to erase [09.840]blk 842 is bad, skip to erase [09.845]blk 844 is bad, skip to erase [09.852]blk 847 is bad, skip to erase [09.861]blk 851 is bad, skip to erase [09.872]blk 856 is bad, skip to erase [09.877]blk 858 is bad, skip to erase [09.881]blk 859 is bad, skip to erase [09.884]blk 860 is bad, skip to erase [09.887]blk 861 is bad, skip to erase [09.902]blk 868 is bad, skip to erase [09.905]blk 869 is bad, skip to erase [09.911]blk 871 is bad, skip to erase [09.921]blk 876 is bad, skip to erase [09.932]blk 881 is bad, skip to erase [09.939]blk 884 is bad, skip to erase [09.948]blk 888 is bad, skip to erase [09.952]blk 889 is bad, skip to erase [09.957]blk 891 is bad, skip to erase [09.962]blk 893 is bad, skip to erase [09.969]blk 896 is bad, skip to erase [09.982]blk 902 is bad, skip to erase [09.987]blk 904 is bad, skip to erase [09.992]blk 906 is bad, skip to erase [09.997]blk 908 is bad, skip to erase [10.001]blk 909 is bad, skip to erase [10.004]blk 910 is bad, skip to erase [10.021]blk 918 is bad, skip to erase [10.024]blk 919 is bad, skip to erase [10.039]blk 926 is bad, skip to erase [10.048]blk 930 is bad, skip to erase [10.055]blk 933 is bad, skip to erase [10.062]blk 936 is bad, skip to erase [10.073]blk 941 is bad, skip to erase [10.125]blk 968 is bad, skip to erase [10.134]blk 972 is bad, skip to erase [10.137]blk 973 is bad, skip to erase [10.152]blk 980 is bad, skip to erase [10.155]blk 981 is bad, skip to erase [10.160]blk 983 is bad, skip to erase [10.167]blk 986 is bad, skip to erase [10.174]blk 989 is bad, skip to erase [10.187]blk 995 is bad, skip to erase [10.190]blk 996 is bad, skip to erase [10.216]blk 1009 is bad, skip to erase [10.227]blk 1014 is bad, skip to erase [10.234]blk 1017 is bad, skip to erase [10.238]blk 1018 is bad, skip to erase [10.241]blk 1019 is bad, skip to erase [10.263]blk 1030 is bad, skip to erase [10.267]blk 1031 is bad, skip to erase [10.270]blk 1032 is bad, skip to erase [10.276]blk 1034 is bad, skip to erase [10.281]blk 1036 is bad, skip to erase [10.284]blk 1037 is bad, skip to erase [10.290]blk 1039 is bad, skip to erase [10.297]blk 1042 is bad, skip to erase [10.302]blk 1044 is bad, skip to erase [10.326]blk 1056 is bad, skip to erase [10.332]blk 1058 is bad, skip to erase [10.337]blk 1060 is bad, skip to erase [10.353]blk 1068 is bad, skip to erase [10.368]blk 1075 is bad, skip to erase [10.373]blk 1077 is bad, skip to erase [10.377]blk 1078 is bad, skip to erase [10.382]blk 1080 is bad, skip to erase [10.389]blk 1083 is bad, skip to erase [10.398]blk 1087 is bad, skip to erase [10.404]blk 1089 is bad, skip to erase [10.420]blk 1097 is bad, skip to erase [10.429]blk 1101 is bad, skip to erase [10.438]blk 1105 is bad, skip to erase [10.441]blk 1106 is bad, skip to erase [10.445]blk 1107 is bad, skip to erase [10.448]blk 1108 is bad, skip to erase [10.452]blk 1109 is bad, skip to erase [10.455]blk 1110 is bad, skip to erase [10.461]blk 1112 is bad, skip to erase [10.466]blk 1114 is bad, skip to erase [10.469]blk 1115 is bad, skip to erase [10.473]blk 1116 is bad, skip to erase [10.478]blk 1118 is bad, skip to erase [10.487]blk 1122 is bad, skip to erase [10.496]blk 1126 is bad, skip to erase [10.502]blk 1128 is bad, skip to erase [10.511]blk 1132 is bad, skip to erase [10.520]blk 1136 is bad, skip to erase [10.525]blk 1138 is bad, skip to erase [10.530]blk 1140 is bad, skip to erase [10.545]blk 1147 is bad, skip to erase [10.548]blk 1148 is bad, skip to erase [10.556]blk 1151 is bad, skip to erase [10.561]blk 1153 is bad, skip to erase [10.564]blk 1154 is bad, skip to erase [10.587]blk 1165 is bad, skip to erase [10.590]blk 1166 is bad, skip to erase [10.594]blk 1167 is bad, skip to erase [10.599]blk 1169 is bad, skip to erase [10.606]blk 1172 is bad, skip to erase [10.615]blk 1176 is bad, skip to erase [10.626]blk 1181 is bad, skip to erase [10.629]blk 1182 is bad, skip to erase [10.635]blk 1184 is bad, skip to erase [10.642]blk 1187 is bad, skip to erase [10.659]blk 1195 is bad, skip to erase [10.668]blk 1199 is bad, skip to erase [10.686]blk 1208 is bad, skip to erase [10.689]blk 1209 is bad, skip to erase [10.702]blk 1215 is bad, skip to erase [10.722]blk 1225 is bad, skip to erase [10.735]blk 1231 is bad, skip to erase [10.761]blk 1244 is bad, skip to erase [10.766]blk 1246 is bad, skip to erase [10.770]blk 1247 is bad, skip to erase [10.792]blk 1258 is bad, skip to erase [10.795]blk 1259 is bad, skip to erase [10.801]blk 1261 is bad, skip to erase [10.808]blk 1264 is bad, skip to erase [10.819]blk 1269 is bad, skip to erase [10.837]blk 1278 is bad, skip to erase [10.848]blk 1283 is bad, skip to erase [10.852]blk 1284 is bad, skip to erase [10.866]blk 1291 is bad, skip to erase [10.879]blk 1297 is bad, skip to erase [10.884]blk 1299 is bad, skip to erase [10.890]blk 1301 is bad, skip to erase [10.902]blk 1307 is bad, skip to erase [10.906]blk 1308 is bad, skip to erase [10.909]blk 1309 is bad, skip to erase [10.924]blk 1316 is bad, skip to erase [10.929]blk 1318 is bad, skip to erase [10.959]blk 1333 is bad, skip to erase [10.962]blk 1334 is bad, skip to erase [10.990]blk 1348 is bad, skip to erase [11.005]blk 1355 is bad, skip to erase [11.016]blk 1360 is bad, skip to erase [11.031]blk 1367 is bad, skip to erase [11.043]blk 1373 is bad, skip to erase [11.049]blk 1375 is bad, skip to erase [11.058]blk 1379 is bad, skip to erase [11.069]blk 1384 is bad, skip to erase [11.072]blk 1385 is bad, skip to erase [11.089]blk 1393 is bad, skip to erase [11.094]blk 1395 is bad, skip to erase [11.099]blk 1397 is bad, skip to erase [11.129]blk 1412 is bad, skip to erase [11.134]blk 1414 is bad, skip to erase [11.151]blk 1422 is bad, skip to erase [11.167]blk 1430 is bad, skip to erase [11.172]blk 1432 is bad, skip to erase [11.178]blk 1434 is bad, skip to erase [11.181]blk 1435 is bad, skip to erase [11.188]blk 1438 is bad, skip to erase [11.196]blk 1441 is bad, skip to erase [11.201]blk 1443 is bad, skip to erase [11.215]blk 1450 is bad, skip to erase [11.221]blk 1452 is bad, skip to erase [11.232]blk 1457 is bad, skip to erase [11.235]blk 1458 is bad, skip to erase [11.259]blk 1470 is bad, skip to erase [11.282]blk 1481 is bad, skip to erase [11.287]blk 1483 is bad, skip to erase [11.294]blk 1486 is bad, skip to erase [11.303]blk 1490 is bad, skip to erase [11.306]blk 1491 is bad, skip to erase [11.314]blk 1494 is bad, skip to erase [11.317]blk 1495 is bad, skip to erase [11.337]blk 1505 is bad, skip to erase [11.341]blk 1506 is bad, skip to erase [11.363]blk 1517 is bad, skip to erase [11.366]blk 1518 is bad, skip to erase [11.372]blk 1520 is bad, skip to erase [11.402]blk 1535 is bad, skip to erase [11.407]blk 1537 is bad, skip to erase [11.414]blk 1540 is bad, skip to erase [11.423]blk 1544 is bad, skip to erase [11.428]blk 1546 is bad, skip to erase [11.432]blk 1547 is bad, skip to erase [11.437]blk 1549 is bad, skip to erase [11.446]blk 1553 is bad, skip to erase [11.451]blk 1555 is bad, skip to erase [11.456]blk 1557 is bad, skip to erase [11.460]blk 1558 is bad, skip to erase [11.473]blk 1564 is bad, skip to erase [11.482]blk 1568 is bad, skip to erase [11.487]blk 1570 is bad, skip to erase [11.496]blk 1574 is bad, skip to erase [11.501]blk 1576 is bad, skip to erase [11.509]blk 1579 is bad, skip to erase [11.527]blk 1588 is bad, skip to erase [11.530]blk 1589 is bad, skip to erase [11.538]blk 1592 is bad, skip to erase [11.547]blk 1596 is bad, skip to erase [11.550]blk 1597 is bad, skip to erase [11.555]blk 1599 is bad, skip to erase [11.559]blk 1600 is bad, skip to erase [11.568]blk 1604 is bad, skip to erase [11.579]blk 1609 is bad, skip to erase [11.582]blk 1610 is bad, skip to erase [11.588]blk 1612 is bad, skip to erase [11.595]blk 1615 is bad, skip to erase [11.600]blk 1617 is bad, skip to erase [11.613]blk 1623 is bad, skip to erase [11.620]blk 1626 is bad, skip to erase [11.623]blk 1627 is bad, skip to erase [11.636]blk 1633 is bad, skip to erase [11.654]blk 1642 is bad, skip to erase [11.660]blk 1644 is bad, skip to erase [11.663]blk 1645 is bad, skip to erase [11.667]blk 1646 is bad, skip to erase [11.672]blk 1648 is bad, skip to erase [11.677]blk 1650 is bad, skip to erase [11.683]blk 1652 is bad, skip to erase [11.686]blk 1653 is bad, skip to erase [11.697]blk 1658 is bad, skip to erase [11.706]blk 1662 is bad, skip to erase [11.717]blk 1667 is bad, skip to erase [11.724]blk 1670 is bad, skip to erase [11.729]blk 1672 is bad, skip to erase [11.739]blk 1676 is bad, skip to erase [11.742]blk 1677 is bad, skip to erase [11.755]blk 1683 is bad, skip to erase [11.769]blk 1690 is bad, skip to erase [11.780]blk 1695 is bad, skip to erase [11.784]blk 1696 is bad, skip to erase [11.797]blk 1702 is bad, skip to erase [11.808]blk 1707 is bad, skip to erase [11.815]blk 1710 is bad, skip to erase [11.824]blk 1714 is bad, skip to erase [11.827]blk 1715 is bad, skip to erase [11.832]blk 1717 is bad, skip to erase [11.845]blk 1723 is bad, skip to erase [11.849]blk 1724 is bad, skip to erase [11.852]blk 1725 is bad, skip to erase [11.863]blk 1730 is bad, skip to erase [11.880]blk 1738 is bad, skip to erase [11.889]blk 1742 is bad, skip to erase [11.894]blk 1744 is bad, skip to erase [11.897]blk 1745 is bad, skip to erase [11.908]blk 1750 is bad, skip to erase [11.916]blk 1753 is bad, skip to erase [11.919]blk 1754 is bad, skip to erase [11.941]blk 1765 is bad, skip to erase [11.946]blk 1767 is bad, skip to erase [11.950]blk 1768 is bad, skip to erase [11.961]blk 1773 is bad, skip to erase [11.964]blk 1774 is bad, skip to erase [11.977]blk 1780 is bad, skip to erase [11.981]blk 1781 is bad, skip to erase [11.986]blk 1783 is bad, skip to erase [11.991]blk 1785 is bad, skip to erase [11.998]blk 1788 is bad, skip to erase [12.019]blk 1798 is bad, skip to erase [12.022]blk 1799 is bad, skip to erase [12.040]blk 1808 is bad, skip to erase [12.059]blk 1817 is bad, skip to erase [12.066]blk 1820 is bad, skip to erase [12.073]blk 1823 is bad, skip to erase [12.078]blk 1825 is bad, skip to erase [12.082]blk 1826 is bad, skip to erase [12.091]blk 1830 is bad, skip to erase [12.106]blk 1837 is bad, skip to erase [12.113]blk 1840 is bad, skip to erase [12.126]blk 1846 is bad, skip to erase [12.129]blk 1847 is bad, skip to erase [12.136]blk 1850 is bad, skip to erase [12.140]blk 1851 is bad, skip to erase [12.145]blk 1853 is bad, skip to erase [12.148]blk 1854 is bad, skip to erase [12.157]blk 1858 is bad, skip to erase [12.165]blk 1861 is bad, skip to erase [12.172]blk 1864 is bad, skip to erase [12.175]blk 1865 is bad, skip to erase [12.188]blk 1871 is bad, skip to erase [12.197]blk 1875 is bad, skip to erase [12.204]blk 1878 is bad, skip to erase [12.209]blk 1880 is bad, skip to erase [12.215]blk 1882 is bad, skip to erase [12.218]blk 1883 is bad, skip to erase [12.237]blk 1892 is bad, skip to erase [12.240]blk 1893 is bad, skip to erase [12.249]blk 1897 is bad, skip to erase [12.256]blk 1900 is bad, skip to erase [12.265]blk 1904 is bad, skip to erase [12.269]blk 1905 is bad, skip to erase [12.295]blk 1918 is bad, skip to erase [12.326]blk 1934 is bad, skip to erase [12.332]blk 1936 is bad, skip to erase [12.344]blk 1942 is bad, skip to erase [12.348]blk 1943 is bad, skip to erase [12.351]blk 1944 is bad, skip to erase [12.355]blk 1945 is bad, skip to erase [12.360]blk 1947 is bad, skip to erase [12.363]blk 1948 is bad, skip to erase [12.376]blk 1954 is bad, skip to erase [12.380]blk 1955 is bad, skip to erase [12.383]blk 1956 is bad, skip to erase [12.394]blk 1961 is bad, skip to erase [12.407]blk 1967 is bad, skip to erase [12.412]blk 1969 is bad, skip to erase [12.419]blk 1972 is bad, skip to erase [12.438]blk 1981 is bad, skip to erase [12.452]blk 1988 is bad, skip to erase [12.460]blk 1991 is bad, skip to erase [12.465]blk 1993 is bad, skip to erase [12.468]blk 1994 is bad, skip to erase [12.487]blk 2003 is bad, skip to erase [12.496]blk 2007 is bad, skip to erase [12.499]blk 2008 is bad, skip to erase [12.503]blk 2009 is bad, skip to erase [12.515]blk 2015 is bad, skip to erase [12.523]blk 2018 is bad, skip to erase [12.530]blk 2021 is bad, skip to erase [12.537]blk 2024 is bad, skip to erase [12.544]blk 2027 is bad, skip to erase [12.547]blk 2028 is bad, skip to erase [12.557]blk 2032 is bad, skip to erase [12.566]blk 2036 is bad, skip to erase [12.569]blk 2037 is bad, skip to erase [12.574]blk 2039 is bad, skip to erase [12.583]blk 2043 is bad, skip to erase [12.590]blk 2046 is bad, skip to erase [12.594]blk 2047 is bad, skip to erase [12.597]sunxi-spinand: spinand secure storage ok for phy blk 33 and 34 [12.604]sunxi-spinand: secure storage blks have never used before [12.610]Item0 (Map) magic is bad [12.613]the secure storage map is empty [12.757]sunxi-spinand: write secure storage itme 0 ok [12.762]erase secure storage: 0 ok SUNXI_EFEX_MBR_TAG mbr size = 0x10000 force mbr device nand0 <nand>, # parts = 4 #: name size offset mask_flags 0: boot0 0x00100000 0x00000000 1 1: uboot 0x00300000 0x00100000 1 2: secure_storage 0x00100000 0x00400000 1 3: sys 0x0fb00000 0x00500000 0 active partition: nand0,0 - (boot0) 0x00100000 @ 0x00000000 defaults: mtdids : nand0=nand mtdparts: mtdparts=nand:1024k@0(boot0)ro,3072k@1048576(uboot)ro,1024k@4194304(secure_storage)ro,-(sys) [12.814]MTD info (4) [12.816]pagesize: 0x1000 [12.818]blksize: 0x40000 [12.821]num offset bytes name [12.824]0 0x00000000 0x00100000 boot0 [12.828]1 0x00100000 0x00300000 uboot [12.832]2 0x00400000 0x00100000 secure_storage [12.836]3 0x00500000 0x0fb00000 sys [12.839]MBR info (unalign): [12.842]partno addr sects type name [12.847]0 0x00000000 0x000001f8 0x00000001 mbr [12.852]1 0x000001f8 0x000001f8 0x00008000 boot-resource [12.857]2 0x000003f0 0x000001f8 0x00008000 env [12.862]3 0x000005e8 0x000001f8 0x00008000 env-redund [12.867]4 0x000007e0 0x0000381c 0x00008000 boot [12.872]5 0x00003ffc 0x00002370 0x00008000 rootfs [12.877]6 0x0000636c 0x000003f0 0x00008000 dsp0 [12.882]7 0x0000675c 0x00000000 0x00000000 UDISK [12.887]ubi attach the last part of mtd device: NO.3 [12.892]MBR info (align): [12.894]partno addr sects type name [12.899]0 0x00002800 0x000001f8 0x00000001 mbr [12.904]1 0x000029f8 0x000001f8 0x00008000 boot-resource [12.909]2 0x00002bf0 0x000001f8 0x00008000 env [12.914]3 0x00002de8 0x000001f8 0x00008000 env-redund [12.919]4 0x00002fe0 0x00003918 0x00008000 boot [12.924]5 0x000068f8 0x00002370 0x00008000 rootfs [12.929]6 0x00008c68 0x000003f0 0x00008000 dsp0 [12.934]7 0x00009058 0x00000000 0x00000000 UDISK [12.939]ubi attach the last part of mtd device: NO.3 [12.944]ubi attatch mtd, name: sys [12.947]ubi0: attaching mtd4 [13.134]ubi0: scanning is finished [13.137]ubi0 error: ubi_read_volume_table: the layout volume was not found [13.144]ubi0 error: ubi_attach_mtd_dev: failed to attach mtd4, error -22 [13.151]UBI error: cannot attach mtd4 [13.154]UBI error: cannot initialize UBI, error -22 UBI init error 22 Please check, if the correct MTD partition is used (size big enough?) [13.166]ubi part sys err ! [13.169]initialize sunxi spinand ubi failed download_standard_gpt:write mbr sectors fail ret = 0
但是同样是支持列表里的【GD5F1GQ5UEYIGR】,但是2G版本的【GD5F2GQ5UEYIGR】却可以烧进去
-
回复: Linux 调试工具推荐
//休眠
echo suspend > command; echo disp0 > name; echo 1 > start
//唤醒
echo resume > command; echo disp0 > name; echo 1 > start -
回复: SPI-NANDFLASH性能低问题
我根据楼上说得改完sun6i-dma.c 测试:
root@TinaLinux:/# time dd if=/dev/mtd3 of=/dev/null bs=4096 count=10240 [ 35.040957] usb1-vbus: disabling 10240+0 records in 10240+0 records out real 0m 8.84s user 0m 0.02s sys 0m 5.70s
-
回复: USB烧录驱动安装后,在设备管理器里是黄色三角感叹号
@wt2521 在 USB烧录驱动安装后,在设备管理器里是黄色三角感叹号 中说:
今天请教了大佬,说是要先把其他烧录软件关了,就可以识别到FEL设备了,至于黄色感叹号,不影响使用。
原来是这样。。。确实有一点,就是全志的一些生产工具不能同时打开,因为协议用的是一套,可能会有冲突,比如烧固件的工具phonixsuit和烧号工具DragonSN、测试工具DragonMat就不能同时打开
-
回复: SPI-NANDFLASH性能低问题
@chenlinfei 在 SPI-NANDFLASH性能低问题 中说:
u-boot的读速率也只有不到10MiB/s,怀疑是SPI没有开启4线模式。
尝试开启4线模式后,读写会失败,是否可以帮忙看下?[02.134]bmp_name=bootlogo.bmp size 38454 38454 bytes read in 4 ms (9.2 MiB/s)
uboot我们这边测试是可以达到18M的,
你开4线模式读写失败是什么情况?贴log看看?
你这内核驱动优化到8.4MB/s有点强,怎么做的?
我们这些分析到的根因是,cs拉低后隔比较长时间才传输,传输完也比较长时间才拉高,得看看代码逻辑是否有问题 -
回复: 【DIY教程】用D1哪吒开发板把”毛坯车“改造成”全车智能“(更新中)
@lajuchenghui 在 【继续整活】用D1哪吒开发板把”毛坯车“改造成”全车智能“ 中说:
哇 我居然上电视了
那个旋转旺仔有点意思
旋转旺仔:小文哥同学 你妈妈拿着两罐旺仔牛奶在门口等你为什么会有这个旋转旺仔牛奶呢?
这就要涉及到我们的原型车了。
本次开发调试,征用了我们产品经理的【跑车】作为测试车辆
车头他DIY了一个可旋转的旺仔作为车头饰品,我们准备帮他改成电动旋转的,寓意时来运转
-
回复: 【DIY教程】用D1哪吒开发板把”毛坯车“改造成”全车智能“(更新中)
做这个产品的初衷,源自于一本书,叫《被看见的力量》,这是快手官方出的介绍自己的一本书,里面提到一个群体——卡车司机
“中国有3 000万名开大卡车的司机,他们为生计长年在外奔波,还可能会遇到车匪路霸,与家人聚少离多,他们有自己的快乐与痛苦,很少被关注,也很难与外人沟通。”(摘自《被看见的力量》 第一章 让每一个生活都可以被看见 )
这些卡车司机大哥们每天都奔波在全国各地的公路上,有的会带着妻子一起。因为车贷和交货时间,一天也不敢停下来,衣食住行都在自己狭小的驾驶室里。驾驶室后面经常会被改装一个床,但是因为害怕被偷油,晚上都也不敢熟睡。
(图片出处见水印)漫长的路途是枯燥的,卡车的机械性能虽然强大,但是电子娱乐功能少之又少,很多卡车甚至没有倒车影像,右侧视野盲区也常常是靠贴一个”视野盲区“的条子物理提醒。
因此我们想,我们可以做些什么,让卡哥卡嫂们的车舱生活丰富起来,把科技的温度赋予人文。
于是便有了这个全车智能的改造方案。 -
回复: 【DIY教程】用D1哪吒开发板把”毛坯车“改造成”全车智能“(更新中)
@bedrock 在 【继续整活】用D1哪吒开发板把”毛坯车“改造成”全车智能“ 中说:
@xiaowenge 少了灵魂! 显示屏
啊,居然忘了画屏幕,但是这个肯定是必须的,准备上双屏——D1特色技能之双屏异显,其中MIPI屏用来进行界面交互,HDMI屏用于显示摄像头的右侧图像。
-
回复: 【DIY教程】用D1哪吒开发板做一个卡牌识别机,可以玩游戏王、狼人杀、三国杀、剧本杀
@bedrock 在 【持续更新】用D1哪吒开发板做一个卡牌识别机,可以玩游戏王、狼人杀、三国杀、剧本杀 中说:
这里开一个线程,让这条线程专门等待结果即可,其图片的
可以去阿里矢量图库下,免费,还能调颜色
https://www.iconfont.cn/search/index?searchType=icon&q=箭头
字节也有一个一样的矢量图库
https://iconpark.oceanengine.com/official
-
【DIY教程】D1 SDK可支持openssl对接CE硬件加解密模块
D1 SDK可支持openssl对接CE,验证方法如下:
① tina/package加入补丁
diff --git a/libs/openssl/Makefile b/libs/openssl/Makefile index c755f8adf..dbb608fdf 100755 --- a/libs/openssl/Makefile +++ b/libs/openssl/Makefile @@ -137,7 +137,7 @@ define Package/libopenssl-afalg $(call Package/openssl/Default) SUBMENU:=SSL TITLE:=AFALG hardware acceleration engine - DEPENDS:=libopenssl @OPENSSL_ENGINE +@KERNEL_AIO @!LINUX_3_18 @LINUX_4_4||@LINUX_4_9 + DEPENDS:=libopenssl @OPENSSL_ENGINE +@KERNEL_AIO @!LINUX_3_18 @LINUX_4_4||@LINUX_4_9||@LINUX_5_4 endef define Package/libopenssl-padlock @@ -210,7 +210,7 @@ ifdef CONFIG_OPENSSL_ENGINE ifndef CONFIG_PACKAGE_libopenssl-afalg OPENSSL_OPTIONS += no-afalgeng else - ifneq ($(CONFIG_PLATFORM_v5)$(CONFIG_PLATFORM_r328s2)$(CONFIG_PLATFORM_r328s3)$(CONFIG_PLATFORM_r18)$(CONFIG_PLATFORM_r329),) + ifneq ($(CONFIG_PLATFORM_v5)$(CONFIG_PLATFORM_r328s2)$(CONFIG_PLATFORM_r328s3)$(CONFIG_PLATFORM_r18)$(CONFIG_PLATFORM_r329)$(CONFIG_PLATFORM_r528)$(CONFIG_PLATFORM_d1),) OPENSSL_OPTIONS += -DSUPPORT_CE_V3_1 else OPENSSL_OPTIONS += -DSUPPORT_CE_V3_2
② tina配置,make menconfig
Tina Configuration Libraries ---> SSL ---> -*- libopenssl........................... Open source SSL toolkit (libraries) ---> [*] Enable engine support [*] Support dynamic engine (NEW) [*] Support Zero-Copy mode to call kernel's algorithms <*> libopenssl-afalg...................... AFALG hardware acceleration engine
说明: 可以将tina/lichee/linux-5.4/drivers/crypto/sunxi-ce/Makefile中的ccflags-y += -DDEBUG打开,这样每次调用CE时,就会产生debug打印。
③ 内核配置 (参考显杨文档中的配置dts等),make kernel_menuconfig
Linux/riscv 5.4.61 Kernel Configuration [*] Networking support ---> -*- Cryptographic API ---> [*] Disable run-time self tests <*> CBC support <*> CFB support -*- CTR support <*> CTS support -*- ECB support <*> OFB support <*> XTS support <*> MD5 digest algorithm <*> SHA1 digest algorithm -*- SHA224 and SHA256 digest algorithm <*> SHA384 and SHA512 digest algorithms -*- AES cipher algorithms <*> User-space interface for hash algorithms <*> User-space interface for symmetric key cipher algorithms <*> User-space interface for random number generator algorithms <*> User-space interface for AEAD cipher algorithms [*] Hardware crypto devices ---> <*> Support for Allwinner Sunxi CryptoEngine
④ 编译,将afalgtest程序adb push到设备上运行
PC端: adb push tina/out/d1-nezha/compile_dir/target/openssl-1.1.0i/test/aflagtest /tmp/
设备端: /tmp/aflagtest
该测试程序会对当前已经对接好CE的算法(主要是AES与Hash)进行测试。大家可以参考tina/out/d1-nezha/compile_dir/target/openssl-1.1.0i/test/aflagtest.c进行编程即可使用CE加解密。
-
【DIY教程】用D1哪吒开发板把”毛坯车“改造成”全车智能“(更新中)
最近我们的”唐家湾钢铁侠“ @BedRock 在论坛上直播用D1哪吒开发板一个游戏王对战机,广受大家好评,有有深夜催更的,有要买样机的,更有要投资这个项目的等等等等……
(详见:【持续更新】用D1哪吒开发板做一个卡牌识别机,可以玩游戏王、狼人杀、三国杀、剧本杀)
我们的产品经理和工程师觉得备受鼓舞,决定继续做一些有趣并且有用的东西,这一次,我们瞄准了智能汽车。
最近几年新能源、智能驾驶的概念火爆,各种黑科技层出不穷,全志科技也专门成立了车载事业部,瞄准车载市场。同时,全志的芯片在智能后视镜、行车记录仪、倒车影像、汽车中控等多种产品形态中早已有广泛的应用。
针对D1哪吒开发板丰富的接口和优秀的解码显示性能,我们准备做一个副驾驶中控,可以通过显示屏控制周边外设,提升车内氛围和乘坐体验,话不多说,直接上方案: