Staging
v0.5.1
https://github.com/python/cpython
Revision d8c174afd5842e95627d6ee13dadc3d690f9b5af authored by Ned Deily on 19 September 2017, 03:18:48 UTC, committed by Ned Deily on 19 September 2017, 03:18:48 UTC
1 parent 2f61f64
Raw File
Tip revision: d8c174afd5842e95627d6ee13dadc3d690f9b5af authored by Ned Deily on 19 September 2017, 03:18:48 UTC
Bump to 3.6.3rc1
Tip revision: d8c174a
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