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

2021-09-10 Thread Irit Katriel
Change by Irit Katriel : -- stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsu

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

2021-09-10 Thread Irit Katriel
Change by Irit Katriel : -- resolution: -> duplicate superseder: -> Intel icc 9.1 does not support __int128_t used by ctypes ___ Python tracker ___ __

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

2014-06-05 Thread STINNER Victor
STINNER Victor added the comment: See also the issue #4130. libffi is not part of Python, it's an external project. Python embeds a copy of libffi to limit dependencies... and because we have custom patches on libffi :-/ -- nosy: +haypo ___ Python t

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

2014-06-05 Thread Alain Miniussi
Alain Miniussi added the comment: Some details... Environement: {{{ [alainm@gurney Python-3.4.1]$ ^Cconfigure --prefix=/softs/exp/python-3.4.1-intel14-fake [alainm@gurney Python-3.4.1]$ icc --version icc (ICC) 14.0.0 20130728 Copyright (C) 1985-2013 Intel Corporation. All rights reserved. [al

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

2014-06-04 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- nosy: +amaury.forgeotdarc, belopolsky, meador.inge ___ Python tracker ___ ___ Python-bugs-list mailin

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

2014-06-04 Thread Alain Miniussi
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 #define UINT128 __m128 #els