[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: gcc-boot0: Use 128-bit long-double on powerpc-linux.
From: |
guix-commits |
Subject: |
03/09: gnu: gcc-boot0: Use 128-bit long-double on powerpc-linux. |
Date: |
Sun, 16 May 2021 03:46:25 -0400 (EDT) |
efraim pushed a commit to branch wip-ppc
in repository guix.
commit d110dfd57fc0f2b713ec7b24a00a4d5997081ae6
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Apr 18 12:51:34 2021 +0300
gnu: gcc-boot0: Use 128-bit long-double on powerpc-linux.
* gnu/packages/commencement.scm (gcc-boot0)[arguments]: Adjust
configure-flag to also use '--with-long-double-128' on powerpc-linux.
---
gnu/packages/commencement.scm | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm
index 8da13ee..f08227b 100644
--- a/gnu/packages/commencement.scm
+++ b/gnu/packages/commencement.scm
@@ -2732,12 +2732,12 @@ exec " gcc "/bin/" program
"--disable-shared"
"--enable-languages=c,c++"
- ;; 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")
- '())
+ ;; On POWER9 (little endian) glibc needs the 128-bit
+ ;; long double type. 32-bit PPC is affected by the
+ ;; changes applied for powerpc64le.
+ ,@(if (string-prefix? "powerpc" (boot-triplet))
+ '("--with-long-double-128")
+ '())
;; libstdc++ cannot be built at this stage
;; ("Link tests are not allowed after
- branch wip-ppc created (now 5e00d44), guix-commits, 2021/05/16
- 04/09: gnu: binutils: Fix bug in test suite in libiberty., guix-commits, 2021/05/16
- 01/09: gnu: bootstrap: Add support for powerpc-linux., guix-commits, 2021/05/16
- 02/09: gnu: guile-3.0: Fix building on powerpc-linux., guix-commits, 2021/05/16
- 09/09: gnu: nss: Skip tests on powerpc-linux., guix-commits, 2021/05/16
- 03/09: gnu: gcc-boot0: Use 128-bit long-double on powerpc-linux.,
guix-commits <=
- 08/09: gnu: mercurial: Skip tests on powerpc-linux., guix-commits, 2021/05/16
- 06/09: gnu: Add mac-fdisk., guix-commits, 2021/05/16
- 05/09: gnu: mesa: Add support for powerpc-linux., guix-commits, 2021/05/16
- 07/09: build: qemu-command: Add support for powerpc., guix-commits, 2021/05/16