Is there a way to print the name of the compiler and the version that was used to compile a program, something like;
printf("This is compiled with %s version %s\n", COMPILER, COMPILER_VERSION);
?
|
|
|
You can do this with the pre-processor: Reference: http://predef.sourceforge.net/precomp.html For gcc:
For MSVC just use:
|
|||||||
|
|
No, the way to get the name of the compiler is itself compiler-specific :-P. gcc provides the |
|||
|
|