mirror of
				https://github.com/python/cpython.git
				synced 2025-11-04 07:31:38 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			801 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			801 B
		
	
	
	
		
			C
		
	
	
	
	
	
/***********************************************************
 | 
						|
Copyright (c) 2000, BeOpen.com.
 | 
						|
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
 | 
						|
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
 | 
						|
All rights reserved.
 | 
						|
 | 
						|
See the file "Misc/COPYRIGHT" for information on usage and
 | 
						|
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
 | 
						|
******************************************************************/
 | 
						|
 | 
						|
/* Return the compiler identification, if possible. */
 | 
						|
 | 
						|
#include "Python.h"
 | 
						|
 | 
						|
#ifndef COMPILER
 | 
						|
 | 
						|
#ifdef __GNUC__
 | 
						|
#define COMPILER " [GCC " __VERSION__ "]"
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* !COMPILER */
 | 
						|
 | 
						|
#ifndef COMPILER
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
#define COMPILER "[C++]"
 | 
						|
#else
 | 
						|
#define COMPILER "[C]"
 | 
						|
#endif
 | 
						|
 | 
						|
#endif /* !COMPILER */
 | 
						|
 | 
						|
const char *
 | 
						|
Py_GetCompiler()
 | 
						|
{
 | 
						|
	return COMPILER;
 | 
						|
}
 |