TriCore VX-toolset: Determine the version, revision, and patch level

18-Sep-2024

To determine the version, revision, and patch level information of a TriCore product, follow the below steps:

1. Navigate to the <installation path>\ctc\bin directory of the TriCore VX-toolset, for example, C:\Program Files\TASKING\TriCore v6.3r1\ctc\bin.

2. Open the command prompt (cmd.exe) from this directory and run the following batch file:

@echo off
echo:
echo Build Number Information
echo ==========================
echo:
ctc -V
echo:
echo ==========================
echo:
cptc -V
echo:
echo ==========================
echo:
astc -V
echo:
echo ==========================
echo:
ltc -V
echo:

The output displays the build number of the individual executables including, the C++ compiler, C compiler, assembler, and linker.

The document Patch_Level.pdf provides the build numbers of the version, revision, and patch level. Instead of creating your own batch file, you can use the sample batch file patch_level.bat.txt.

Remove the .txt extension from the name of patch_level.bat.txt to invoke the batch file.


More resources

Was this answer helpful?