Skip to content

Commit

Permalink
Fix absl linking issues with protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
IvoDD committed Dec 4, 2024
1 parent b0f1cdf commit 719fdb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build_with_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ jobs:
env:
ARCTICDB_USING_CONDA: 1
ARCTICDB_BUILD_CPP_TESTS: 1
ARCTICDB_PROTOC_VERS: "4"

- name: Build C++ Tests
shell: bash -l {0}
Expand Down Expand Up @@ -143,7 +142,6 @@ jobs:
env:
ARCTICDB_USING_CONDA: 1
ARCTICDB_BUILD_CPP_TESTS: 1
ARCTICDB_PROTOC_VERS: "4"

- name: Build C++ Tests
shell: bash -l {0}
Expand Down
4 changes: 3 additions & 1 deletion cpp/arcticdb/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ if(NOT WIN32 AND ${SSL_LINK})
find_package(Kerberos REQUIRED)
endif()

find_package(Protobuf REQUIRED)
# Required to allow protobuf to get the correct version of absl:
# https://github.com/protocolbuffers/protobuf/issues/12292#issuecomment-1529680040
find_package(protobuf REQUIRED CONFIG)
find_package(mongocxx REQUIRED)
find_package(bsoncxx REQUIRED)
find_package(xxHash REQUIRED)
Expand Down

0 comments on commit 719fdb0

Please sign in to comment.