Based on the CCS project, adding the following post-build steps can generate a bin file
"${CCE_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin.bat" "${BuildArtifactFileName}" "${BuildArtifactFileBaseName}.bin" "${CG_TOOL_ROOT}/bin/ofd2000.exe" "${CG_TOOL_ROOT}/bin/hex2000.exe" "${CCE_INSTALL_ROOT}/utils/tiobj2bin/mkhex4bin.exe"
In this command, the strange {CCE_INSTALL_ROOT} environment variable is equivalent to {CCS_INSTALL_ROOT} in the CCS terminal environment.
However, it still cannot generate normally. Find the file /utils/tiobj2bin/tiobj2bin.bat in the CCS installation directory, change all "470" to "2000", and recompile to generate it normally.
At this point, there may be an error saying "C: cannot find" something, which is caused by the following segment in tiobj2bin.bat. If you really dislike this error message, just delete this segment; it does not affect the generation of the bin file.
rem ==========================================================================
rem C2000 EABI files are not supported. This code uses ofd2000 to search the
rem file header to determine whether it is an ELF file or not. All the output
rem of that command, including any error diagnostics, is thrown away. For the
rem details of how this works, Internet search the commands used.
rem ==========================================================================
if %base_ofdcmd% == ofd2000 (
setlocal enabledelayedexpansion
%ofdcmd% --obj_display=none,header %outfile% | findstr/c:" ELF " > nul 2>&1
if !errorlevel! equ 0 (
echo C28x files built with --abi=eabi are not supported
exit /b
)
setlocal disabledelayedexpansion
)
This article is updated synchronously to xLog by Mix Space The original link is https://www.yono233.cn/notes/21