Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 9aefd695a93d412fbedca658d6d6887182fd4976 authored by Georg Brandl on 05 March 2011, 14:09:43 UTC
Close 3.0 branch.
Tip revision: 9aefd69
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