Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 81467b814626e35cc988791ff29b818f67e4a148 authored by cvs2svn on 26 September 2000, 18:00:20 UTC
This commit was manufactured by cvs2svn to create tag 'r20b2'.
Tip revision: 81467b8
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