The CodeWarrior for Microcontrollers v10.x is not installed with the crcgen.exe. To generate a Cyclic Redundancy Check (CRC) you have to install the crcgen.exe here:
<CWinstalldir>\MCU\bin\plugins\Support\crcgen.exe
where, <CWInstalldir> is the installation directory of the CodeWarrior software.
You have to create a .crc file in your project and configure the post-linker in MCUv10.x to use it. To do that:
The Properties for <project_name> dialog box appears.
The Settings page appears in the left panel.
"${MCU_TOOLS_HOME}/bin/plugins/support/crcgen.exe" "${BuildLocation}/${BuildArtifactFileName}" -crc "${ProjDirPath}/Project_Settings/Linker_Files/calc_crc.crc" -o "${BuildLocation}/${BuildArtifactFileName}.crc.elf"
where,
The changes you made are saved and when you build your project, the post build step will be executed as well to calculate the CRC into your application.