From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2153) id E64F938715B6; Tue, 13 Dec 2022 09:33:56 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org E64F938715B6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670924036; bh=t/sW1zzjXXa8k62759+HLO8TDTAPe7minQ5BZE2pjkg=; h=From:To:Subject:Date:From; b=kIqRXPznHgnyAs/HOfg/OFt7iDCq2MUdGvknw71dJ+sLskScnd3SxIETAWrFl7T3G hqwIcuMMhUD8cHI/qQYGPRcWEL6udnfUtMfsx6o0p6a1qcgRj+3BuLodkfqzTvDeUv gnZF/Qh4URjkh2l2EkAOBei7oHTa4nZYmLPs+xnk= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Jakub Jelinek To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-4629] libsanitizer: Fix up libbacktrace build after r13-4547 [PR108072] X-Act-Checkin: gcc X-Git-Author: Jakub Jelinek X-Git-Refname: refs/heads/master X-Git-Oldrev: 8ad0a7df8950cd07fb3b92b3da8007e5800a255a X-Git-Newrev: 0a43f7b1a73c8e3b9cefffe430274d0a3d6d3291 Message-Id: <20221213093356.E64F938715B6@sourceware.org> Date: Tue, 13 Dec 2022 09:33:56 +0000 (GMT) List-Id: https://gcc.gnu.org/g:0a43f7b1a73c8e3b9cefffe430274d0a3d6d3291 commit r13-4629-g0a43f7b1a73c8e3b9cefffe430274d0a3d6d3291 Author: Jakub Jelinek Date: Tue Dec 13 10:30:36 2022 +0100 libsanitizer: Fix up libbacktrace build after r13-4547 [PR108072] The r13-4547 commit added new non-static function to libbacktrace: backtrace_uncompress_zstd but for the libsanitizer use we need to rename it, so that it is in __asan_* namespace and doesn't clash with other copies of libbacktrace. 2022-12-13 Jakub Jelinek libsanitizer/ PR sanitizer/108072 * libbacktrace/backtrace-rename.h (backtrace_uncompress_zstd): Define. Diff: --- libsanitizer/libbacktrace/backtrace-rename.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libsanitizer/libbacktrace/backtrace-rename.h b/libsanitizer/libbacktrace/backtrace-rename.h index 2ec37a3307f..a31917c9af5 100644 --- a/libsanitizer/libbacktrace/backtrace-rename.h +++ b/libsanitizer/libbacktrace/backtrace-rename.h @@ -13,6 +13,7 @@ #define backtrace_syminfo __asan_backtrace_syminfo #define backtrace_uncompress_lzma __asan_backtrace_uncompress_lzma #define backtrace_uncompress_zdebug __asan_backtrace_uncompress_zdebug +#define backtrace_uncompress_zstd __asan_backtrace_uncompress_zstd #define backtrace_vector_finish __asan_backtrace_vector_finish #define backtrace_vector_grow __asan_backtrace_vector_grow #define backtrace_vector_release __asan_backtrace_vector_release