GetAUTSuspectedCompiler
string GetAUTSuspectedCompiler()Description
Attempts to identify the compiler used to build the AUT by scanning the executable for compiler signatures.
Possible results include MSVC, MinGW, Clang, or others.
If the compiler cannot be determined, an empty string is returned.
Return
string - The suspected compiler, or an empty string if unknown.
Example
void main()
{
string compiler = GetAUTSuspectedCompiler();
Print("Compiler: " + compiler);
}