
The following patch is result of libsanitizer/merge.sh from c425db2eb558c263 (yesterday evening). Bootstrapped/regtested on x86_64-linux and i686-linux (together with the follow-up 3 patches I'm about to post). BTW, seems upstream has added riscv64 support for I think lsan/tsan, so if anyone is willing to try it there, it would be a matter of copying e.g. the s390*-*-linux* libsanitizer/configure.tgt entry to riscv64-*-linux* with the obvious s/s390x/riscv64/ change in it.
16 lines
910 B
PHP
16 lines
910 B
PHP
//===-- sanitizer_common_interface_posix.inc ------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
// Sanitizer Common interface list only available for Posix systems.
|
|
//===----------------------------------------------------------------------===//
|
|
INTERFACE_WEAK_FUNCTION(__sanitizer_symbolize_code)
|
|
INTERFACE_WEAK_FUNCTION(__sanitizer_symbolize_data)
|
|
INTERFACE_WEAK_FUNCTION(__sanitizer_symbolize_frame)
|
|
INTERFACE_WEAK_FUNCTION(__sanitizer_symbolize_demangle)
|
|
INTERFACE_WEAK_FUNCTION(__sanitizer_symbolize_flush)
|
|
INTERFACE_WEAK_FUNCTION(__sanitizer_symbolize_set_demangle)
|
|
INTERFACE_WEAK_FUNCTION(__sanitizer_symbolize_set_inline_frames)
|