annotate libsanitizer/README.gcc @ 136:4627f235cf2a

fix c-next example
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 08 Nov 2018 14:11:56 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 AddressSanitizer (http://code.google.com/p/address-sanitizer) and
kono
parents:
diff changeset
2 ThreadSanitizer (http://code.google.com/p/thread-sanitizer/) are
kono
parents:
diff changeset
3 projects initially developed by Google Inc.
kono
parents:
diff changeset
4 Both tools consist of a compiler module and a run-time library.
kono
parents:
diff changeset
5 The sources of the run-time library for these projects are hosted at
kono
parents:
diff changeset
6 http://llvm.org/svn/llvm-project/compiler-rt in the following directories:
kono
parents:
diff changeset
7 include/sanitizer
kono
parents:
diff changeset
8 lib/sanitizer_common
kono
parents:
diff changeset
9 lib/interception
kono
parents:
diff changeset
10 lib/asan
kono
parents:
diff changeset
11 lib/tsan
kono
parents:
diff changeset
12 lib/lsan
kono
parents:
diff changeset
13 lib/ubsan
kono
parents:
diff changeset
14
kono
parents:
diff changeset
15 Trivial and urgent fixes (portability, build fixes, etc.) may go directly to the
kono
parents:
diff changeset
16 GCC tree. All non-trivial changes, functionality improvements, etc. should go
kono
parents:
diff changeset
17 through the upstream tree first and then be merged back to the GCC tree.
kono
parents:
diff changeset
18 The merges from upstream should be done with the aid of the merge.sh script;
kono
parents:
diff changeset
19 it will also update the file MERGE to contain the upstream revision
kono
parents:
diff changeset
20 we merged with.