Staging
v0.8.1
https://github.com/python/cpython
Revision ea8c552c05c7b5d666d61bc54a5d30e8e911c282 authored by Anthony Baxter on 23 September 2003, 08:12:13 UTC, committed by Anthony Baxter on 23 September 2003, 08:12:13 UTC
1 parent 444ed1a
Raw File
Tip revision: ea8c552c05c7b5d666d61bc54a5d30e8e911c282 authored by Anthony Baxter on 23 September 2003, 08:12:13 UTC
and another date
Tip revision: ea8c552
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