libsoup3: update to 3.6.0; fix GTK2/3 app startup
[oi-userland.git] / components / developer / gcc-10 / patches / 1006-libsanitizer-no-proc-task.patch
blob436813175cac5314fd9b2a2379295bbf6ce648b4
1 Solaris (and illumos) have no /proc/%d/task/.
2 https://github.com/llvm/llvm-project/issues/61320
4 --- gcc-releases-gcc-10.4.0/libsanitizer/sanitizer_common/sanitizer_linux.cpp.orig
5 +++ gcc-releases-gcc-10.4.0/libsanitizer/sanitizer_common/sanitizer_linux.cpp
6 @@ -894,7 +894,7 @@
7 #endif
8 #endif // !SANITIZER_SOLARIS
10 -#if !SANITIZER_NETBSD
11 +#if !SANITIZER_NETBSD && !SANITIZER_SOLARIS
12 // ThreadLister implementation.
13 ThreadLister::ThreadLister(pid_t pid) : pid_(pid), buffer_(4096) {
14 char task_directory_path[80];