summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2011-01-06 17:39:24 (GMT)
committerDavid Malcolm <dmalcolm@redhat.com>2011-01-06 17:39:24 (GMT)
commit4c29e1cd01f2bd4142a45ef359e045d79d444fcb (patch)
treedbc387b23fc7f578af7584bd04270cda071c4b77 /Misc
parent77c1b382b76ba90acc570a4194521d6bd4425bac (diff)
downloadcpython-4c29e1cd01f2bd4142a45ef359e045d79d444fcb.zip
cpython-4c29e1cd01f2bd4142a45ef359e045d79d444fcb.tar.gz
cpython-4c29e1cd01f2bd4142a45ef359e045d79d444fcb.tar.bz2
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 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1ac5985..eea77ce 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -116,6 +116,11 @@ Build
- Issue #10475: Don't hardcode compilers for LDSHARED/LDCXXSHARED on NetBSD
and DragonFly BSD. Patch by Nicolas Joly.
+- 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.
+
Tests
-----