summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2011-01-06 17:36:32 +0000
committerDavid Malcolm <dmalcolm@redhat.com>2011-01-06 17:36:32 +0000
commit8ad4cd90e97c1ab272c9a047a91539b13d6addf7 (patch)
tree034eb85be9894d491cf0ce020702100da436c018 /Python
parent59bf738874d2582ca37e49c162a18ef20442177e (diff)
downloadcpython-git-8ad4cd90e97c1ab272c9a047a91539b13d6addf7.tar.gz
Merged revisions 87796 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87796 | david.malcolm | 2011-01-06 12:01:36 -0500 (Thu, 06 Jan 2011) | 6 lines Issue #10655: Fix the build on PowerPC on Linux with GCC when building with timestamp profiling (--with-tsc): the preprocessor test for the PowerPC support now looks for "__powerpc__" as well as "__ppc__": the latter seems to only be present on OS X; the former is the correct one for Linux with GCC. ........
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index e848fb07cf..f3433f1d7d 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -27,10 +27,11 @@
typedef unsigned long long uint64;
-#if defined(__ppc__) /* <- Don't know if this is the correct symbol; this
- section should work for GCC on any PowerPC
- platform, irrespective of OS.
- POWER? Who knows :-) */
+/* PowerPC suppport.
+ "__ppc__" appears to be the preprocessor definition to detect on OS X, whereas
+ "__powerpc__" appears to be the correct one for Linux with GCC
+*/
+#if defined(__ppc__) || defined (__powerpc__)
#define READ_TIMESTAMP(var) ppc_getcounter(&var)