i complier the CRC proget following the https://community.nxp.com/t5/MPC5xxx-Knowledge-Base/How-to-use-CRCgen-in-CodeWarrior-for-MCU/ta-p/11...
get the following error:
D:/Freescale/CW MCU v11.1/gnu/bin/mingw32-make --no-print-directory post-build
D:\Freescale\CW MCU v11.1\eclipse\../MCU/bin/crcgen.exe" "C:\Users\stevenzhang\workspace\test5643l_crc\FLASH/test5643l_crc.elf" -crc C:/Users/stevenzhang/workspace/test5643l_crc/Project_Settings/Linker_Files/calc_crc.crc" -srec "C:\Users\stevenzhang\workspace\test5643l_crc\FLASH/test5643l_crc.elf.crc.mot" 26
' '
'D:\Freescale\CW' 不是内部或外部命令,也不是可运行的程序
或批处理文件。----- it not an internal or external command。
mingw32-make[1]: [post-build] Error 1 (ignored)
how to fist the problem?
Hi,
not sure if it's a copy&paste issue but there is missing quotation mark at the beginning of the line:
D:\Freescale\CW MCU v11.1\eclipse\../MCU/bin/crcgen.exe"
I'd expect this:
"D:\Freescale\CW MCU v11.1\eclipse\../MCU/bin/crcgen.exe"
Also the error message indicates the spaces in path is causing issue in parsing the string of the post process steps.
Hoe it helps.
Stan