guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: libb2: Only check for CPU optimisations on Intel architectur


From: Efraim Flashner
Subject: 02/02: gnu: libb2: Only check for CPU optimisations on Intel architectures.
Date: Tue, 9 Jan 2018 16:17:20 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit fa58a0a62e28db8f351222ee238ebb929b2b3bdb
Author: Efraim Flashner <address@hidden>
Date:   Tue Jan 9 23:11:05 2018 +0200

    gnu: libb2: Only check for CPU optimisations on Intel architectures.
    
    * gnu/packages/crypto.scm (libb2)[arguments]: Only pass the
    configure-flag '--enable-fat' on i686 or x86_64.
---
 gnu/packages/crypto.scm | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index 4ecdaa8..e616c92 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2016, 2017 ng0 <address@hidden>
 ;;; Copyright © 2016, 2017 Eric Bavier <address@hidden>
 ;;; Copyright © 2017 Pierre Langlois <address@hidden>
+;;; Copyright © 2018 Efraim Flashner <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -56,7 +57,9 @@
   #:use-module (guix git-download)
   #:use-module (guix build-system cmake)
   #:use-module (guix build-system gnu)
-  #:use-module (guix build-system perl))
+  #:use-module (guix build-system perl)
+  #:use-module (srfi srfi-1)
+  #:use-module (srfi srfi-26))
 
 (define-public libsodium
   (package
@@ -634,8 +637,14 @@ data on your platform, so the seed itself will be as 
random as possible.
          ("libtool" ,libtool)))
       (arguments
        `(#:configure-flags
-         (list "--enable-fat"           ; detect optimisations at run time...
-               "--disable-native")      ; ...not build time
+         (list
+           ,@(if (any (cute string-prefix? <> (or (%current-system)
+                                                  (%current-target-system)))
+                      '("x86_64" "i686"))
+               ;; fat only checks for Intel optimisations
+               '("--enable-fat")
+               '())
+           "--disable-native") ; don't optimise at build time.
          #:phases
          (modify-phases %standard-phases
            (add-after 'unpack 'bootstrap



reply via email to

[Prev in Thread] Current Thread [Next in Thread]