[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: Use i686-linux bootstrap binaries on x86_64-linux.
From: |
guix-commits |
Subject: |
02/03: gnu: Use i686-linux bootstrap binaries on x86_64-linux. |
Date: |
Thu, 20 Dec 2018 14:37:49 -0500 (EST) |
civodul pushed a commit to branch core-updates
in repository guix.
commit ea8be005d409658dea4f4356e9279784ce0a5a39
Author: Ludovic Courtès <address@hidden>
Date: Thu Dec 20 19:57:28 2018 +0100
gnu: Use i686-linux bootstrap binaries on x86_64-linux.
This saves 4.4 MB on the installed Guix.
* gnu/packages/bootstrap/x86_64-linux: Remove directory.
* gnu/local.mk (bootstrap_x86_64_linuxdir)
(dist_bootstrap_x86_64_linux_DATA): Remove.
* gnu/packages.scm (search-bootstrap-binary): When SYSTEM is
"x86_64-linux", use "i686-linux" instead.
---
gnu/local.mk | 7 -------
gnu/packages.scm | 18 +++++++++++-------
gnu/packages/bootstrap/x86_64-linux/bash | Bin 1425560 -> 0 bytes
gnu/packages/bootstrap/x86_64-linux/mkdir | Bin 792448 -> 0 bytes
gnu/packages/bootstrap/x86_64-linux/tar | Bin 1369912 -> 0 bytes
gnu/packages/bootstrap/x86_64-linux/xz | Bin 927264 -> 0 bytes
6 files changed, 11 insertions(+), 14 deletions(-)
diff --git a/gnu/local.mk b/gnu/local.mk
index 9cf690e..7c970dc 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -1287,18 +1287,11 @@ MISC_DISTRO_FILES = \
%D%/packages/ld-wrapper.in
bootstrapdir = $(guilemoduledir)/%D%/packages/bootstrap
-bootstrap_x86_64_linuxdir = $(bootstrapdir)/x86_64-linux
bootstrap_i686_linuxdir = $(bootstrapdir)/i686-linux
bootstrap_armhf_linuxdir = $(bootstrapdir)/armhf-linux
bootstrap_aarch64_linuxdir = $(bootstrapdir)/aarch64-linux
bootstrap_mips64el_linuxdir = $(bootstrapdir)/mips64el-linux
-dist_bootstrap_x86_64_linux_DATA = \
- %D%/packages/bootstrap/x86_64-linux/bash \
- %D%/packages/bootstrap/x86_64-linux/mkdir \
- %D%/packages/bootstrap/x86_64-linux/tar \
- %D%/packages/bootstrap/x86_64-linux/xz
-
dist_bootstrap_i686_linux_DATA = \
%D%/packages/bootstrap/i686-linux/bash \
%D%/packages/bootstrap/i686-linux/mkdir \
diff --git a/gnu/packages.scm b/gnu/packages.scm
index 5322972..333b18f 100644
--- a/gnu/packages.scm
+++ b/gnu/packages.scm
@@ -102,14 +102,18 @@ FILE-NAME found in %PATCH-PATH."
(define (search-bootstrap-binary file-name system)
"Search the bootstrap binary FILE-NAME for SYSTEM. Raise an error if not
found."
- (or (search-path (%bootstrap-binaries-path)
- (string-append system "/" file-name))
- (raise (condition
- (&message
- (message
- (format #f (G_ "could not find bootstrap binary '~a' \
+ ;; On x86_64 always use the i686 binaries.
+ (let ((system (match system
+ ("x86_64-linux" "i686-linux")
+ (_ system))))
+ (or (search-path (%bootstrap-binaries-path)
+ (string-append system "/" file-name))
+ (raise (condition
+ (&message
+ (message
+ (format #f (G_ "could not find bootstrap binary '~a' \
for system '~a'")
- file-name system)))))))
+ file-name system))))))))
(define %distro-root-directory
;; Absolute file name of the module hierarchy. Since (gnu packages …) might
diff --git a/gnu/packages/bootstrap/x86_64-linux/bash
b/gnu/packages/bootstrap/x86_64-linux/bash
deleted file mode 100755
index b9c410b..0000000
Binary files a/gnu/packages/bootstrap/x86_64-linux/bash and /dev/null differ
diff --git a/gnu/packages/bootstrap/x86_64-linux/mkdir
b/gnu/packages/bootstrap/x86_64-linux/mkdir
deleted file mode 100755
index f8250ae..0000000
Binary files a/gnu/packages/bootstrap/x86_64-linux/mkdir and /dev/null differ
diff --git a/gnu/packages/bootstrap/x86_64-linux/tar
b/gnu/packages/bootstrap/x86_64-linux/tar
deleted file mode 100755
index 90e492f..0000000
Binary files a/gnu/packages/bootstrap/x86_64-linux/tar and /dev/null differ
diff --git a/gnu/packages/bootstrap/x86_64-linux/xz
b/gnu/packages/bootstrap/x86_64-linux/xz
deleted file mode 100755
index 6bfe3c6..0000000
Binary files a/gnu/packages/bootstrap/x86_64-linux/xz and /dev/null differ