GNU bug report logs - #74288
[PATCH] tests: Fix gremlin.scm for GCC 14

Previous Next

Package: guix-patches;

Reported by: Ting-Wei Lan <lantw44 <at> gmail.com>

Date: Sun, 10 Nov 2024 03:38:02 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: help-debbugs <at> gnu.org (GNU bug Tracking System)
To: Ting-Wei Lan <lantw44 <at> gmail.com>
Subject: bug#74288: closed (Re: [bug#74288] [PATCH] tests: Fix gremlin.scm
 for GCC 14)
Date: Tue, 12 Nov 2024 22:44:02 +0000
[Message part 1 (text/plain, inline)]
Your bug report

#74288: [PATCH] tests: Fix gremlin.scm for GCC 14

which was filed against the guix-patches package, has been closed.

The explanation is attached below, along with your original report.
If you require more details, please reply to 74288 <at> debbugs.gnu.org.

-- 
74288: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=74288
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Ludovic Courtès <ludo <at> gnu.org>
To: Ting-Wei Lan <lantw44 <at> gmail.com>
Cc: 74288-done <at> debbugs.gnu.org
Subject: Re: [bug#74288] [PATCH] tests: Fix gremlin.scm for GCC 14
Date: Tue, 12 Nov 2024 23:40:46 +0100
Ting-Wei Lan <lantw44 <at> gmail.com> skribis:

> * tests/gremlin.scm: Include stdio.h before using puts since GCC 14 no
> longer allows implicit declarations.

Applied, thanks!

[Message part 3 (message/rfc822, inline)]
From: Ting-Wei Lan <lantw44 <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Ting-Wei Lan <lantw44 <at> gmail.com>
Subject: [PATCH] tests: Fix gremlin.scm for GCC 14
Date: Sun, 10 Nov 2024 11:31:57 +0800
* tests/gremlin.scm: Include stdio.h before using puts since GCC 14 no
longer allows implicit declarations.
---
 tests/gremlin.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tests/gremlin.scm b/tests/gremlin.scm
index 3dbb8d3643..280b1d8819 100644
--- a/tests/gremlin.scm
+++ b/tests/gremlin.scm
@@ -136,6 +136,7 @@ (define ground-truth
      (with-directory-excursion directory
        (call-with-output-file "t.c"
          (lambda (port)
+           (display "#include <stdio.h>\n" port)
            (display "int main () { puts(\"hello\"); }" port)))
        (invoke c-compiler "t.c"
                "-Wl,--enable-new-dtags" "-Wl,-rpath=/foo" "-Wl,-rpath=/bar")
@@ -164,6 +165,7 @@ (define ground-truth
      (with-directory-excursion directory
        (call-with-output-file "t.c"
          (lambda (port)
+           (display "#include <stdio.h>\n" port)
            (display "int main () { puts(\"hello\"); }" port)))
 
        (invoke c-compiler "t.c"
-- 
2.47.0




This bug report was last modified 195 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.