Staging
v0.5.1
https://github.com/python/cpython
Revision bfdcd436f0410e2b3eb34ce4fd7411488d3f13fb authored by Serhiy Storchaka on 13 October 2013, 20:09:14 UTC, committed by Serhiy Storchaka on 13 October 2013, 20:09:14 UTC
1 parent 24201d4
Raw File
Tip revision: bfdcd436f0410e2b3eb34ce4fd7411488d3f13fb authored by Serhiy Storchaka on 13 October 2013, 20:09:14 UTC
Issue #18758: Fixed and improved cross-references.
Tip revision: bfdcd43
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