Staging
v0.5.1
https://github.com/python/cpython
Revision 84471935ed2f62b8c5758fd544c7d37076fe0fa5 authored by Benjamin Peterson on 16 September 2017, 17:38:35 UTC, committed by Benjamin Peterson on 16 September 2017, 17:38:35 UTC
1 parent c00d508
Raw File
Tip revision: 84471935ed2f62b8c5758fd544c7d37076fe0fa5 authored by Benjamin Peterson on 16 September 2017, 17:38:35 UTC
2.7.14 final version bumps
Tip revision: 8447193
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