guix-commits
[Top][All Lists]
Advanced

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

01/01: gnu: boost: Add $libdir to the RUNPATH of libraries.


From: Ludovic Courtès
Subject: 01/01: gnu: boost: Add $libdir to the RUNPATH of libraries.
Date: Fri, 10 Apr 2015 22:12:54 +0000

civodul pushed a commit to branch core-updates
in repository guix.

commit 53a53be91b7daf4d6b23bd3b31ed0a83baf40c73
Author: Ludovic Courtès <address@hidden>
Date:   Fri Apr 10 23:37:36 2015 +0200

    gnu: boost: Add $libdir to the RUNPATH of libraries.
    
    * gnu/packages/boost.scm (boost)[arguments]: Add -Wl,-rpath=... to
      BUILD-FLAGS.  Remove 'check' phase and use #:tests? #f instead.
---
 gnu/packages/boost.scm |   23 +++++++++++++----------
 1 files changed, 13 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/boost.scm b/gnu/packages/boost.scm
index 24fc53d..10c88f3 100644
--- a/gnu/packages/boost.scm
+++ b/gnu/packages/boost.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2014 John Darrington <address@hidden>
 ;;; Copyright © 2014, 2015 Mark H Weaver <address@hidden>
 ;;; Copyright © 2015 Andreas Enge <address@hidden>
+;;; Copyright © 2015 Ludovic Courtès <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -51,6 +52,11 @@
     (arguments
      (let ((build-flags
             `("threading=multi" "link=shared"
+
+              ;; Set the RUNPATH to $libdir so that the libs find each other.
+              (string-append "linkflags=-Wl,-rpath="
+                             (assoc-ref outputs "out") "/lib")
+
               ;; Boost's 'context' library is not yet supported on mips64, so
               ;; we disable it.  The 'coroutine' library depends on 'context',
               ;; so we disable that too.
@@ -58,7 +64,8 @@
                                                  (%current-system)))
                     '("--without-context" "--without-coroutine")
                     '()))))
-       `(#:phases
+       `(#:tests? #f
+         #:phases
          (alist-replace
           'configure
           (lambda* (#:key outputs #:allow-other-keys)
@@ -79,18 +86,14 @@
                               "--with-toolset=gcc"))))
           (alist-replace
            'build
-           (lambda _
+           (lambda* (#:key outputs #:allow-other-keys)
              (zero? (system* "./b2" ,@build-flags)))
 
            (alist-replace
-            'check
-            (lambda _ #t)
-
-            (alist-replace
-             'install
-             (lambda _
-               (zero? (system* "./b2" "install" ,@build-flags)))
-             %standard-phases)))))))
+            'install
+            (lambda* (#:key outputs #:allow-other-keys)
+              (zero? (system* "./b2" "install" ,@build-flags)))
+            %standard-phases))))))
 
     (home-page "http://boost.org";)
     (synopsis "Peer-reviewed portable C++ source libraries")



reply via email to

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