From ba33937def3827a84777944c86c0da1eb5079cb8 Mon Sep 17 00:00:00 2001 From: Rahul Mahajan Date: Fri, 3 Jan 2025 08:16:33 -0500 Subject: [PATCH] load cmake on wcoss2 at build time, this was missing. (#1107) --- modulefiles/wcoss2.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modulefiles/wcoss2.lua b/modulefiles/wcoss2.lua index ba535978c..4983eb78e 100644 --- a/modulefiles/wcoss2.lua +++ b/modulefiles/wcoss2.lua @@ -11,6 +11,9 @@ load(pathJoin("intel", intel_ver)) load(pathJoin("craype", craype_ver)) load(pathJoin("cray-mpich", cray_mpich_ver)) +cmake_ver=os.getenv("cmake_ver") or "3.20.2" +load(pathJoin("cmake", cmake_ver)) + hdf5_ver=os.getenv("hdf5_ver") or "1.10.6" netcdf_ver=os.getenv("netcdf_ver") or "4.7.4" load(pathJoin("hdf5", hdf5_ver))