【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
-
- 下载编译工具链
下载页面: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
- 下载编译工具链
-
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
-
编译成功
-
@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
这个问题应该是编译工具链路径没配置号造成的,遇到同样问题可以检查一下编译工具链
-
问题2:
编译完成后hb set 的时候error
-
编译lib完成后回到源码的根目录,完整编译
编译配置
hb set
这里可能要多敲一次回车才会出来这个选项框
选择wifi_skylake编译
hb build -f
编译完成后生成的固件在路径xr806_openharmony2/device/xradio/xr806/xr_skylark/out 下:
将 xr_system.img 烧写到设备中即可
-
-
@pingyang
hb 自己用python3安装就行
-
@xiaowenge
hb build -f这里提示缺少clang,可是apt install clang还是一样。。。
-
@pingyang 806用的是gcc编译,不是clang,出现这种情况可能是hb set时选择的不是wifi_skylark。
-
-
@i_a_student
多谢,已解决 -
@xiaowenge hb build -f 编译过程中碰到如下错误,
[OHOS ERROR] ../../../device/xradio/xr806/adapter/hals/communication/blue_lite/src/ohos_bt_gap.c:34:10: fatal error: ohos_bt_def.h: No such file or directory
不知道有人碰到没,怎么解决的 -
我们自已的应用代码怎么编辑呢?需要装什么环境呢?用vim,还是vscode?大家是怎么做的呢?
-
@zhugx 可以参考在线文档里的hello word教程:https://xr806.docs.aw-ol.com/study/soft_helloword/ 手把手教你写第一个程序 hello word
-
@xiaowenge 华为DevEco Device Tool 支持XR806吗?
-
@xiaowenge 按照链接修改hello没有如约出现。。。
Copyright © 2024 深圳全志在线有限公司 粤ICP备2021084185号 粤公网安备44030502007680号