diff options
author | Alberto Invernizzi <9337627+albestro@users.noreply.github.com> | 2023-09-26 01:00:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-25 16:00:58 -0700 |
commit | fc027e34d14b4483f7aeb4e080d0f75df1b871a4 (patch) | |
tree | 744622bc5316993ac7e5c3175d220bdb398a7e77 | |
parent | aef58776b4bf6cb845f2e7ba1d52b599371fc7a0 (diff) | |
download | spack-fc027e34d14b4483f7aeb4e080d0f75df1b871a4.tar.gz spack-fc027e34d14b4483f7aeb4e080d0f75df1b871a4.tar.bz2 spack-fc027e34d14b4483f7aeb4e080d0f75df1b871a4.tar.xz spack-fc027e34d14b4483f7aeb4e080d0f75df1b871a4.zip |
apex: add new version 2.6.3 + deal with ompt build problem (#40073)
* add new version 2.6.3
* add conflict for openmp when using gcc
-rw-r--r-- | var/spack/repos/builtin/packages/apex/package.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/apex/package.py b/var/spack/repos/builtin/packages/apex/package.py index 76b213a40f..bf6ea039ac 100644 --- a/var/spack/repos/builtin/packages/apex/package.py +++ b/var/spack/repos/builtin/packages/apex/package.py @@ -18,6 +18,7 @@ class Apex(CMakePackage): version("develop", branch="develop") version("master", branch="master") + version("2.6.3", sha256="7fef12937d3bd1271a01abe44cb931b1d63823fb5c74287a332f3012ed7297d5") version("2.6.2", sha256="0c3ec26631db7925f50cf4e8920a778b57d11913f239a0eb964081f925129725") version("2.6.1", sha256="511dbab0af541489052a3d6379c48f9577e51654491d3b2c8545020e9d29fb29") version("2.6.0", sha256="25b4f6afd1083475dc6680b5da87759c62d31fcf368996185573694fc40d5317") @@ -115,6 +116,9 @@ class Apex(CMakePackage): conflicts("+jemalloc", when="+gperftools") conflicts("+plugins", when="~activeharmony") + # https://github.com/UO-OACISS/apex/pull/177#issuecomment-1726322959 + conflicts("+openmp", when="%gcc") + # Patches # This patch ensures that the missing dependency_tree.hpp header is |