Staging
v0.5.1
https://github.com/python/cpython
Revision 25b163d5798fce263daa4155c5291daba6e66db0 authored by Guido van Rossum on 23 January 2001, 01:54:07 UTC, committed by Guido van Rossum on 23 January 2001, 01:54:07 UTC
1 parent c201bf4
Raw File
Tip revision: 25b163d5798fce263daa4155c5291daba6e66db0 authored by Guido van Rossum on 23 January 2001, 01:54:07 UTC
Get rid of weird @SET_CXX@ and @SET_DLLLIBRARY@ macro occurrences.
Tip revision: 25b163d
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