guix-commits
[Top][All Lists]
Advanced

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

02/04: gnu: re2: Set CXX for cross-compilation.


From: Ludovic Courtès
Subject: 02/04: gnu: re2: Set CXX for cross-compilation.
Date: Sat, 11 Mar 2017 16:23:43 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 612af7ff66e0d5018bb696ff0140805bc8b5194e
Author: Sergei Trofimovich <address@hidden>
Date:   Mon Mar 6 21:54:19 2017 +0000

    gnu: re2: Set CXX for cross-compilation.
    
    * gnu/packages/regex.scm (re2)[arguments]: Specify CXX in #:make-flags.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/regex.scm | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/regex.scm b/gnu/packages/regex.scm
index 11f4716..f55faaf 100644
--- a/gnu/packages/regex.scm
+++ b/gnu/packages/regex.scm
@@ -22,7 +22,8 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (guix packages)
   #:use-module (guix download)
-  #:use-module (guix build-system gnu))
+  #:use-module (guix build-system gnu)
+  #:use-module (guix utils))
 
 (define-public re2
    (package
@@ -42,7 +43,16 @@
      (arguments
       `(#:test-target "test"
         ;; There is no configure step, but the Makefile respects a prefix.
-        #:make-flags (list (string-append "prefix=" %output))
+        ;; As ./configure does not know anything about the target CXX
+        ;; we need to specify TARGET-g++ explicitly.
+        #:make-flags (list (string-append "prefix=" %output)
+                           (string-append
+                             "CXX=" ,(string-append
+                                       (if (%current-target-system)
+                                           (string-append
+                                             (%current-target-system) "-")
+                                           "")
+                                       "g++")))
         #:phases
         (modify-phases %standard-phases
           (delete 'configure)



reply via email to

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