GNU bug report logs -
#65547
[PATCH] daemon: Fix build with GCC13
Previous Next
Reported by: soeren <at> soeren-tempel.net
Date: Sat, 26 Aug 2023 07:02:01 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
[Message part 1 (text/plain, inline)]
Your message dated Sat, 09 Sep 2023 22:31:32 +0200
with message-id <87il8jw0kb.fsf <at> gnu.org>
and subject line Re: bug#65547: [PATCH] daemon: Fix build with GCC13
has caused the debbugs.gnu.org bug report #65547,
regarding [PATCH] daemon: Fix build with GCC13
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
65547: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=65547
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
From: Sören Tempel <soeren <at> soeren-tempel.net>
The sqlite.hh file uses fixed-width integer types from stdint.h. As
such, it needs to include <cstdint>. Without this include, the file
doesn't compile successfully with GCC13.
See: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
* nix/libstore/sqlite.hh: include <cstdint>
Signed-off-by: Sören Tempel <soeren <at> soeren-tempel.net>
---
nix/libstore/sqlite.hh | 1 +
1 file changed, 1 insertion(+)
diff --git a/nix/libstore/sqlite.hh b/nix/libstore/sqlite.hh
index 326e4a4855..6cadba6849 100644
--- a/nix/libstore/sqlite.hh
+++ b/nix/libstore/sqlite.hh
@@ -2,6 +2,7 @@
#include <functional>
#include <string>
+#include <cstdint>
#include "types.hh"
[Message part 3 (message/rfc822, inline)]
Hi,
soeren <at> soeren-tempel.net skribis:
> From: Sören Tempel <soeren <at> soeren-tempel.net>
>
> The sqlite.hh file uses fixed-width integer types from stdint.h. As
> such, it needs to include <cstdint>. Without this include, the file
> doesn't compile successfully with GCC13.
>
> See: https://gcc.gnu.org/gcc-13/porting_to.html#header-dep-changes
>
> * nix/libstore/sqlite.hh: include <cstdint>
>
> Signed-off-by: Sören Tempel <soeren <at> soeren-tempel.net>
Pushed as cd469932758bf2bec1ff9c82aeb373e18730d0c4, thanks!
Ludo’.
This bug report was last modified 1 year and 255 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.