File: gcc15.patch

package info (click to toggle)
tensorpipe 0.0~git20250815.af0118d-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,124 kB
  • sloc: cpp: 25,889; sh: 377; python: 136; makefile: 20
file content (28 lines) | stat: -rw-r--r-- 654 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Author: Debian Deep Learning Team <debian-ai@lists.debian.org>
Last-Update: 2025-09-13
Description: fix gcc12 ftbfs
Forwarded: not-needed
---
 tensorpipe/common/socket.h | 1 +
 1 file changed, 1 insertion(+)

--- a/tensorpipe/common/socket.h
+++ b/tensorpipe/common/socket.h
@@ -13,6 +13,7 @@
 #include <chrono>
 #include <cstring>
 #include <memory>
+#include <array>
 
 #include <tensorpipe/common/defs.h>
 #include <tensorpipe/common/error.h>
--- a/tensorpipe/common/defs.h
+++ b/tensorpipe/common/defs.h
@@ -12,6 +12,7 @@
 #include <sys/types.h>
 #include <unistd.h>
 
+#include <cstdint>
 #include <cstring>
 #include <ctime>
 #include <functional>