Staging
v0.5.1
https://github.com/python/cpython
Revision dba50788a75c8eb85337fe575ca9279713584196 authored by Barry Warsaw on 03 August 2010, 22:51:57 UTC, committed by Barry Warsaw on 03 August 2010, 22:51:57 UTC
1 parent 6053744
Raw File
Tip revision: dba50788a75c8eb85337fe575ca9279713584196 authored by Barry Warsaw on 03 August 2010, 22:51:57 UTC
Tagging 2.6.6 rc 1
Tip revision: dba5078
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