guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: range-v3: Don't target the build machine.


From: guix-commits
Subject: branch master updated: gnu: range-v3: Don't target the build machine.
Date: Wed, 23 Feb 2022 09:05:23 -0500

This is an automated email from the git hooks/post-receive script.

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 5b71034fe8 gnu: range-v3: Don't target the build machine.
5b71034fe8 is described below

commit 5b71034fe81c2639bb7a9121146ddc551f6067f9
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Wed Feb 23 15:58:37 2022 +0200

    gnu: range-v3: Don't target the build machine.
    
    * gnu/packages/cpp.scm (range-v3)[arguments]: Add configure-flag to not
    build with '-march=native'.
---
 gnu/packages/cpp.scm | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 1227e705c3..de6b529302 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -25,6 +25,7 @@
 ;;; Copyright © 2021 jgart <jgart@dismail.de>
 ;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
 ;;; Copyright © 2021 Disseminate Dissent <disseminatedissent@protonmail.com>
+;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -171,6 +172,10 @@ development effort.")
        (sha256
         (base32 "18230bg4rq9pmm5f8f65j444jpq56rld4fhmpham8q3vr1c1bdjh"))))
     (build-system cmake-build-system)
+    (arguments
+     (list
+       #:configure-flags
+       #~(list "-DRANGES_NATIVE=OFF")))
     (native-inputs
      (list doxygen gcc-9 perl))
     (inputs



reply via email to

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