diff options
author | Sergey Kosukhin <sergey.kosukhin@mpimet.mpg.de> | 2021-01-18 19:44:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-18 12:44:22 -0600 |
commit | 723f132531eab9206276d46f1e44d750bcf09dc4 (patch) | |
tree | ad73fbba4efc7cec4767b76c5dfd82eb3aff607d | |
parent | fa53838d2f24508544230e3e75bc4fe3da27121d (diff) | |
download | spack-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.py | 4 |
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') |