diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-31 10:11:28 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-31 10:11:28 (GMT) |
commit | 504a151c825a28e85f81a94c8acbe6b865d66912 (patch) | |
tree | c0f25304faa5960953fbc2f02e1594ff9bbb9bdc /Misc | |
parent | 09823a2e215bea1bde9941766f8d11c0aee26b76 (diff) | |
download | cpython-504a151c825a28e85f81a94c8acbe6b865d66912.zip cpython-504a151c825a28e85f81a94c8acbe6b865d66912.tar.gz cpython-504a151c825a28e85f81a94c8acbe6b865d66912.tar.bz2 |
Issue #6603: Fix --with-tsc build failures on x86-64 that resulted
from a gcc inline assembler peculiarity. (gcc's "A" constraint
apparently means 'rax or rdx' in 64-bit mode, not edx:eax
or rdx:rax as one might expect.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -1345,6 +1345,10 @@ Tools/Demos Build ----- +- Issue #6603: Change READ_TIMESTAMP macro in ceval.c so that it + compiles correctly under gcc on x86-64. This fixes a reported + problem with the --with-tsc build on x86-64. + - Add 2 new options to ``--with-universal-archs`` on MacOSX: ``intel`` builds a distribution with ``i386`` and ``x86_64`` architectures, while ``3-way`` builds a distribution with the ``ppc``, ``i386`` |