summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanneke Nieuwenhuizen <janneke@gnu.org>2024-12-05 08:03:10 +0100
committerAndreas Enge <andreas@enge.fr>2025-07-18 20:17:11 +0200
commitdb24ad715ef05e5d534662d8c0156e767f191687 (patch)
treebd89cf830cddae1b9a78bf578865524bc951cd0b
parentea7bf8a3cb2c0df9e26bce5d70ab3239790b0f40 (diff)
gnu: libffi: Update to 3.4.6; fixes build with gcc-14.
* gnu/packages/libffi.scm (libffi): Update to 3.4.6. [arguments]: Remove CFLAGS hack. Change-Id: I1d9ea6094e42d154f6fa17b47106e066b32d9ca2
-rw-r--r--gnu/packages/libffi.scm13
1 files changed, 3 insertions, 10 deletions
diff --git a/gnu/packages/libffi.scm b/gnu/packages/libffi.scm
index 1ebb502056..09ecebaba5 100644
--- a/gnu/packages/libffi.scm
+++ b/gnu/packages/libffi.scm
@@ -50,7 +50,7 @@
(define-public libffi
(package
(name "libffi")
- (version "3.4.4")
+ (version "3.4.6")
(source (origin
(method url-fetch)
(uri
@@ -59,20 +59,13 @@
name "-" version ".tar.gz"))
(sha256
(base32
- "0xpn5mqlbdmqgxgp910ba1qj79axpwr8nh7wklmcz0ls4nnmcv6n"))))
+ "0kjsi51phx1pskjhhwa9y5fxdazzxgrl0m421sjsfqy84ggskpmh"))))
(build-system gnu-build-system)
(arguments
`(;; Prevent the build system from passing -march and -mtune to the
;; compiler. See "ax_cc_maxopt.m4" and "ax_gcc_archflag.m4".
#:configure-flags '("--enable-portable-binary"
- "--without-gcc-arch"
- ,@(if (or (target-hurd64?)
- (%current-target-system)
- (and (target-x86-64?) (target-linux?)))
- (list (string-append
- "CFLAGS=-g -O2"
- " -Wno-implicit-function-declaration"))
- '()))))
+ "--without-gcc-arch")))
(outputs '("out" "debug"))
(synopsis "Foreign function call interface library")
(description