Staging
v0.5.1
https://github.com/python/cpython
Revision 2cd76c772bf08891e9d7d1b224207f9dd6672d89 authored by Anthony Baxter on 19 December 2003, 02:06:06 UTC, committed by Anthony Baxter on 19 December 2003, 02:06:06 UTC
1 parent ed4dbb3
Raw File
Tip revision: 2cd76c772bf08891e9d7d1b224207f9dd6672d89 authored by Anthony Baxter on 19 December 2003, 02:06:06 UTC
trace fix
Tip revision: 2cd76c7
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