Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update scripts to build on both Gaea-C5 and C6 #995

Merged
merged 12 commits into from
Nov 15, 2024
Prev Previous commit
Next Next commit
restored some modules
  • Loading branch information
mark-a-potts committed Nov 14, 2024
commit 221ddee03ab7262ba8f3d8e5a592788960a71162
9 changes: 9 additions & 0 deletions modulefiles/build.container.intel.lua
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ load(pathJoin("sp", sp_ver))
w3emc_ver=os.getenv("w3emc_ver") or "2.10.0"
load(pathJoin("w3emc", w3emc_ver))

sigio_ver=os.getenv("sigio_ver") or "2.3.2"
load(pathJoin("sigio", sigio_ver))

png_ver=os.getenv("png_ver") or "1.6.37"
load(pathJoin("libpng", png_ver))

Expand All @@ -40,7 +43,13 @@ load(pathJoin("netcdf-c", netcdf_c_ver))
netcdf_fortran_ver=os.getenv("netcdf_fortran_ver") or "4.6.1"
load(pathJoin("netcdf-fortran", netcdf_fortran_ver))

nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1"
load(pathJoin("nccmp", nccmp_ver))
DavidBurrows-NCO marked this conversation as resolved.
Show resolved Hide resolved

esmf_ver=os.getenv("esmf_ver") or "8.6.1"
load(pathJoin("esmf", esmf_ver))

nco_ver=os.getenv("nco_ver") or "5.1.6"
load(pathJoin("nco", nco_ver))
DavidBurrows-NCO marked this conversation as resolved.
Show resolved Hide resolved

whatis("Description: UFS_UTILS build environment")