[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch wip-ppc64le updated: gnu: gcc-boot0: Enable 128-bit long double f
From: |
guix-commits |
Subject: |
branch wip-ppc64le updated: gnu: gcc-boot0: Enable 128-bit long double for POWER9. |
Date: |
Sun, 31 Jan 2021 22:32:21 -0500 |
This is an automated email from the git hooks/post-receive script.
marusich pushed a commit to branch wip-ppc64le
in repository guix.
The following commit(s) were added to refs/heads/wip-ppc64le by this push:
new c5498d5 gnu: gcc-boot0: Enable 128-bit long double for POWER9.
c5498d5 is described below
commit c5498d5925515779317d2886a830e1d33bdbc040
Author: Chris Marusich <cmmarusich@gmail.com>
AuthorDate: Sun Jan 31 18:45:24 2021 -0800
gnu: gcc-boot0: Enable 128-bit long double for POWER9.
* gnu/packages/commencement.scm (gcc-boot0) [#:configure-flags]: Add
--with-long-double-128 when the boot triplet is
"powerpc64le-guix-linux-gnu",
instead of "powerpc64le-linux-gnu", which is incorrect. The actual triplet
used during bootstrapping is "powerpc64le-guix-linux-gnu".
---
gnu/packages/commencement.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 432910d..5450f1e 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -9,6 +9,7 @@
;;; Copyright © 2019, 2020 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2020 Timothy Sample <samplet@ngyro.com>
;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org>
+;;; Copyright © 2021 Chris Marusich <cmmarusich@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2818,7 +2819,8 @@ exec " gcc "/bin/" program
"--disable-shared"
"--enable-languages=c,c++"
- ,@(if (equal? "powerpc64le-linux-gnu"
(boot-triplet))
+ ;; boot-triplet inserts "guix" in the triplet.
+ ,@(if (equal? "powerpc64le-guix-linux-gnu"
(boot-triplet))
;; On POWER9 (little endian) glibc needs the
;; 128-bit long double type.
'("--with-long-double-128")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch wip-ppc64le updated: gnu: gcc-boot0: Enable 128-bit long double for POWER9.,
guix-commits <=