Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 68707af1fb87c8b3d128b71c863cd68195da198f authored by Georg Brandl on 23 February 2014, 07:46:00 UTC
merge
Tip revision: 68707af
getcompiler.c

/* Return the compiler identification, if possible. */

#include "Python.h"

#ifndef COMPILER

#ifdef __GNUC__
#define COMPILER "\n[GCC " __VERSION__ "]"
#endif

#endif /* !COMPILER */

#ifndef COMPILER

#ifdef __cplusplus
#define COMPILER "[C++]"
#else
#define COMPILER "[C]"
#endif

#endif /* !COMPILER */

const char *
Py_GetCompiler(void)
{
	return COMPILER;
}
back to top