New submission from Alain Miniussi :
Hi,
I'm trying to install 3.7.2 on CentOS 7.5 and intel 19:
[alainm@pollux Python-3.7.2]$ ./configure
--prefix=/trinity/shared/OCA/softs/pyton-3.7-intel19 --with-icc
--with-cxx-main=icpc --enable-optimizations
Configure look ok but then compil
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
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