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 aom
Recipients aom
Date 2014-06-04.09:30:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1401874255.53.0.168864202018.issue21658@psf.upfronthosting.co.za>
In-reply-to
Content
In ffi64.c, intel 14.0.0 has an issue with:
{{{
#if defined(__INTEL_COMPILER)
#define UINT128 __m128
#else
...
}}}

At leat on Linux CentOS 6.5, an include directive is required for __m128:
{{{
#if defined(__INTEL_COMPILER)
#include <xmmintrin.h>
#define UINT128 __m128
#else
...
}}}
otherwise, compilation of _ctypes fails.

Regards.
History
Date User Action Args
2014-06-04 09:30:55aomsetrecipients: + aom
2014-06-04 09:30:55aomsetmessageid: <1401874255.53.0.168864202018.issue21658@psf.upfronthosting.co.za>
2014-06-04 09:30:55aomlinkissue21658 messages
2014-06-04 09:30:55aomcreate