File: glibc2.34.patch

package info (click to toggle)
nvidia-cuda-toolkit 12.4.1-3
  • links: PTS, VCS
  • area: non-free
  • in suites: forky, sid
  • size: 18,505,836 kB
  • sloc: ansic: 203,477; cpp: 64,769; python: 34,699; javascript: 22,006; xml: 13,410; makefile: 3,085; sh: 2,343; perl: 352
file content (18 lines) | stat: -rw-r--r-- 448 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Rearrange order of #includes to avoid FTBFS with glibc 2.34
Author: Graham Inggs <ginggs@debian.org>
Last-Update: 2021-08-15
Forwarded: not-needed

--- a/cuda-gdb/gdb/cuda/libcudbg.c
+++ b/cuda-gdb/gdb/cuda/libcudbg.c
@@ -32,9 +32,9 @@
 #include "cuda/cuda-version.h"
 
 #include <stdio.h>
-#include <signal.h>
 #include <pthread.h>
 
+#include <signal.h>
 #include "cuda/libcudbg.h"
 #include "cuda/libcudbgipc.h"
 #if TRACE_LIBCUDBG