gcc/libsanitizer
Alan Modra aa00995cd7 Revert 2015-11-09 sanitizer/obstack configury
The 2015-11-23 sanitizer merge from upstream lost the changes from
f6528435 to sanitizer_common/sanitizer_common_interceptors.inc, which
made use of _OBSTACK_SIZE_T.  So the configury changes to define
_OBSTACK_SIZE_T don't do anything.  This wasn't such a bad thing
anyway..  The configure test wrongly adds -I${srcdir}/../include,
effectively resulting in a test of libiberty/obstack rather than libc
obstack support, and it's the latter that asan and tsan need to work
with.

So, remove the useless configure test.  Upstream santizer project has
been made aware of the problem if glibc obstack support is ever
updated.  Bootsrapped etc. x86_64-linux and committed as obvious.

	Revert 2015-11-09  Alan Modra  <amodra@gmail.com>
	* configure.ac: Don't substitute OBSTACK_DEFS.
	* asan/Makefile.am: Remove OBSTACK_DEFS from DEFS.
	* tsan/Makefile.am: Likewise.
	* configure: Regenerate.
	* Makefile.in: Regenerate.
	* asan/Makefile.in: Regenerate.
	* interception/Makefile.in: Regenerate.
	* libbacktrace/Makefile.in: Regenerate.
	* lsan/Makefile.in: Regenerate.
	* sanitizer_common/Makefile.in: Regenerate.
	* tsan/Makefile.in: Regenerate.
	* ubsan/Makefile.in: Regenerate.

From-SVN: r238701
2016-07-25 10:43:36 +09:30
..
asan Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
include Move ptrace.h to appropriate place. 2015-11-24 14:24:46 +02:00
interception Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
libbacktrace Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
lsan Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
sanitizer_common Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
tsan Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
ubsan Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
ChangeLog Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
HOWTO_MERGE Update HOWTO_MERGE file for libsanitizer. 2015-10-23 11:50:30 +03:00
LICENSE.TXT
MERGE libsanitizer merge from upstream r253555. 2015-11-23 11:07:18 +02:00
Makefile.am
Makefile.in Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
README.gcc
acinclude.m4
aclocal.m4
config.h.in
configure Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
configure.ac Revert 2015-11-09 sanitizer/obstack configury 2016-07-25 10:43:36 +09:30
configure.tgt libsanitizer merge from upstream r253555. 2015-11-23 11:07:18 +02:00
libsanitizer.spec.in
libtool-version
merge.sh

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.