From a88bfcbcf2d2caf6d5ccc15e59886f480825ba0a Mon Sep 17 00:00:00 2001 From: Xylar Asay-Davis Date: Fri, 13 Jan 2023 07:53:17 -0800 Subject: [PATCH] Require C++17 standard for Albany (and Trilinos) --- conda/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/bootstrap.py b/conda/bootstrap.py index e8daf9e7dc..c1eeac696e 100755 --- a/conda/bootstrap.py +++ b/conda/bootstrap.py @@ -392,7 +392,7 @@ def build_spack_env(config, update_spack, machine, compiler, mpi, spack_env, specs.append(f'scorpio@{scorpio}+pnetcdf~timing+internal-timing~tools+malloc') if albany != 'None': - specs.append(f'albany@{albany}+mpas') + specs.append(f'albany@{albany}+mpas+cxx17') yaml_template = f'{spack_template_path}/{machine}_{compiler}_{mpi}.yaml' if not os.path.exists(yaml_template):