This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 30cc04367f gnu: tcc: Fix build with gcc-14.
30cc04367f is described below
commit 30cc04367fc57cd43e97e42b984d083f1b4fb041
Author: Janneke Nieuwenhuizen <[email protected]>
AuthorDate: Sat Jul 19 11:57:42 2025 +0200
gnu: tcc: Fix build with gcc-14.
Reported by <andreas-e> (Andreas Enge <[email protected]>) via IRC.
* gnu/packages/c.scm (tcc)[arguments]: Add "--extra-cflags" to
#:configure-flags
to relax gcc-14's strictness.
Change-Id: Icefe269036b97fb59c49f8c881964c15a7171ab1
---
gnu/packages/c.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 1b097b0552..06b333ef32 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -6,7 +6,7 @@
;;; Copyright © 2019, 2020, 2022-2024 Efraim Flashner <[email protected]>
;;; Copyright © 2019, 2021 Guillaume Le Vaillant <[email protected]>
;;; Copyright © 2019 Andreas Enge <[email protected]>
-;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <[email protected]>
+;;; Copyright © 2020, 2025 Janneke Nieuwenhuizen <[email protected]>
;;; Copyright © 2020, 2021 Marius Bakke <[email protected]>
;;; Copyright © 2020 Katherine Cox-Buday <[email protected]>
;;; Copyright © 2020, 2022, 2023 Maxim Cournoyer <[email protected]>
@@ -259,7 +259,8 @@ hashes and fingerprints.")
(build-system gnu-build-system)
(native-inputs (list perl texinfo))
(arguments
- `(#:configure-flags (list (string-append "--elfinterp="
+ `(#:configure-flags (list "--extra-cflags=-Wno-error=implicit-int"
+ (string-append "--elfinterp="
(assoc-ref %build-inputs
"libc")
,(glibc-dynamic-linker))