Staging
v0.5.1
https://github.com/python/cpython
Revision bcf692417fc9e042dbb1ba75f33fd9296ec27151 authored by Georg Brandl on 25 January 2014, 08:15:44 UTC, committed by Georg Brandl on 25 January 2014, 08:15:44 UTC
1 parent 381c280
Raw File
Tip revision: bcf692417fc9e042dbb1ba75f33fd9296ec27151 authored by Georg Brandl on 25 January 2014, 08:15:44 UTC
doc: pydoc topic and suspicious markup update
Tip revision: bcf6924
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