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

cice6 compile #6

Merged
merged 3 commits into from
Jul 17, 2020
Merged
Show file tree
Hide file tree
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: 4 additions & 4 deletions configuration/scripts/forapps/ufs/comp_ice.backend.clean
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ setenv OBJDIR $EXEDIR/compile ; if !(-d $OBJDIR) mkdir -p $OBJDIR

if (${SITE} =~ cheyenne*) then
setenv ARCH cheyenne_intel
#else if (${SITE} =~ Orion*) then
# setenv ARCH orion_intel
#else if (${SITE} =~ hera*) then
# setenv ARCH hera_intel
else if (${SITE} =~ orion*) then
setenv ARCH orion_intel
else if (${SITE} =~ hera*) then
setenv ARCH hera_intel
else
echo "CICE6 ${0}: ERROR in ARCH setup, ${hname}"
exit -2
Expand Down
6 changes: 4 additions & 2 deletions configuration/scripts/forapps/ufs/comp_ice.backend.libcice
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,11 @@ endif
# Build in debug mode. If DEBUG=Y, enable DEBUG compilation. This
# flag is set in ${ROOTDIR}/coupledFV3_MOM6_CICE_debug.appBuilder file.
if (! $?DEBUG) then
setenv ICE_BLDDEBUG true
setenv ICE_BLDDEBUG false
else
if ($DEBUG != "Y") then
if ($DEBUG == "Y") then
setenv ICE_BLDDEBUG true
else
setenv ICE_BLDDEBUG false
endif
endif
Expand Down