guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 2d33ec5eaf7bc9dbb3a93347b49a92173c542872
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 00:50:46 2026 +0000
gnu: faiss: Build shared libraries.
* gnu/packages/graph.scm (faiss)[arguments]: Add -DBUILD_SHARED_LIBS=ON to
configure-flags.
Signed-off-by: jgart <[email protected]>
---
gnu/packages/graph.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm
index f98073da0d..00d45bb0ce 100644
--- a/gnu/packages/graph.scm
+++ b/gnu/packages/graph.scm
@@ -560,7 +560,8 @@ intuitive way.")
(list #:configure-flags
#~'("-DFAISS_ENABLE_C_API=ON"
"-DFAISS_ENABLE_GPU=OFF" ; thanks, but no thanks, CUDA.
- "-DFAISS_ENABLE_PYTHON=OFF")))
+ "-DFAISS_ENABLE_PYTHON=OFF"
+ "-DBUILD_SHARED_LIBS=ON")))
(inputs
(list openblas))
(native-inputs