README.gcc 936 B

123456789101112131415161718192021
  1. AddressSanitizer and ThreadSanitizer (https://github.com/google/sanitizers) are
  2. projects initially developed by Google Inc.
  3. Both tools consist of a compiler module and a run-time library.
  4. The sources of the run-time library for these projects are hosted at
  5. https://github.com/llvm/llvm-project in the following directories:
  6. compiler-rt/include/sanitizer
  7. compiler-rt/lib/sanitizer_common
  8. compiler-rt/lib/interception
  9. compiler-rt/lib/asan
  10. compiler-rt/lib/tsan
  11. compiler-rt/lib/lsan
  12. compiler-rt/lib/ubsan
  13. compiler-rt/lib/hwasan
  14. Trivial and urgent fixes (portability, build fixes, etc.) may go directly to the
  15. GCC tree. All non-trivial changes, functionality improvements, etc. should go
  16. through the upstream tree first and then be merged back to the GCC tree.
  17. The merges from upstream should be done with the aid of the merge.sh script;
  18. it will also update the file MERGE to contain the upstream revision
  19. we merged with.