gcc/libsanitizer
Tamar Christina 761a3a95ee Arm: Fix arm libsanitizer bootstrap failure
Glibc has recently introduced changed to the mode field in ipc_perm
in commit 2f959dfe849e0646e27403f2e4091536496ac0f0. For Arm this
means that the mode field no longer has the same size.

This causes an assert failure against libsanitizer's internal copy
of ipc_perm.  Since this change can't be easily detected I am adding
arm to the list of targets that are excluded from this check.  libsanitizer
doesn't use this field (and others, it in fact uses only 1 field) so this check
can be ignored.

Padding bits were used by glibc when the field was changed so sizeof and offsets
of the remaining fields should be the same.

libsanitizer/ChangeLog:

	PR sanitizer/92154
	* sanitizer_common/sanitizer_platform_limits_posix.cpp (defined):
	Cherry-pick compiler-rt revision r375220.

From-SVN: r277291
2019-10-22 14:25:38 +00:00
..
asan libsanitize, asan - reapply r272406 2019-08-16 19:46:09 +00:00
builtins Libsanitizer merge from trunk r368656. 2019-08-14 08:47:11 +00:00
include Libsanitizer merge from trunk r368656. 2019-08-14 08:47:11 +00:00
interception [libsanitizer] Fix PR bootstrap/91455 2019-08-15 14:13:10 +00:00
libbacktrace [libsanitizer] Fix PR bootstrap/91455 2019-08-15 14:13:10 +00:00
lsan [libsanitizer] Fix PR bootstrap/91455 2019-08-15 14:13:10 +00:00
sanitizer_common Arm: Fix arm libsanitizer bootstrap failure 2019-10-22 14:25:38 +00:00
tsan Reapply missing patch for libsanitizer. 2019-08-15 15:31:46 +00:00
ubsan [libsanitizer] Fix PR bootstrap/91455 2019-08-15 14:13:10 +00:00
ChangeLog Arm: Fix arm libsanitizer bootstrap failure 2019-10-22 14:25:38 +00:00
HOWTO_MERGE
LICENSE.TXT
LOCAL_PATCHES libsanitizer, record a local patch. 2019-08-16 19:49:07 +00:00
MERGE Libsanitizer merge from trunk r368656. 2019-08-14 08:47:11 +00:00
Makefile.am
Makefile.in [libsanitizer] Fix PR bootstrap/91455 2019-08-15 14:13:10 +00:00
README.gcc
acinclude.m4
aclocal.m4 [libsanitizer] Fix PR bootstrap/91455 2019-08-15 14:13:10 +00:00
config.h.in
configure Regenerate `configure' scripts for `uclinuxfdpiceabi' libtool.m4 update 2019-09-27 21:24:42 +00:00
configure.ac
configure.tgt [ARM/FDPIC v6 03/24] [ARM] FDPIC: Force FDPIC related options unless -mno-fdpic is provided 2019-09-10 09:39:47 +02:00
libsanitizer.spec.in
libtool-version
merge.sh Libsanitizer merge from trunk r368656. 2019-08-14 08:47:11 +00:00

README.gcc

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://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.