Skip to content

Commit

Permalink
Update to clang-16 & boost-1.82 (#1186)
Browse files Browse the repository at this point in the history
* Silence deprecation warnings from SimpleAmqpClient #1255 

fixes #1185

Authors:
  - David Gardner (https://github.com/dagardner-nv)

Approvers:
  - Devin Robison (https://github.com/drobison00)

URL: #1186
  • Loading branch information
dagardner-nv authored Oct 11, 2023
1 parent c521cd4 commit 0772f87
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion ci/conda/recipes/morpheus/conda_build_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ python:
- 3.10

boost:
- 1.74
- 1.82

rapids_version:
- 23.06
4 changes: 2 additions & 2 deletions ci/scripts/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ export SKIP_YAPF=${SKIP_YAPF:-""}
# Set BUILD_DIR to use a different build folder
export BUILD_DIR=${BUILD_DIR:-"${MORPHEUS_ROOT}/build"}

# Speficy the clang-tools version to use. Default 14
export CLANG_TOOLS_VERSION=${CLANG_TOOLS_VERSION:-14}
# Speficy the clang-tools version to use. Default 16
export CLANG_TOOLS_VERSION=${CLANG_TOOLS_VERSION:-16}

# Returns the `branch-YY.MM` that is used as the base for merging
function get_base_branch() {
Expand Down
6 changes: 3 additions & 3 deletions docker/conda/environments/cuda11.8_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ dependencies:
####### Morpheus Dependencies (keep sorted!) #######
- automake=1.16.5
- benchmark=1.6.1
- boost-cpp=1.74
- boost-cpp=1.82
- cachetools=5.0.0
- ccache>=3.7
- clangdev=14
- clangdev=16
- click >=8
- cmake=3.24
- configargparse=1.5
Expand Down Expand Up @@ -58,7 +58,7 @@ dependencies:
- grpcio
- gtest>=1.13.0
- gxx_linux-64=11.2
- include-what-you-use=0.18
- include-what-you-use=0.20
- ipywidgets
- isort
- jupyter_core>=4.11.2,<5.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,9 @@ function(find_and_configure_SimpleAmqpClient version)
# Needed to pick up the generated export.h
target_include_directories(SimpleAmqpClient PUBLIC "${rabbitmq_BINARY_DIR}/include")

# Suppress #warning deprecation messages from rabbitmq
target_compile_options(SimpleAmqpClient PRIVATE -Wno-cpp)
# Suppress #warning deprecation messages from rabbitmq and SimpleAmqpClient
# https://github.com/nv-morpheus/Morpheus/issues/1255
target_compile_options(SimpleAmqpClient PRIVATE -Wno-cpp -DBOOST_DISABLE_PRAGMA_MESSAGE)

endfunction()

Expand Down

0 comments on commit 0772f87

Please sign in to comment.