From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 84BC7138346 for ; Wed, 8 Jan 2020 08:19:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D1E19E08A0; Wed, 8 Jan 2020 08:19:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB918E08A0 for ; Wed, 8 Jan 2020 08:19:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B795D34DEB8 for ; Wed, 8 Jan 2020 08:19:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61CA237 for ; Wed, 8 Jan 2020 08:19:08 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1578471516.2dbd672ae7da4a9a12b8eea686d1f66f339e6d0e.slyfox@gentoo> Subject: [gentoo-commits] proj/gcc-patches:master commit in: 4.9.4/gentoo/ X-VCS-Repository: proj/gcc-patches X-VCS-Files: 4.9.4/gentoo/102_all_ustat-sparc.patch 4.9.4/gentoo/README.history X-VCS-Directories: 4.9.4/gentoo/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 2dbd672ae7da4a9a12b8eea686d1f66f339e6d0e X-VCS-Branch: master Date: Wed, 8 Jan 2020 08:19:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 06580dc5-5ba2-438d-93ea-0b749134b42a X-Archives-Hash: ebe663465cb34b6ea28a1b8a1932fd34 commit: 2dbd672ae7da4a9a12b8eea686d1f66f339e6d0e Author: Sergei Trofimovich gentoo org> AuthorDate: Wed Jan 8 08:18:36 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Wed Jan 8 08:18:36 2020 +0000 URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=2dbd672a 9.4.9: backport ustat size for asan on __sparc__ Signed-off-by: Sergei Trofimovich gentoo.org> 4.9.4/gentoo/102_all_ustat-sparc.patch | 27 +++++++++++++++++++++++++++ 4.9.4/gentoo/README.history | 3 +++ 2 files changed, 30 insertions(+) diff --git a/4.9.4/gentoo/102_all_ustat-sparc.patch b/4.9.4/gentoo/102_all_ustat-sparc.patch new file mode 100644 index 0000000..98cc48b --- /dev/null +++ b/4.9.4/gentoo/102_all_ustat-sparc.patch @@ -0,0 +1,27 @@ +From 27453e962b3fe2f918c5105b2a48ec3e92d4c873 Mon Sep 17 00:00:00 2001 +From: doko +Date: Thu, 31 May 2018 09:57:33 +0000 +Subject: [PATCH] 2018-05-31 Matthias Klose + + PR sanitizer/86012 + * sanitizer_common/sanitizer_platform_limits_posix.cc: Define + SIZEOF_STRUCT_USTAT for 32bit sparc. + + +git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@260990 138bc75d-0d04-0410-961f-82ee72b054a4 +--- + +--- a/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc ++++ b/libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc +@@ -256,7 +256,7 @@ namespace __sanitizer { + || defined(__x86_64__) + #define SIZEOF_STRUCT_USTAT 32 + #elif defined(__arm__) || defined(__i386__) || defined(__mips__) \ +- || defined(__powerpc__) || defined(__s390__) ++ || defined(__powerpc__) || defined(__s390__) || defined(__sparc__) + #define SIZEOF_STRUCT_USTAT 20 + #else + #error Unknown size of struct ustat +-- +2.24.1 + diff --git a/4.9.4/gentoo/README.history b/4.9.4/gentoo/README.history index 0d5fc99..7ed72a8 100644 --- a/4.9.4/gentoo/README.history +++ b/4.9.4/gentoo/README.history @@ -1,3 +1,6 @@ +2 TODO + + 102_all_ustat-sparc.patch + 1.4 1 Jun 2019 + 99_all_remove-lieee.patch + 100_all_avoid-ustat-glibc-2.28.patch