To determine what version of the Carbide.c++ compiler you are using, follow the steps below.
NOTE The Carbide.c++ compiler is stored in <Carbide_Install_Dir>\x86Build\Symbian_Tools\Command_Line_Tools.
Figure 1. Getting compiler version using Command Prompt.
Consult the Carbide.c++ User Guide for information on creating new projects.
The Carbide.c++ compiler’s preprocessor reads its directives to produce a preprocessed version of version.c.
This represents the version of the compiler. See Carbide.c++ Predefined Symbols for information on interpreting this value.
/* version.c */
/* The version of the compiler is */
/* assigned to variable "version." */
long version = __MWERKS__;
If you are using the command-line version of the Carbide C/C++ compiler on Microsoft Windows, type:
mwccSym2 -EP version.c
TIP For more information on invoking Carbide tools from the command line, see the Invoking Command-Line Tools.
The Carbide C/C++ compiler’s preprocessor reads its directives to produce a preprocessed version of version.c in the command line. Check the value assigned to the variable version, which represents the version of the compiler. See Carbide.c++ Predefined Symbols for information on interpreting this value.