Staging
v0.5.1
https://github.com/python/cpython
Revision 1c88e0f52cfa6e7c9fca6da94946eff3f34f6daf authored by Georg Brandl on 30 March 2008, 19:41:39 UTC, committed by Georg Brandl on 30 March 2008, 19:41:39 UTC
1 parent 9d0b604
Raw File
Tip revision: 1c88e0f52cfa6e7c9fca6da94946eff3f34f6daf authored by Georg Brandl on 30 March 2008, 19:41:39 UTC
The other download formats will be available for 2.6 too.
Tip revision: 1c88e0f
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