guix-commits
[Top][All Lists]
Advanced

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

25/63: gnu: commencement: Add binutils-mesboot1.


From: guix-commits
Subject: 25/63: gnu: commencement: Add binutils-mesboot1.
Date: Thu, 13 Feb 2020 10:11:20 -0500 (EST)

janneke pushed a commit to branch wip-bootstrap
in repository guix.

commit 47e85f649815b882ba4f50ea1e19b13d3b212b3e
Author: Jan Nieuwenhuizen <address@hidden>
AuthorDate: Fri Nov 22 20:37:30 2019 +0100

    gnu: commencement: Add binutils-mesboot1.
    
    * gnu/packages/commencement.scm (binutils-mesboot1): New variable.
---
 gnu/packages/commencement.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 5b84e47..d19eaa2 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -1730,6 +1730,32 @@ ac_cv_c_float_format='IEEE (little-endian)'
                (symlink "grep" (string-append bin "/fgrep"))
                #t))))))))
 
+(define binutils-mesboot1
+  (package
+    (inherit binutils-mesboot0)
+    (name "binutils-mesboot1")
+    (native-inputs (%boot-mesboot0-inputs))
+    (arguments
+     (substitute-keyword-arguments (package-arguments binutils-mesboot0)
+       ((#:configure-flags configure-flags)
+        '(let ((out (assoc-ref %outputs "out")))
+           `("--disable-nls"
+             "--disable-shared"
+             "--disable-werror"
+             "--build=i686-unknown-linux-gnu"
+             "--host=i686-unknown-linux-gnu"
+             "--with-sysroot=/"
+             ,(string-append "--prefix=" out))))
+       ((#:phases phases)
+        `(modify-phases ,phases
+           (replace 'setenv
+             (lambda _
+               (let* ((out (assoc-ref %outputs "out"))
+                      (bash (assoc-ref %build-inputs "bash"))
+                      (shell (string-append bash "/bin/bash")))
+                 (setenv "CONFIG_SHELL" shell)
+                 #t)))))))))
+
 (define binutils-mesboot
   (package
     (inherit binutils-mesboot0)



reply via email to

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