Skip to content

Commit

Permalink
cmake/seastar: disable deprecated declarations
Browse files Browse the repository at this point in the history
This mirrors the upstream commit: scylladb/seastar@6c450bf

Needed to build on ubuntu noble and clang-18

Signed-off-by: Tyler Rockwood <rockwood@redpanda.com>
  • Loading branch information
rockwotj committed Apr 30, 2024
1 parent 8c735f1 commit 494e5a2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmake/dependencies.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@ fetch_dep(fmt
# the add_subdirectory method of using Seastar.
set(Seastar_TESTING ON CACHE BOOL "" FORCE)
set(Seastar_API_LEVEL 6 CACHE STRING "" FORCE)
set(Seastar_CXX_FLAGS -Wno-error)
set(Seastar_CXX_FLAGS
-Wno-error
-Wdeprecated-declarations
-Wno-error=deprecated-declarations
)
fetch_dep(seastar
REPO https://github.com/redpanda-data/seastar.git
TAG v24.2.x
Expand Down

0 comments on commit 494e5a2

Please sign in to comment.