guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 9d80ddabfaba4e8074eca785d577ad8c98ae7a7e
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 00:49:24 2026 +0000

    gnu: faiss: Enable C API.
    
    * gnu/packages/graph.scm (faiss)[arguments]: Add -DFAISS_ENABLE_C_API=ON to
    configure-flags.
    
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/graph.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm
index 6f1dc1088c..f98073da0d 100644
--- a/gnu/packages/graph.scm
+++ b/gnu/packages/graph.scm
@@ -13,6 +13,7 @@
 ;;; Copyright © 2023 David Elsing <[email protected]>
 ;;; Copyright © 2025 Mark Walker <[email protected]>
 ;;; Copyright © 2025 Tiago de Paula Peixoto <[email protected]>
+;;; Copyright © 2026 Arun Isaac <[email protected]>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -557,7 +558,8 @@ intuitive way.")
     (build-system cmake-build-system)
     (arguments
      (list #:configure-flags
-           #~'("-DFAISS_ENABLE_GPU=OFF"     ; thanks, but no thanks, CUDA.
+           #~'("-DFAISS_ENABLE_C_API=ON"
+               "-DFAISS_ENABLE_GPU=OFF"     ; thanks, but no thanks, CUDA.
                "-DFAISS_ENABLE_PYTHON=OFF")))
     (inputs
      (list openblas))

Reply via email to