Projet_SETI_RISC-V/riscv-gnu-toolchain/gcc/libsanitizer
higepi 6c0debd407 projet 2023-03-06 14:48:14 +01:00
..
asan projet 2023-03-06 14:48:14 +01:00
builtins projet 2023-03-06 14:48:14 +01:00
hwasan projet 2023-03-06 14:48:14 +01:00
include projet 2023-03-06 14:48:14 +01:00
interception projet 2023-03-06 14:48:14 +01:00
libbacktrace projet 2023-03-06 14:48:14 +01:00
lsan projet 2023-03-06 14:48:14 +01:00
sanitizer_common projet 2023-03-06 14:48:14 +01:00
tsan projet 2023-03-06 14:48:14 +01:00
ubsan projet 2023-03-06 14:48:14 +01:00
ChangeLog projet 2023-03-06 14:48:14 +01:00
HOWTO_MERGE projet 2023-03-06 14:48:14 +01:00
LICENSE.TXT projet 2023-03-06 14:48:14 +01:00
LOCAL_PATCHES projet 2023-03-06 14:48:14 +01:00
MERGE projet 2023-03-06 14:48:14 +01:00
Makefile.am projet 2023-03-06 14:48:14 +01:00
Makefile.in projet 2023-03-06 14:48:14 +01:00
README.gcc projet 2023-03-06 14:48:14 +01:00
acinclude.m4 projet 2023-03-06 14:48:14 +01:00
aclocal.m4 projet 2023-03-06 14:48:14 +01:00
config.h.in projet 2023-03-06 14:48:14 +01:00
configure projet 2023-03-06 14:48:14 +01:00
configure.ac projet 2023-03-06 14:48:14 +01:00
configure.tgt projet 2023-03-06 14:48:14 +01:00
libsanitizer.spec.in projet 2023-03-06 14:48:14 +01:00
merge.sh projet 2023-03-06 14:48:14 +01:00

README.gcc

AddressSanitizer and ThreadSanitizer (https://github.com/google/sanitizers) are
projects initially developed by Google Inc.

Both tools consist of a compiler module and a run-time library.
The sources of the run-time library for these projects are hosted at
https://github.com/llvm/llvm-project in the following directories:
  compiler-rt/include/sanitizer
  compiler-rt/lib/sanitizer_common
  compiler-rt/lib/interception
  compiler-rt/lib/asan
  compiler-rt/lib/tsan
  compiler-rt/lib/lsan
  compiler-rt/lib/ubsan
  compiler-rt/lib/hwasan

Trivial and urgent fixes (portability, build fixes, etc.) may go directly to the
GCC tree.  All non-trivial changes, functionality improvements, etc. should go
through the upstream tree first and then be merged back to the GCC tree.
The merges from upstream should be done with the aid of the merge.sh script;
it will also update the file MERGE to contain the upstream revision
we merged with.