[issue21658] __m128, can't build 3.4.1 with intel 14.0.0

Alain Miniussi report at bugs.python.org
Wed Jun 4 11:30:55 CEST 2014


New submission from Alain Miniussi:

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.

----------
components: ctypes
messages: 219753
nosy: aom
priority: normal
severity: normal
status: open
title: __m128, can't build 3.4.1 with intel 14.0.0
type: compile error
versions: Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue21658>
_______________________________________


More information about the Python-bugs-list mailing list