buildtools/gcc/libsanitizer
2024-06-14 11:03:33 +02:00
..
asan Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
builtins Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
hwasan Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
include Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
interception Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
libbacktrace Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
lsan Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
sanitizer_common import gcc 13.3.0 2024-06-14 11:03:33 +02:00
tsan Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
ubsan Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
acinclude.m4 import gcc 8.3.0 2022-07-15 14:28:41 +02:00
aclocal.m4 Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
ChangeLog import gcc 13.3.0 2024-06-14 11:03:33 +02:00
config.h.in import gcc 11.2.0 2022-07-15 14:33:44 +02:00
configure Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
configure.ac Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
configure.tgt Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
HOWTO_MERGE import gcc 11.2.0 2022-07-15 14:33:44 +02:00
libsanitizer.spec.in import gcc 11.2.0 2022-07-15 14:33:44 +02:00
LICENSE.TXT import gcc 4.8.1 2013-06-05 18:35:38 +02:00
LOCAL_PATCHES Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
Makefile.am Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
Makefile.in Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
MERGE Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
merge.sh Import GCC 13.1.0 and dependencies 2023-06-18 01:43:18 +01:00
README.gcc import gcc 11.2.0 2022-07-15 14:33:44 +02:00

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.