Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: a6c55232abe40ec876da3faaf8d13a9c4f0caaaf authored by Larry Hastings on 05 January 2014, 12:40:25 UTC
Bump version number for 3.4.0b2.
Tip revision: a6c5523
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