summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGreg Becker <becker33@llnl.gov>2021-02-02 11:11:51 -0800
committerTamara Dahlgren <dahlgren1@llnl.gov>2021-02-17 17:07:46 -0800
commit240726a2e1e7d95e2fc197a224cbae53a98b9ac1 (patch)
tree3ffc9957649a021383e0337aa3d01388b5addc5c /lib
parente1dc4ba3700c6e56b417a8c497d45e25e417e644 (diff)
downloadspack-240726a2e1e7d95e2fc197a224cbae53a98b9ac1.tar.gz
spack-240726a2e1e7d95e2fc197a224cbae53a98b9ac1.tar.bz2
spack-240726a2e1e7d95e2fc197a224cbae53a98b9ac1.tar.xz
spack-240726a2e1e7d95e2fc197a224cbae53a98b9ac1.zip
add intel oneapi to compiler/pkg translations (#21448)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/compilers/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/spack/spack/compilers/__init__.py b/lib/spack/spack/compilers/__init__.py
index 44a0f90371..3c1f9ffa44 100644
--- a/lib/spack/spack/compilers/__init__.py
+++ b/lib/spack/spack/compilers/__init__.py
@@ -39,7 +39,8 @@ _cache_config_file = []
_compiler_cache = {}
_compiler_to_pkg = {
- 'clang': 'llvm+clang'
+ 'clang': 'llvm+clang',
+ 'oneapi': 'intel-oneapi-compilers'
}