Skip to content

Commit

Permalink
fix for ERP test of fvcubed dycore
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Sep 28, 2023
1 parent 2d6fbd7 commit b6c1e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cime_config/buildlib
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def _build_cam(caseroot, libroot, bldroot):
compiler = case.get_value("COMPILER")
mpilib = case.get_value("MPILIB")
debug = "debug" if case.get_value("DEBUG") else "nodebug"
threaded = "threads" if case.get_value("BUILD_THREADED") else "nothreads"
threaded = "threads" if case.get_value("BUILD_THREADED") or case.get_value("FORCE_BUILD_SMP") else "nothreads"
comp_interface = case.get_value("COMP_INTERFACE")
fmsbuilddir = os.path.join(
slr, compiler, mpilib, debug, threaded, comp_interface)
Expand Down

0 comments on commit b6c1e7a

Please sign in to comment.