gcc/libsanitizer
Maxim Ostapenko 1018981977 All source files: Merge from upstream 285547.
libsanitizer/

	* All source files: Merge from upstream 285547.
	* configure.tgt (SANITIZER_COMMON_TARGET_DEPENDENT_OBJECTS): New
	variable.
	* configure.ac (SANITIZER_COMMON_TARGET_DEPENDENT_OBJECTS): Handle it.
	* asan/Makefile.am (asan_files): Add new files.
	* asan/Makefile.in: Regenerate.
	* ubsan/Makefile.in: Likewise.
	* lsan/Makefile.in: Likewise.
	* tsan/Makefile.am (tsan_files): Add new files.
	* tsan/Makefile.in: Regenerate.
	* sanitizer_common/Makefile.am (sanitizer_common_files): Add new files.
	(EXTRA_libsanitizer_common_la_SOURCES): Define.
	(libsanitizer_common_la_LIBADD): Likewise.
	(libsanitizer_common_la_DEPENDENCIES): Likewise.
	* sanitizer_common/Makefile.in: Regenerate.
	* interception/Makefile.in: Likewise.
	* libbacktace/Makefile.in: Likewise.
	* Makefile.in: Likewise.
	* configure: Likewise.
	* merge.sh: Handle builtins/assembly.h merging.
	* builtins/assembly.h: New file.
	* asan/libtool-version: Bump the libasan SONAME.

From-SVN: r241977
2016-11-09 00:04:09 +02:00
..
asan All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
builtins All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
include All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
interception All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
libbacktrace All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
lsan All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
sanitizer_common All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
tsan All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
ubsan All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
acinclude.m4
aclocal.m4
ChangeLog All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
config.h.in
configure All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
configure.ac All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
configure.tgt All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
HOWTO_MERGE Update HOWTO_MERGE file for libsanitizer. 2015-10-23 11:50:30 +03:00
libsanitizer.spec.in
libtool-version
LICENSE.TXT
Makefile.am
Makefile.in All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
MERGE All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
merge.sh All source files: Merge from upstream 285547. 2016-11-09 00:04:09 +02:00
README.gcc

AddressSanitizer (http://code.google.com/p/address-sanitizer) and
ThreadSanitizer (http://code.google.com/p/thread-sanitizer/) 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
http://llvm.org/svn/llvm-project/compiler-rt in the following directories:
  include/sanitizer
  lib/sanitizer_common
  lib/interception
  lib/asan
  lib/tsan
  lib/lsan
  lib/ubsan

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.