summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorGlenn P Johnson <glenn-johnson@uiowa.edu>2019-07-25 22:18:19 -0500
committerPeter Scheibel <scheibel1@llnl.gov>2019-07-29 14:38:05 -0700
commite7d9a6f426b17774fd6f716384577d83d2263fd0 (patch)
treee58792ac5a2cf62ff14f6b7af156142a2de24222 /var
parentdbd294c20452886fcdaf0e566c3874b263eb6564 (diff)
downloadspack-e7d9a6f426b17774fd6f716384577d83d2263fd0.tar.gz
spack-e7d9a6f426b17774fd6f716384577d83d2263fd0.tar.bz2
spack-e7d9a6f426b17774fd6f716384577d83d2263fd0.tar.xz
spack-e7d9a6f426b17774fd6f716384577d83d2263fd0.zip
Add conflicts statement for Python-3.6.7+ and Intel compiler
Python-3.6.7 and up do not build with the Intel compiler - https://bugs.python.org/issue35473 - https://bugs.python.org/issue37415
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/python/package.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/python/package.py b/var/spack/repos/builtin/packages/python/package.py
index a25e4e5889..028dd35c0e 100644
--- a/var/spack/repos/builtin/packages/python/package.py
+++ b/var/spack/repos/builtin/packages/python/package.py
@@ -153,6 +153,11 @@ class Python(AutotoolsPackage):
conflicts('+tix', when='~tkinter',
msg='python+tix requires python+tix+tkinter')
+ # Python 3.6.7 and above can not be compiled with the Intel compiler
+ # https://bugs.python.org/issue35473
+ # https://bugs.python.org/issue37415
+ conflicts('%intel', when='@3.6.7:')
+
_DISTUTIL_VARS_TO_SAVE = ['LDSHARED']
_DISTUTIL_CACHE_FILENAME = 'sysconfig.json'
_distutil_vars = None