Staging
v0.5.1
https://github.com/python/cpython
Revision f0560d959299358b28234881340245dfa417558e authored by Georg Brandl on 10 February 2014, 21:05:16 UTC, committed by Georg Brandl on 10 February 2014, 21:05:16 UTC
1 parent 8f9c20b
Raw File
Tip revision: f0560d959299358b28234881340245dfa417558e authored by Georg Brandl on 10 February 2014, 21:05:16 UTC
Fix trailing whitespace.
Tip revision: f0560d9
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