gnu: Add static-abseil-cpp.
* gnu/packages/cpp.scm (static-abseil-cpp): New variable. (make-static-abseil-cpp): New procedure. Change-Id: I0b0b17b31461baf1189d7c818a82c99baad253c1
This commit is contained in:
parent
5746d043a6
commit
6797aac408
@ -1254,12 +1254,25 @@ Google's C++ code base.")
|
|||||||
(number->string version))
|
(number->string version))
|
||||||
#$flags))))))))
|
#$flags))))))))
|
||||||
|
|
||||||
|
(define (make-static-abseil-cpp version)
|
||||||
|
(let ((base abseil-cpp))
|
||||||
|
(hidden-package
|
||||||
|
(package/inherit base
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments (package-arguments base)
|
||||||
|
((#:configure-flags flags)
|
||||||
|
#~(cons* "-DCMAKE_POSITION_INDEPENDENT_CODE=ON"
|
||||||
|
(delete "-DBUILD_SHARED_LIBS=ON" #$flags)))))))))
|
||||||
|
|
||||||
(define-public abseil-cpp-cxxstd17
|
(define-public abseil-cpp-cxxstd17
|
||||||
(abseil-cpp-for-c++-standard 17)) ;XXX: the default with GCC 11?
|
(abseil-cpp-for-c++-standard 17)) ;XXX: the default with GCC 11?
|
||||||
|
|
||||||
(define-public abseil-cpp-cxxstd11
|
(define-public abseil-cpp-cxxstd11
|
||||||
(abseil-cpp-for-c++-standard 11))
|
(abseil-cpp-for-c++-standard 11))
|
||||||
|
|
||||||
|
(define-public static-abseil-cpp
|
||||||
|
(make-static-abseil-cpp abseil-cpp))
|
||||||
|
|
||||||
(define-public pegtl
|
(define-public pegtl
|
||||||
(package
|
(package
|
||||||
(name "pegtl")
|
(name "pegtl")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user