nckx pushed a commit to branch master
in repository guix.
commit 9c1324a4164eb7bf3a912b185b2ab9c86447e005
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Mon Jun 29 15:31:07 2020 +0200
gnu: xxhash: Cross-compile.
* gnu/packages/digest.scm (xxhash)[arguments]: Use CC-FOR-TARGET.
---
gnu/packages/digest.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/digest.scm b/gnu/packages/digest.scm
index 1a9d58c..53cf261 100644
--- a/gnu/packages/digest.scm
+++ b/gnu/packages/digest.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <[email protected]>
+;;; Copyright © 2017, 2019, 2020 Tobias Geerinckx-Rice <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -20,7 +20,8 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix git-download)
- #:use-module (guix build-system gnu))
+ #:use-module (guix build-system gnu)
+ #:use-module (guix utils))
(define-public xxhash
(package
@@ -38,7 +39,7 @@
(build-system gnu-build-system)
(arguments
`(#:make-flags
- (list "CC=gcc"
+ (list ,(string-append "CC=" (cc-for-target))
"XXH_FORCE_MEMORY_ACCESS=1" ; improved performance with GCC
(string-append "prefix=" (assoc-ref %outputs "out")))
#:phases