Rebuilding the Flash and Boot Utils Package

本文指导如何在Windows PC上下载并配置必要的软件来重建闪存工具,包括Cygwin、.NET Framework、编译工具(ARM和C6x)、CCSv3和CCSv5项目的构建。

To rebuild the serial flashing tool on a Windows PC, please follow the instructions

Contents

  [hide]

Download the Flash and Boot Utilities

From Sourceforge

For users who are using version 2.36, we strongly recommend upgrading to version 2.40 for a better setup and build experience.

Install and configure the required software

Cygwin

  • Download it here: http://www.cygwin.com/
  • When installing, add the following packages which are not selected by default:
    • Devel-->make: The GNU version of the 'make' utility
    • Devel-->subversion: A version control subsystem
    • Editor-->vim (or similar)
  • After installing, verify that the variables TMP and TEMP both contain /tmp.
echo $TMP
echo $TEMP
  • Both commands should above should return "/tmp". If some reason they do not you will need to edit the cygwin\home\[user]\.bashrc file to create them:
    • export TMP=/tmp
    • export TEMP=/tmp
  • You will need to restart cygwin after this step.

Microsoft .Net Framework

Compiler Tools

Note that both ARM and C6x compiler tools are required to build all components of the serial flasher, even for ARM-only parts.

ARM Compiler Tools (CodeSourcery G++ Lite)
  • Download the ARM compiler tools here: http://www.codesourcery.com/sgpp/lite/arm/portal/subscription3057
    • If using v2.40 or later: Edit the Common/build.mak file to have the correct ARM_TOOLS_PATH and ARM_TOOLS_PREFIX variables
    • If using v2.36 or earlier: Add the bin directory of the ARM cross-compiler tools to the system path environment variable.
C6x Compiler Tools
  • These are available free of charge: https://www-a.ti.com/downloads/sds_support/TICodegenerationTools/download.htm
    • If using v2.40 or later: Edit the Common/build.mak file to have the correct DSP_TOOLS_PATH variable
    • If using v2.36 or earlier: Add the bin directory of the TI C6000 Code generation tools to the system path environment variable (i.e. "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.11\bin")

Note:

Since cl6x program (C6000 compiler)is a native windows app, it expects windows include and library search paths hence set DSP_TOOLS_PATH using cygwin path but DSP_LIB_PATH using Windows conventions. The cygwin path will help your make setup find the compiler and the windows library search path will enable the compiler find the rts libraries.

For eg

  DSP_TOOLS_PATH?=/cygdrive/c/ccsv4/tools/compiler/c6000/
  DSP_LIB_PATH?="C:\ccsv4\tools\compiler\c6000\lib"

CCSv3

If you wish to rebuild the CCSv3 projects included in the package from the command-line, you need to have the timake tool in the system path as well. This path is typically <CCSv3 Install Path>\cc\bin.

CCSv5

The CCSv3 projects files can be imported into the newer versions of Code Composer Studio, such as CCS v5.1.0. It is recommended to use the default import options when doing so. Do not copy the project files into your workspace. They should be left in place.


Rebuilding the Flash and Boot Utils package for a particular platform

  • For a particular platform, the extracted package will consist of a 'Common' directory and a '<PlatformName>' directory.
  • Open a Cygwin prompt, which is like a Unix/Linux prompt under Windows.
    • If using v2.36 or earlier, add necessary components to path
      export PATH=<arm-compiler-root>/bin:<C6000-Compiler-Root>/bin:$PATH
    • If using v2.40 or later, edit the ARM_TOOLS_PATH, ARM_TOOLS_PREFIX, and DSP_TOOLS_PATH variables in Common/build.mak as needed for your system
  • Enter into the <PlatformName> directory.
cd <PlatformName>
  • Edit device.mak to include only the part number and flash type required, in order to speed up the build process
vim device.mak
  • [Optional] To rebuild only the command-line tools (not the CCS projects), cd into the GNU directory.
cd GNU
  • [Optional] To rebuild only the CCS projects (requires CCS v3), cd into the CCS directory
cd CCS
  • If you're rebuilding everything then stay in the <Platform> directory
  • Run 'make clean' and 'make'.
make clean
make
  • If you wish to clean-up already built components, run 'make clean' from the path you wish to clean.
E2e.jpgFor technical support please post your questions at http://e2e.ti.com. Please post only comments about the article Rebuilding the Flash and Boot Utils Package here.
Hyperlink blue.pngLinks
ARM Microcontroller MCUARM ProcessorDigital Media ProcessorDigital Signal ProcessingMicrocontroller MCUMulti Core Processor
Ultra Low Power DSP8 bit Microcontroller MCU16 bit Microcontroller MCU32 bit Microcontroller MCU

Leave a Comment

Comments

Comments on Rebuilding the Flash and Boot Utils Package


Robert chen said ...

there is a mistake in the section "C6x Compiler Tools".

Fix: Add the lib directory (but not bin)!

(i.e. "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 7.3.2\lib")

Otherwise, you may get:

error: cannot find file "rts64plus.lib"

when doing make ubl in cygwin.

--Robert chen 04:03, 21 February 2012 (CST)

Rpjday said ...

The current OMAP-L138 flash tarball comes with a build.mak that contains the additional line:

DSP_CROSSCOMPILE=$(DSP_TOOLS_PATH)bin\\

and it's not clear from the above how that's compatible since you set DSP_TOOLS_PATH using the Cygwin path format. Can you clarify this?

--Rpjday 08:56, 16 February 2013 (CST)

================================ [CLEAN SUCCESS] Took 0.00 seconds ================================ ================================ [Python环境正常] ================================ warning: the int symbol LFS_PARTITION_ID (defined at middleware/chips/ws63/Kconfig:105) has a non-int default 0x21 (undefined) warning: default on the choice symbol MIDDLEWARE_SUPPORT_UPG_COMPRESS (defined at middleware/chips/ws63/Kconfig:52) will have no effect, as defaults do not affect choice symbols warning: default on the choice symbol MIDDLEWARE_SUPPORT_UPG_AB (defined at middleware/chips/ws63/Kconfig:59) will have no effect, as defaults do not affect choice symbols warning: default on the choice symbol MIDDLEWARE_SUPPORT_EXCEPT_REBOOT (defined at middleware/chips/ws63/Kconfig:85) will have no effect, as defaults do not affect choice symbols warning: default on the choice symbol MIDDLEWARE_SUPPORT_EXCEPT_WAITFOREVER (defined at middleware/chips/ws63/Kconfig:91) will have no effect, as defaults do not affect choice symbols D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_flashboot.config:432: warning: DRIVER_SUPPORT_DMA (defined at drivers/drivers/Kconfig:51) set more than once. Old value "n", new value "y". Not searching for unused variables given on the command line. -- BUILD_PLATFORM: windows -- BUILD_PLATFORM: windows -- The C compiler identification is GNU 7.3.0 -- The ASM compiler identification is GNU -- Found assembler: D:/fbb_ws63-master/src/tools/bin/compiler/riscv/cc_riscv32_musl_100/cc_riscv32_musl_win/bin/riscv32-linux-musl-gcc.exe -- The CXX compiler identification is GNU 7.3.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - failed -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - failed -- Detecting CXX compile features -- Detecting CXX compile features - done GEN_TARGET_SRC = D:/fbb_ws63-master/src/output/ws63/acore/acore.c PRECOMPILE_TARGET = D:/fbb_ws63-master/src/output/ws63/acore/acore.etypes TARGET_INCLUDE = D:/fbb_ws63-master/src/middleware/chips/ws63/nv/nv_config/include;D:/fbb_ws63-master/src/middleware/utils/common_headers/native BGTP_PROJECT=ws63 BGTP_ROM_VERSION=false BGTP_DEVICE_ONLY=false BG COMMON BTH_ROM_LIST:__null__ BTH_ROM_LIST:__null__ -- project_name: -- Configuring done -- Generating done -- Build files have been written to: D:/fbb_ws63-master/src/output/ws63/acore/ws63-flashboot [0/1] Re-running CMake... FAILED: build.ninja C:\Users\���ļ�\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SD:\fbb_ws63-master\src -BD:\fbb_ws63-master\src\output\ws63\acore\ws63-flashboot CreateProcess failed: The system cannot find the file specified. python path: C:\Users\���ļ�\AppData\Local\Programs\Python\Python311\python.exe [ws63][acore] run custom cmd success! D:\fbb_ws63-master\src\build\script\.\..\..\config.in d:\fbb_ws63-master\src Kconfig header saved to 'D:\fbb_ws63-master\src\output\ws63\acore\ws63-flashboot\mconfig.h' ######### Build target:ws63_flashboot failed ninja: error: rebuilding 'build.ninja': subcommand failed warning: the int symbol LFS_PARTITION_ID (defined at middleware/chips/ws63/Kconfig:105) has a non-int default 0x21 (undefined) warning: default on the choice symbol MIDDLEWARE_SUPPORT_UPG_COMPRESS (defined at middleware/chips/ws63/Kconfig:52) will have no effect, as defaults do not affect choice symbols warning: default on the choice symbol MIDDLEWARE_SUPPORT_UPG_AB (defined at middleware/chips/ws63/Kconfig:59) will have no effect, as defaults do not affect choice symbols warning: default on the choice symbol MIDDLEWARE_SUPPORT_EXCEPT_REBOOT (defined at middleware/chips/ws63/Kconfig:85) will have no effect, as defaults do not affect choice symbols warning: default on the choice symbol MIDDLEWARE_SUPPORT_EXCEPT_WAITFOREVER (defined at middleware/chips/ws63/Kconfig:91) will have no effect, as defaults do not affect choice symbols D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_liteos_app.config:215: warning: DRIVER_SUPPORT_DMA (defined at drivers/drivers/Kconfig:51) set more than once. Old value "n", new value "n". D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_liteos_app.config:216: warning: DRIVER_SUPPORT_FLASH (defined at drivers/drivers/Kconfig:108) set more than once. Old value "n", new value "n". D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_liteos_app.config:256: warning: DRIVER_SUPPORT_HASH (defined at drivers/drivers/Kconfig:137) set more than once. Old value "n", new value "n". D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_liteos_app.config:259: warning: DRIVER_SUPPORT_EDGE (defined at drivers/drivers/Kconfig:66) set more than once. Old value "n", new value "n". D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_liteos_app.config:264: warning: DRIVER_SUPPORT_EFLASH (defined at drivers/drivers/Kconfig:80) set more than once. Old value "n", new value "n". D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_liteos_app.config:394: warning: DRIVER_SUPPORT_USB (defined at drivers/drivers/Kconfig:503) set more than once. Old value "n", new value "n". D:\fbb_ws63-master\src\build\script\.\..\..\build\config\target_config\ws63\menuconfig\acore\ws63_liteos_app.config:685: warning: DRIVER_SUPPORT_DMA (defined at drivers/drivers/Kconfig:51) set more than once. Old value "n", new value "y". Not searching for unused variables given on the command line. -- BUILD_PLATFORM: windows -- BUILD_PLATFORM: windows -- The C compiler identification is GNU 7.3.0 -- The ASM compiler identification is GNU -- Found assembler: D:/fbb_ws63-master/src/tools/bin/compiler/riscv/cc_riscv32_musl_100/cc_riscv32_musl_fp_win/bin/riscv32-linux-musl-gcc.exe -- The CXX compiler identification is GNU 7.3.0 -- Detecting C compiler ABI info -- Detecting C compiler ABI info - failed -- Detecting C compile features -- Detecting C compile features - done -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - failed -- Detecting CXX compile features -- Detecting CXX compile features - done LOSCFG_PLATFORM is set to ws63 LOSCFG_COMPILER_GNU_BINUTILS is set to y LOSCFG_COMPILER_GCC is set to y LOSCFG_COMPILER_TOOLCHAIN_MUSL is set to y LOSCFG_COMPILER_RISCV_GCC_MUSL is set to y LOSCFG_COMPILER_RISCV_UNKNOWN is set to y LOSCFG_RISCV_COMPILER_OPTIONS_USER_DEFINED is set to LOSCFG_RISCV_COMPILER_OPTIONS_LDM_STM is set to y LOSCFG_RISCV_COMPILER_OPTIONS_EMIT_LLI is set to y LOSCFG_COMPILER_OPTIMIZE_SIZE is set to y LOSCFG_FAMILY_AIOT is set to y LOSCFG_FAMILY is set to aiot LOSCFG_PLATFORM is set to ws63 LOSCFG_PLATFORM_WS63 is set to y LOSCFG_USING_BOARD_LD is set to y LOSCFG_USING_BOARD_RESET_VECTOR is set to y LOSCFG_ARCH_FPU_ENABLE is set to y LOSCFG_APC_ENABLE is set to y LOSCFG_ARCH_PMU is set to y LOSCFG_ARCH_RISCV32 is set to y LOSCFG_ARCH_RISCV_RV32IMC is set to y LOSCFG_ARCH_RISCV_RV32F is set to y LOSCFG_ARCH_LINXCORE_131 is set to y LOSCFG_KERNEL_MIN is set to y LOSCFG_SCHED is set to y LOSCFG_SCHED_SQ is set to y LOSCFG_BASE_CORE_TIMESLICE is set to y LOSCFG_BASE_CORE_TIMESLICE_TIMEOUT is set to 2 LOSCFG_BASE_CORE_TSK_MONITOR is set to y LOSCFG_TASK_STACK_DYNAMIC_ALLOCATION is set to y LOSCFG_BASE_CORE_TSK_LIMIT is set to 28 LOSCFG_BASE_CORE_TSK_MIN_STACK_SIZE is set to 1024 LOSCFG_BASE_CORE_TSK_DEFAULT_STACK_SIZE is set to 2048 LOSCFG_BASE_CORE_TSK_SWTMR_STACK_SIZE is set to 2048 LOSCFG_BASE_CORE_TSK_IDLE_STACK_SIZE is set to 1024 LOSCFG_BASE_CORE_TSK_DEFAULT_PRIO is set to 10 LOSCFG_BASE_CORE_TICK_PER_SECOND is set to 100 LOSCFG_BASE_CORE_USE_SINGLE_LIST is set to y LOSCFG_STARTUP_STACK_SIZE is set to 0x4000 LOSCFG_KERNEL_MEM_ALLOC is set to y LOSCFG_KERNEL_MEM_BESTFIT is set to y LOSCFG_KERNEL_MEM_SLAB_EXTENTION is set to y LOSCFG_ARCH_INTERRUPT_TAKEOVER is set to y LOSCFG_ARCH_INTERRUPT_PREEMPTION is set to y LOSCFG_HWI_PRE_POST_PROCESS is set to y LOSCFG_HWI_WITH_ARG is set to y LOSCFG_IRQ_STACK_SIZE is set to 0x2000 LOSCFG_NMI_STACK_SIZE is set to 0x800 LOSCFG_PLATFORM_HWI_LIMIT is set to 96 LOSCFG_HWI_PRIO_LIMIT is set to 7 LOSCFG_EXC_STACK_SIZE is set to 0x800 LOSCFG_BASE_CORE_SWTMR is set to y LOSCFG_BASE_CORE_SWTMR_LIMIT is set to 16 LOSCFG_BASE_IPC_QUEUE is set to y LOSCFG_QUEUE_DYNAMIC_ALLOCATION is set to y LOSCFG_BASE_IPC_QUEUE_LIMIT is set to 16 LOSCFG_BASE_IPC_EVENT is set to y LOSCFG_BASE_IPC_MUX is set to y LOSCFG_MUTEX_WAITMODE_PRIO is set to y LOSCFG_BASE_IPC_MUX_LIMIT is set to 60 LOSCFG_BASE_IPC_SEM is set to y LOSCFG_BASE_IPC_SEM_LIMIT is set to 32 LOSCFG_KERNEL_PRINTF is set to y LOSCFG_KERNEL_PRINTF_SIZE_EXTEND is set to y LOSCFG_KERNEL_RINGBUF is set to y LOSCFG_BASE_CORE_SYS_RES_CHECK is set to y LOSCFG_LIB_LIBC is set to y LOSCFG_LIB_LIBM is set to y LOSCFG_LIB_FORMAT is set to y LOSCFG_COMPAT_CMSIS is set to y LOSCFG_COMPAT_CMSIS_VER_2 is set to y LOSCFG_COMPAT_LINUX is set to y LOSCFG_COMPAT_LINUX_PENDLIST is set to y LOSCFG_COMPAT_LINUX_TIMER is set to y LOSCFG_COMPAT_LINUX_COMPLETION is set to y LOSCFG_COMPAT_LINUX_WAITQUEUE is set to y LOSCFG_COMPAT_LINUX_DRIVER_BASE is set to y LOSCFG_NET_IPERF is set to y LOSCFG_BACKTRACE is set to y LOSCFG_SERIAL_OUTPUT_ENABLE is set to y LOSCFG_KERNEL_CPUP is set to y LOSCFG_DRIVERS_BASE is set to y LOSCFG_RISCV_HIMIDEERV200_PLIC is set to y LOSCFG_TIMER_VENDOR is set to y LOSCFG_DRIVERS_UART_VENDOR is set to y LOSCFG_DRIVERS_SIMPLE_UART is set to y LOSCFG_CC_NO_STACKPROTECTOR is set to y CMAKE_TOOLCHAIN_FILE is defined ahead, skip auto-config compiler CMAKE_TOOLCHAIN_FILE is defined ahead, skip auto-config compiler OUT:D:/fbb_ws63-master/src/output/ws63/acore/ws63-liteos-app/kernel/liteos/liteos_v208.5.0 LITEOS_MODULE_DEP_LIBS_PATH: LITEOS_DEP_LIBS_INT: LITEOS_DEP_LIBS_EXT:gcc;gcc_eh LITEOS_BASELIB:m;gcc;gcc_eh LOS_INTF_DEP_TARGETS: -- COM_HEADER-includeD:/fbb_ws63-master/src/output/ws63/acore/ws63-liteos-app/kernel/liteos/liteos_v208.5.0/menuconfig/include/menuconfig.h -- D:/fbb_ws63-master/src/drivers/chips/ws63/porting/patch/sfc_patch.c is not found, finding libplat_patch.a in D:/fbb_ws63-master/src/drivers/chips/ws63/porting/patch/ws63-liteos-app -- D:/fbb_ws63-master/src/drivers/chips/ws63/rom_config/acore/output/rom_callback.S is not found, finding librom_callback.a in D:/fbb_ws63-master/src/drivers/chips/ws63/ws63-liteos-app GEN_TARGET_SRC = D:/fbb_ws63-master/src/output/ws63/acore/acore.c PRECOMPILE_TARGET = D:/fbb_ws63-master/src/output/ws63/acore/acore.etypes TARGET_INCLUDE = D:/fbb_ws63-master/src/middleware/chips/ws63/nv/nv_config/include;D:/fbb_ws63-master/src/middleware/utils/common_headers/native -- D:/fbb_ws63-master/src/middleware/utils/at/at_bt_cmd/src/at_bt_cmd_register.c is not found, finding libbt_at.a in D:/fbb_ws63-master/src/middleware/utils/at/at_bt_cmd/ws63-liteos-app -- D:/fbb_ws63-master/src/middleware/utils/at/at_radar_cmd/at/at_radar.c is not found, finding libradar_at.a in D:/fbb_ws63-master/src/middleware/utils/at/at_radar_cmd/ws63-liteos-app Build wifi device with rom repo! -- D:/fbb_ws63-master/src/protocol/wifi/rom_code/ws63/source/alg/iot_alg/device/alg_main.c is not found, finding libwifi_driver_dmac.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/rom_code/ws63/source/common/romable/wifi_rom_data.c is not found, finding libwifi_rom_data.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/source/host/feature/interface/hmac_feature_interface.c is not found, finding libwifi_driver_hmac.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/source/host/forward/hmac_rx_data.c is not found, finding libwifi_driver_tcm.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/source/alg/iot_alg/host/alg_txbf.c is not found, finding libwifi_alg_txbf.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/source/alg/iot_alg/host/alg_temp_protect.c is not found, finding libwifi_alg_temp_protect.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/source/alg/iot_alg/host/alg_anti_interference.c is not found, finding libwifi_alg_anti_interference.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/source/alg/iot_alg/host/alg_edca_opt.c is not found, finding libwifi_alg_edca_opt.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/wifi/source/alg/iot_alg/host/alg_cca_intrf_mode.c is not found, finding libwifi_alg_cca_opt.a in D:/fbb_ws63-master/src/protocol/wifi/ws63-liteos-app BGTP_PROJECT=ws63 BGTP_ROM_VERSION=true BGTP_DEVICE_ONLY=false -- D:/fbb_ws63-master/src/protocol/bt/controller/bgtp/__null__ is not found, finding libbgtp.a in D:/fbb_ws63-master/src/protocol/bt/controller/bgtp/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/bt/controller/bgtp/__null__ is not found, finding libbgtp_rom_data.a in D:/fbb_ws63-master/src/protocol/bt/controller/bgtp/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/bt/host/bg_common/__null__ is not found, finding libbg_common.a in D:/fbb_ws63-master/src/protocol/bt/host/bg_common/ws63-liteos-app BG COMMON BTH_ROM_LIST:__null__ BTH_ROM_LIST:__null__ -- D:/fbb_ws63-master/src/protocol/bt/host/bt/__null__ is not found, finding libbt_app.a in D:/fbb_ws63-master/src/protocol/bt/host/bt/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/bt/host/bt/sdk/__null__ is not found, finding libbth_sdk.a in D:/fbb_ws63-master/src/protocol/bt/host/bt/sdk/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/bt/host/bt/__null__ is not found, finding libbt_host.a in D:/fbb_ws63-master/src/protocol/bt/host/bt/ws63-liteos-app BTH_ROM_LIST:__null__ BTH_PUBLIC_HEADER_LIST= -- D:/fbb_ws63-master/src/protocol/bt/host/gle/__null__ is not found, finding libbth_gle.a in D:/fbb_ws63-master/src/protocol/bt/host/gle/ws63-liteos-app -- D:/fbb_ws63-master/src/protocol/radar/alg_ai/radar_ai_attention_layer.c is not found, finding libradar_ai.a in D:/fbb_ws63-master/src/protocol/radar/alg_ai/ws63-liteos-app -- project_name: -- D:/fbb_ws63-master/src/protocol/radar/plat/radar_service.c is not found, finding libradar_sensing.a in D:/fbb_ws63-master/src/protocol/radar/plat/ws63-liteos-app -- Configuring done -- Generating done -- Build files have been written to: D:/fbb_ws63-master/src/output/ws63/acore/ws63-liteos-app [0/1] Re-running CMake... ninja: error: rebuilding 'build.ninja': subcommand failed FAILED: build.ninja C:\Users\���ļ�\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SD:\fbb_ws63-master\src -BD:\fbb_ws63-master\src\output\ws63\acore\ws63-liteos-app CreateProcess failed: The system cannot find the file specified. python path: C:\Users\���ļ�\AppData\Local\Programs\Python\Python311\python.exe flashboot start build ..... ['C:\\Users\\���ļ�\\AppData\\Local\\Programs\\Python\\Python311\\python.exe', 'build.py', 'ws63-flashboot'] [ws63][acore] run custom cmd success! D:\fbb_ws63-master\src\build\script\.\..\..\config.in d:\fbb_ws63-master\src Kconfig header saved to 'D:\fbb_ws63-master\src\output\ws63\acore\ws63-liteos-app\mconfig.h' ######### Build target:ws63_liteos_app failed ================================ [FAILED] Took 14.28 seconds ================================ * 终端进程已终止,退出代码: -1。 * 终端将被任务重用,按任意键关闭。
06-07
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值