Skip to content

Commit

Permalink
Merge pull request #4908 from BenPope/update-seastar-coro-warning-fix
Browse files Browse the repository at this point in the history
build: Update seastar to avoid deprecated coroutine warning in clang-14
  • Loading branch information
BenPope committed May 24, 2022
2 parents d5757a9 + d53e9d4 commit 341cb88
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion cmake/oss.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ ExternalProject_Add(fmt

ExternalProject_Add(seastar
GIT_REPOSITORY https://github.com/redpanda-data/seastar.git
GIT_TAG 5531940ecd6fa6e5a30bbce8e0573db6f721d343
GIT_TAG 0fd17f4cb57365c4a340fbb4435fcc903871512a
INSTALL_DIR @REDPANDA_DEPS_INSTALL_DIR@
CMAKE_COMMAND ${CMAKE_COMMAND} -E env ${cmake_build_env} ${CMAKE_COMMAND}
CMAKE_ARGS
Expand Down
4 changes: 0 additions & 4 deletions cmake/v_library.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ include(CMakeParseArguments)
set(V_CXX_STANDARD 20)
set(V_DEFAULT_LINKOPTS)
set(V_DEFAULT_COPTS -Wall -Wextra -Werror -Wno-missing-field-initializers)
# Disable warning for clang++-14 only.
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 14 AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 15)
list(APPEND V_DEFAULT_COPTS -Wno-deprecated-experimental-coroutine)
endif()
set(V_COMMON_INCLUDE_DIRS
"${PROJECT_SOURCE_DIR}/src/v")
# v_cc_library()
Expand Down

0 comments on commit 341cb88

Please sign in to comment.