Skip to content
Draft
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
6 changes: 5 additions & 1 deletion cmake/svs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,11 @@ if(USE_SVS)
endif()
else()
if (GLIBC_2_28_FOUND)
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.0.10/svs-shared-library-0.0.10-reduced.tar.gz" CACHE STRING "SVS URL")
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "14.0")
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v1.0.0-dev/svs-shared-library-1.0.0-NIGHTLY-20251112-782-reduced-gcc14.tar.gz" CACHE STRING "SVS URL")
else()
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.0.10/svs-shared-library-0.0.10-reduced.tar.gz" CACHE STRING "SVS URL")
endif()
elseif(GLIBC_2_26_FOUND)
set(SVS_URL "https://github.com/intel/ScalableVectorSearch/releases/download/v0.0.10/svs-shared-library-0.0.10-reduced-glibc2_26.tar.gz" CACHE STRING "SVS URL")
else()
Expand Down