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 <rep...@bugs.python.org> <http://bugs.python.org/issue21658> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com