[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
22/58: gnu: libssh: Fix [cross-]build with gcc-14 for 32bit.
From: |
guix-commits |
Subject: |
22/58: gnu: libssh: Fix [cross-]build with gcc-14 for 32bit. |
Date: |
Sun, 24 Nov 2024 02:50:37 -0500 (EST) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit bdad779a644ed31a44d72ae7491726ad2229e9c3
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Mon Nov 18 23:48:13 2024 +0100
gnu: libssh: Fix [cross-]build with gcc-14 for 32bit.
* gnu/packages/ssh.scm (libssh)[arguments]: When cross-compiling to a
32bit host, add CFLAGS to #:configure-flags to disable a breaking warning.
Change-Id: Ibab7332af162aed38158a50e9b4fc288b4286922
---
gnu/packages/ssh.scm | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index a29a10e954..1f33259246 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -13,7 +13,7 @@
;;; Copyright © 2018 Manuel Graf <graf@init.at>
;;; Copyright © 2019 Gábor Boskovits <boskovits@gmail.com>
;;; Copyright © 2019, 2020 Mathieu Othacehe <m.othacehe@gmail.com>
-;;; Copyright © 2020, 2023 Janneke Nieuwenhuizen <janneke@gnu.org>
+;;; Copyright © 2020, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020, 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
@@ -156,7 +156,12 @@ file names.
(build-system cmake-build-system)
(outputs '("out" "debug"))
(arguments
- '(#:configure-flags '("-DWITH_GCRYPT=ON")
+ `(#:configure-flags '("-DWITH_GCRYPT=ON"
+ ,@(if (and (%current-target-system)
(target-x86-32?))
+ (list (string-append
+ "-DCMAKE_C_FLAGS=-g -O2"
+ " -Wno-incompatible-pointer-types"))
+ '()))
;; TODO: Add 'CMockery' and '-DWITH_TESTING=ON' for the test suite.
#:tests? #f))
- 46/58: gnu: commencement: libstdc++-boot0-gcc7: Replace by make-libstdc++-boot0., (continued)
- 46/58: gnu: commencement: libstdc++-boot0-gcc7: Replace by make-libstdc++-boot0., guix-commits, 2024/11/24
- 49/58: gnu: bootstrap: %bootstrap-glibc: Also fix libm.so., guix-commits, 2024/11/24
- 32/58: gnu: pciutils: Support the 64bit Hurd., guix-commits, 2024/11/24
- 05/58: gnu: cross-libc: Support cross-building for the 64bit Hurd., guix-commits, 2024/11/24
- 57/58: gnu: commencement: gcc-boot0: Support the 64bit Hurd., guix-commits, 2024/11/24
- 15/58: gnu: flex: Fix [cross-]build with gcc-14., guix-commits, 2024/11/24
- 12/58: gnu: glibc/hurd: Add patches for the 64bit Hurd., guix-commits, 2024/11/24
- 16/58: gnu: libffi: Fix [cross-]build with gcc-14., guix-commits, 2024/11/24
- 18/58: gnu: texinfo-4: Fix [cross-]build with gcc-14 and the 64bit Hurd., guix-commits, 2024/11/24
- 24/58: gnu: cross-base: Update %xgcc to gcc-14, to support the 64bit Hurd., guix-commits, 2024/11/24
- 22/58: gnu: libssh: Fix [cross-]build with gcc-14 for 32bit.,
guix-commits <=
- 21/58: gnu: libedit: Fix [cross-]build with gcc-14 for 32bit., guix-commits, 2024/11/24
- 30/58: gnu: libgpg-error: Support the 64bit Hurd., guix-commits, 2024/11/24
- 36/58: gnu: rumpkernel: Update to f1ffd6405f225336e595a0f99f01095ed7438337., guix-commits, 2024/11/24
- 40/58: gnu: grub: Fix build for the 64bit Hurd., guix-commits, 2024/11/24
- 48/58: gnu: Add gdb-15.2, with support for the 64bit Hurd., guix-commits, 2024/11/24
- 38/58: gnu: hurd: Build fixes for the 64bit Hurd., guix-commits, 2024/11/24
- 51/58: system: examples: Add devel-hurd64.tmpl., guix-commits, 2024/11/24
- 52/58: gnu: Use gcc-14, gcc-toolchain-14 on the 64bit Hurd., guix-commits, 2024/11/24
- 55/58: gnu: bootstrap: %bootstrap-gcc: Also wrap g++ for the 64bit Hurd., guix-commits, 2024/11/24
- 54/58: gnu: hurd: Add refcounts-assert patch., guix-commits, 2024/11/24