Staging
v0.5.1
https://github.com/python/cpython
Revision 0d155570b69ee29032c88241bcac797b42051ba1 authored by Anthony Baxter on 18 October 2006, 05:13:30 UTC, committed by Anthony Baxter on 18 October 2006, 05:13:30 UTC
1 parent 1fad0cd
Raw File
Tip revision: 0d155570b69ee29032c88241bcac797b42051ba1 authored by Anthony Baxter on 18 October 2006, 05:13:30 UTC
Tagging for release of Python 2.4.4
Tip revision: 0d15557
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