This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author donmez
Recipients donmez
Date 2011-03-31.12:38:37
SpamBayes Score 0.0028388633
Marked as misclassified No
Message-id <1301575120.29.0.707250693117.issue11729@psf.upfronthosting.co.za>
In-reply-to
Content
The check under Modules/_ctypes/libffi/configure.ac does;

    echo '.text; foo: nop; .data; .long foo-.; .text' > conftest.s
    if $CC $CFLAGS -c conftest.s 2>&1 | grep -i warning > /dev/null; then
        libffi_cv_as_x86_pcrel=no
    fi  

With clang; we get:

clang: warning: argument unused during compilation: '-g'

So it fails to detect pc relocation support due to an unrelated warning.
History
Date User Action Args
2011-03-31 12:38:40donmezsetrecipients: + donmez
2011-03-31 12:38:40donmezsetmessageid: <1301575120.29.0.707250693117.issue11729@psf.upfronthosting.co.za>
2011-03-31 12:38:37donmezlinkissue11729 messages
2011-03-31 12:38:37donmezcreate