Skip to content

Commit

Permalink
Fix GEFS and SFS compile flags in build_all.sh (#3197)
Browse files Browse the repository at this point in the history
# Description
The build_all.sh script was fixed to send the correct flags to
build_ufs.sh for GEFS (added a missing `-w`) and SFS (added a missing
`-y`) executables. Issue reported by @AntonMFernando-NOAA.
  • Loading branch information
DavidHuber-NOAA authored Jan 2, 2025
1 parent 1c37f90 commit 21f8048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sorc/build_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ _gefs_exec="gefs_model.x"
_sfs_exec="sfs_model.x"
build_opts=(
["ufs_gfs"]="${wave_opt} ${_build_ufs_opt} ${_verbose_opt} ${_build_debug} -e ${_gfs_exec}"
["ufs_gefs"]="${wave_opt} ${_build_ufs_opt} ${_verbose_opt} ${_build_debug} -e ${_gefs_exec}"
["ufs_sfs"]="${wave_opt} ${_build_ufs_opt} ${_verbose_opt} ${_build_debug} -e ${_sfs_exec}"
["ufs_gefs"]="${wave_opt} ${_build_ufs_opt} ${_verbose_opt} ${_build_debug} -w -e ${_gefs_exec}"
["ufs_sfs"]="${wave_opt} ${_build_ufs_opt} ${_verbose_opt} ${_build_debug} -y -e ${_sfs_exec}"
["upp"]="${_build_debug}"
["ww3_gfs"]="${_verbose_opt} ${_build_debug}"
["ww3_gefs"]="-w ${_verbose_opt} ${_build_debug}"
Expand Down

0 comments on commit 21f8048

Please sign in to comment.