repo.or.cz
/
python.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Issue #7632: Fix a serious wrong output bug for string -> float conversion.
[python.git]
/
Python
/
getcompiler.c
blob
0f441deb84d0b22af5a48dbf60c97cad6e9ff292
1
2
/* Return the compiler identification, if possible. */
3
4
#include
"Python.h"
5
6
#ifndef COMPILER
7
8
#ifdef __GNUC__
9
#define COMPILER
"
\n
[GCC "
__VERSION__
"]"
10
#endif
11
12
#endif
/* !COMPILER */
13
14
#ifndef COMPILER
15
16
#ifdef __cplusplus
17
#define COMPILER
"[C++]"
18
#else
19
#define COMPILER
"[C]"
20
#endif
21
22
#endif
/* !COMPILER */
23
24
const char
*
25
Py_GetCompiler
(
void
)
26
{
27
return
COMPILER
;
28
}