diff options
author | jthies <jonas.thies@dlr.de> | 2020-10-25 22:35:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-25 16:35:43 -0500 |
commit | 182ca4cb688f8fa6e6d232a4c85eab044f3da52b (patch) | |
tree | c4f19298c6bd3585875bda76b4ff06292213c493 | |
parent | 01953dc5134643995db0f769eddab8868b62b1ae (diff) | |
download | spack-182ca4cb688f8fa6e6d232a4c85eab044f3da52b.tar.gz spack-182ca4cb688f8fa6e6d232a4c85eab044f3da52b.tar.bz2 spack-182ca4cb688f8fa6e6d232a4c85eab044f3da52b.tar.xz spack-182ca4cb688f8fa6e6d232a4c85eab044f3da52b.zip |
phist: two new versions and disable ccache because we don't have a dependency on ccache. (#19510)
Otherwise, phist would look for ccache via cmake, which is not the spack way to do it.
Co-authored-by: Thies <thie_jo@be-cpu03.sc.bs.dlr.de>
-rw-r--r-- | var/spack/repos/builtin/packages/phist/package.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/phist/package.py b/var/spack/repos/builtin/packages/phist/package.py index f49fb1cd05..d5390edadf 100644 --- a/var/spack/repos/builtin/packages/phist/package.py +++ b/var/spack/repos/builtin/packages/phist/package.py @@ -26,6 +26,8 @@ class Phist(CMakePackage): version('develop', branch='devel') version('master', branch='master') + version('1.9.3', sha256='3ab7157e9f535a4c8537846cb11b516271ef13f82d0f8ebb7f96626fb9ab86cf') + version('1.9.2', sha256='289678fa7172708f5d32d6bd924c8fdfe72b413bba5bbb8ce6373c85c5ec5ae5') version('1.9.1', sha256='6e6411115ec48afe605b4f2179e9bc45d60f15459428f474f3f32b80d2830f1f') version('1.9.0', sha256='990d3308fc0083ed0f9f565d00c649ee70c3df74d44cbe5f19dfe05263d06559') version('1.8.0', sha256='ee42946bce187e126452053b5f5c200b57b6e40ee3f5bcf0751f3ced585adeb0') @@ -140,7 +142,8 @@ class Phist(CMakePackage): find_system_libraries(['libm'])).joined(';') lapacke_include_dir = spec['lapack:c'].headers.directories[0] - args = ['-DPHIST_KERNEL_LIB=%s' % kernel_lib, + args = ['-DPHIST_USE_CCACHE=OFF', + '-DPHIST_KERNEL_LIB=%s' % kernel_lib, '-DPHIST_OUTLEV=%s' % outlev, '-DTPL_LAPACKE_LIBRARIES=%s' % lapacke_libs, '-DTPL_LAPACKE_INCLUDE_DIRS=%s' % lapacke_include_dir, |