我按照mcsdk_2_01_02_06\tools\boot_loader\ibl\doc\build_instructions.txt中的方法编译IBL,已经安装好了MinGW,步骤中说
“Modify the environment setup script to match the tool chain installation
directory”
指的是把setupenvMsys.sh中的路径改为MinGW的路径吗?
谢谢!
------------------------------------------------------------------------------------------------------------------------------------
我将路径修改为:
# Specify the base directory of the c6000 compiler with UNIX style path separator
export C6X_BASE_DIR='"E:\sunx\Ti\ccsv5\tools\compiler\c6000_7.4.1"'
# Specify the base directory of the c6000 compiler in format understandable by the MSYS Bash shell
export C6X_BASE_DIR_MSYS=/e/sunx/Ti/ccsv5/tools/compiler/c6000_7.4.1
# Don't modify the below variables. They are derived from the above definitions
export PATH=$PATH:$C6X_BASE_DIR_MSYS/bin
export TOOLSC6X=$C6X_BASE_DIR
export TOOLSC6XDOS=$C6X_BASE_DIR
但编译时还是显示 cl6x: Command not found
请问是我修改的不正确吗?