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

build: Update seastar to avoid deprecated coroutine warning in clang-14 #4908

Merged
merged 2 commits into from
May 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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