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

Adding debug option for all build scripts #2326

Merged
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0e5184d
Adding debug option for all build scripts.
henrywinterbottom-wxdev Feb 17, 2024
ff4d6b9
Added BUILD_TYPE support.
HenryRWinterbottom Feb 17, 2024
553318f
Corrected BUILD_TYPE relative to what CMake expects.
HenryRWinterbottom Feb 17, 2024
83188dd
CMake is case-dependent.
HenryRWinterbottom Feb 19, 2024
029e02c
CMake is case-dependent.
HenryRWinterbottom Feb 19, 2024
d238b45
CMake is case-dependent.
HenryRWinterbottom Feb 19, 2024
5494798
Bringing branch UTD with WIP.
HenryRWinterbottom Feb 19, 2024
ab6b521
Update for CMake to pick up debug option.
HenryRWinterbottom Feb 20, 2024
36c304d
Removed left over debugging comments.
henrywinterbottom-wxdev Feb 21, 2024
72efbfa
Merge branch 'NOAA-EMC:develop' into feature/gfsv17_issue_300
HenryRWinterbottom Feb 22, 2024
20a8c16
Updates for gsi_monitor.fd.
HenryRWinterbottom Feb 23, 2024
026efbe
Merge branch 'feature/gfsv17_issue_300' of https://github.com/HenryWi…
HenryRWinterbottom Feb 23, 2024
8bc2b20
Update build_ww3prepost.sh
HenryRWinterbottom Feb 23, 2024
266a24f
Fixed conflict.
henrywinterbottom-wxdev Feb 23, 2024
b815bed
Case correction.
henrywinterbottom-wxdev Feb 23, 2024
193a4ba
Merge branch 'NOAA-EMC:develop' into feature/gfsv17_issue_300
HenryRWinterbottom Feb 26, 2024
69b8fa7
David Huber suggested updates.
henrywinterbottom-wxdev Feb 26, 2024
8d36d0c
Update sorc/build_ww3prepost.sh
HenryRWinterbottom Feb 26, 2024
490f675
Merge branch 'develop' into feature/gfsv17_issue_300
aerorahul Feb 27, 2024
2bdd520
Merge branch 'develop' into feature/gfsv17_issue_300
HenryRWinterbottom Feb 28, 2024
58d5470
Update requested by reviewer.
HenryRWinterbottom Feb 29, 2024
a6a4f6b
Committing prior to clean clone and build.
HenryRWinterbottom Feb 29, 2024
011d3bd
Merge branch 'feature/gfsv17_issue_300' of https://github.com/HenryWi…
HenryRWinterbottom Feb 29, 2024
fe44609
patch on HWs pr
aerorahul Feb 29, 2024
0abcd83
apply shellcheck fixes
aerorahul Mar 1, 2024
c051f0c
Merge branch 'NOAA-EMC:develop' into feature/gfsv17_issue_300
HenryRWinterbottom Mar 1, 2024
7b10512
Merge pull request #3 from aerorahul/patch/issue_300
HenryRWinterbottom Mar 1, 2024
bd84a8d
Update sorc/build_all.sh to eliminate upp special handling.
aerorahul Mar 1, 2024
7cba6d0
Merge branch 'develop' into feature/gfsv17_issue_300
aerorahul Mar 1, 2024
835ff69
Update sorc/build_gdas.sh to add trailing space.
aerorahul Mar 1, 2024
f6b1d6f
Update sorc/build_gdas.sh to force clean build directory with every i…
aerorahul Mar 1, 2024
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
3 changes: 2 additions & 1 deletion sorc/build_ww3prepost.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,10 @@ cat "${buildswitch}"

#define cmake build options
MAKE_OPT="-DCMAKE_INSTALL_PREFIX=install"
[[ ${BUILD_TYPE:-"Release"} = "DEBUG" ]] && MAKE_OPT+=" -DDEBUG=ON"
[[ ${BUILD_TYPE:-"Release"} = "Debug" ]] && MAKE_OPT+=" -DCMAKE_BUILD_TYPE=Debug"

#Build executables:
# shellcheck disable=SC2086
cmake "${WW3_DIR}" -DSWITCH="${buildswitch}" "${MAKE_OPT}"
HenryRWinterbottom marked this conversation as resolved.
Show resolved Hide resolved
rc=$?
if (( rc != 0 )); then
Expand Down
Loading