Skip to content
This repository has been archived by the owner on Aug 16, 2023. It is now read-only.

Commit

Permalink
fix folly compile problem
Browse files Browse the repository at this point in the history
Signed-off-by: Yusheng.Ma <[email protected]>
  • Loading branch information
Presburger committed Jul 21, 2023
1 parent f805be2 commit eefa1a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions cmake/libs/libdiskann.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ include_directories(${Boost_INCLUDE_DIR})
find_package(aio REQUIRED)
include_directories(${AIO_INCLUDE})
include_directories(thirdparty/DiskANN/include)

find_package(double-conversion REQUIRED)
include_directories(${double-conversion_INCLUDE_DIRS})

set(DISKANN_SOURCES
thirdparty/DiskANN/src/ann_exception.cpp
thirdparty/DiskANN/src/aux_utils.cpp
Expand Down
3 changes: 2 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ def requirements(self):
self.requires("openssl/1.1.1t")
self.requires("prometheus-cpp/1.1.0")
self.requires("zlib/1.2.12")
self.requires("double-conversion/3.2.1")
self.requires("xz_utils/5.2.5")
self.requires("libunwind/1.5.0")
self.requires("folly/2019.10.21.00")
self.requires("folly/2023.07.12@milvus/dev")
if self.options.with_ut:
self.requires("catch2/3.3.1")
if self.options.with_benchmark:
Expand Down

0 comments on commit eefa1a4

Please sign in to comment.