summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Kosukhin <sergey.kosukhin@mpimet.mpg.de>2021-01-18 19:44:22 +0100
committerGitHub <noreply@github.com>2021-01-18 12:44:22 -0600
commit723f132531eab9206276d46f1e44d750bcf09dc4 (patch)
treead73fbba4efc7cec4767b76c5dfd82eb3aff607d
parentfa53838d2f24508544230e3e75bc4fe3da27121d (diff)
downloadspack-723f132531eab9206276d46f1e44d750bcf09dc4.tar.gz
spack-723f132531eab9206276d46f1e44d750bcf09dc4.tar.bz2
spack-723f132531eab9206276d46f1e44d750bcf09dc4.tar.xz
spack-723f132531eab9206276d46f1e44d750bcf09dc4.zip
python: improve building with Intel (#21134)
-rw-r--r--var/spack/repos/builtin/packages/python/package.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/var/spack/repos/builtin/packages/python/package.py b/var/spack/repos/builtin/packages/python/package.py
index 8c286bd975..4ae9092d5a 100644
--- a/var/spack/repos/builtin/packages/python/package.py
+++ b/var/spack/repos/builtin/packages/python/package.py
@@ -417,8 +417,8 @@ class Python(AutotoolsPackage):
config_args.append('--disable-toolbox-glue')
if spec.satisfies('%intel', strict=True) and \
- spec.satisfies('@2.7.12:2.8,3.5.2:', strict=True):
- config_args.append('--with-icc')
+ spec.satisfies('@2.7.12:2.8,3.5.2:3.7', strict=True):
+ config_args.append('--with-icc={0}'.format(spack_cc))
if '+debug' in spec:
config_args.append('--with-pydebug')