Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion cime_config/buildcpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ def buildcpp(case):

if cam_dycore == 'fv3':
config_opts += ["-fv3core_libdir", os.path.join(exeroot,"atm","obj","atmos_cubed_sphere")]

try:
libs = case.get_values("CASE_SUPPORT_LIBRARIES")
if libs is not None and "FMS" not in libs:
libs.extend(["gptl","pio","csm_share","FMS"])
case.set_value("CASE_SUPPORT_LIBRARIES", ",".join(libs))
except:
pass
# The ocean component setting is only used by CAM to do attribute matching for
# setting default tuning parameter values. In SOM mode we want to use the same
# tunings as the fully coupled B compset, so set the ocean component to pop in
Expand Down