Constants describing the version number of TIGCC
You can embed the version strings into your program by defining the preprocessor symbol EMBED_VERSION_STRINGS
before including this header file or tigcclib.h.
If you want to check whether a program is compiled with TIGCC, you cannot
use the __TIGCC__ macro, since this header
file does not exist in other libraries. For this reason, there is a global
preprocessor symbol __TIGCC_ENV__
, which is defined from
TIGCC v0.93 onwards.
The TIGCC major version number, like __GNUC__.
The TIGCC beta version number; 0 in the official release.
The TIGCC minor version number, represented by a two-digit decimal number.
The TIGCC service pack number; 0 in most cases.
The full TIGCC version number, as an integer value concatenating __TIGCC__ and __TIGCC_MINOR__.
A string constant describing the TIGCC version number in a unified format.
The TIGCC Library major version number.
The TIGCC Library minor version number, represented by a two-digit decimal number.
The TIGCC Library service pack number; 0 in most cases.
The full TIGCC library version number, as an integer value concatenating __TIGCCLIB__ and __TIGCCLIB_MINOR__.
A string constant describing the TIGCC Library version number in a unified format.