gnu: Remove flatbuffers-next-shared.
* gnu/packages/serialization.scm (flatbuffers-next-shared): Delete variable. * gnu/packages/machine-learning.scm (tensorflow-lite)[arguments]: Use flatbuffers-next instead of flatbuffers-next-shared.
This commit is contained in:
parent
c880c50019
commit
207174b69e
2 changed files with 3 additions and 13 deletions
|
@ -27,6 +27,7 @@
|
||||||
;;; Copyright © 2024 David Pflug <david@pflug.io>
|
;;; Copyright © 2024 David Pflug <david@pflug.io>
|
||||||
;;; Copyright © 2024 Timothee Mathieu <timothee.mathieu@inria.fr>
|
;;; Copyright © 2024 Timothee Mathieu <timothee.mathieu@inria.fr>
|
||||||
;;; Copyright © 2024 Spencer King <spencer.king@geneoscopy.com>
|
;;; Copyright © 2024 Spencer King <spencer.king@geneoscopy.com>
|
||||||
|
;;; Copyright © 2024 David Elsing <david.elsing@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -3387,7 +3388,7 @@ advanced research.")
|
||||||
(string-append "-DEigen3_DIR=" #$(this-package-input "eigen")
|
(string-append "-DEigen3_DIR=" #$(this-package-input "eigen")
|
||||||
"/share/eigen3/cmake")
|
"/share/eigen3/cmake")
|
||||||
(string-append "-DFlatBuffers_DIR="
|
(string-append "-DFlatBuffers_DIR="
|
||||||
#$(this-package-input "flatbuffers-shared")
|
#$(this-package-input "flatbuffers")
|
||||||
"/lib/cmake/flatbuffers")
|
"/lib/cmake/flatbuffers")
|
||||||
(string-append "-DNEON_2_SSE_DIR=" #$(this-package-input "neon2sse")
|
(string-append "-DNEON_2_SSE_DIR=" #$(this-package-input "neon2sse")
|
||||||
"/lib/cmake/NEON_2_SSE")
|
"/lib/cmake/NEON_2_SSE")
|
||||||
|
@ -3474,7 +3475,7 @@ advanced research.")
|
||||||
("cpuinfo" ,cpuinfo)
|
("cpuinfo" ,cpuinfo)
|
||||||
("eigen" ,eigen)
|
("eigen" ,eigen)
|
||||||
("fp16" ,fp16)
|
("fp16" ,fp16)
|
||||||
("flatbuffers-shared" ,flatbuffers-next-shared)
|
("flatbuffers" ,flatbuffers-next)
|
||||||
("gemmlowp" ,gemmlowp)
|
("gemmlowp" ,gemmlowp)
|
||||||
("mesa-headers" ,mesa-headers)
|
("mesa-headers" ,mesa-headers)
|
||||||
("neon2sse" ,neon2sse)
|
("neon2sse" ,neon2sse)
|
||||||
|
|
|
@ -913,17 +913,6 @@ game development and other performance-critical applications.")
|
||||||
(base32
|
(base32
|
||||||
"1z3a6l8g2y53i5xzraswfs2i0i3kk52zv7nzc2q3fgisbyiri3pz"))))))
|
"1z3a6l8g2y53i5xzraswfs2i0i3kk52zv7nzc2q3fgisbyiri3pz"))))))
|
||||||
|
|
||||||
(define-public flatbuffers-next-shared
|
|
||||||
(package
|
|
||||||
(inherit flatbuffers-next)
|
|
||||||
(name "flatbuffers-shared")
|
|
||||||
(version "23.1.21")
|
|
||||||
(arguments
|
|
||||||
(substitute-keyword-arguments (package-arguments flatbuffers-next)
|
|
||||||
((#:configure-flags flags)
|
|
||||||
;; Compile with -fPIC, needed for shared lib.
|
|
||||||
#~(cons "-DFLATBUFFERS_CXX_FLAGS=-fPIC" #$flags))))))
|
|
||||||
|
|
||||||
(define-public python-flatbuffers
|
(define-public python-flatbuffers
|
||||||
(package
|
(package
|
||||||
(name "python-flatbuffers")
|
(name "python-flatbuffers")
|
||||||
|
|
Reference in a new issue