This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
工具/软件:Code Composer Studio
大家好、
我尝试从 可执行文件生成 bin 文件。 我使用了编译后处理步骤、如下所示;
像这样的 makefile 末尾;
post-build: -“C:/ti/ccs1010/ccs/utils/tiobj2bin/tiobj2bin”“Debug_d_2_0_2.out”“Debug_d_2_0_2.bin” -“C:/ti/ccs1010/ccs/tools/compiler/ti-cgt-arm_20.2.3.LTS/bin/armofd”“C:/ti/ccs1010/ccs/tools/compiler/ti-cgt-arm_20.2.3.LTS/bin/armhex”“C:/ti/ccs1010/ccs/utils/tiobj2bin/mkhex4bin” -@echo”“ secondary 输出:$(bin_outputs) .bin:所有干净 的.secondary: -include .makefile targets./makefile
但我无法生成 bin 文件。 错误消息:
。
。
"Debug_d_V_2_0_2.out".cinit =>.cinit
完成构建:"Debug_d_V_2_0_2.out"
“C:/ti/ccs1010/ccs/utils/tiobj2bin/tiobj2binâ€? “Debug outâ€V_2_0_2.k Ω? “Debug binâ€V_2_0_2.k Ω?
Makefile:294:目标'post-build'的配方失败
Process_Begin:CreateProcess (NULL、“C:/ti/ccs1010/ccs/utils/tiobj2bin/tiobj2binâ€? “Debug outâ€V_2_0_2.k Ω? “Debug binâ€V_2_0_2.k Ω?...) 失败。
gmak[2]:[编译后处理]错误2 (忽略)
“C:/ti/ccs1010/ccs/tools/compiler/ti-cgt-arm_20.2.3.LTS/bin/armofdâ€? “C:/ti/ccs1010/ccs/tools/compiler/ti-cgt-arm_20.2.3.LTS/bin/armhexâ€? “C:/ti/ccs1010/ccs/utils/tiobj2bin/mkhex4binâ€?
Makefile:294:目标'post-build'的配方失败
Process_Begin:CreateProcess (NULL、“C:/ti/ccs1010/ccs/tools/compiler/ti-cgt-arm_20.2.3.LTS/bin/armofdâ€? “C:/ti/ccs1010/ccs/tools/compiler/ti-cgt-arm_20.2.3.LTS/bin/armhexâ€? “C:/ti/ccs1010/ccs/utils/tiobj2bin/mkhex4binâ€?...) 失败。
gmak[2]:[编译后处理]错误2 (忽略)
您好!
看起来使用的引号字符不是正确的字符。 在构建输出中、我看到一些其他 ASCII 字符位于其位置。 您可以尝试在路径周围重新键入报价吗?
谢谢
Ki
您好!
感谢你的答复。 我更正了引号、现在我可以生成二进制文件。 错误是站点(http://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_project-management.html)上显示的引号与实际应该具有的引号不同。
应该是 <">
感谢你的帮助。