]> git.ipfire.org Git - thirdparty/gcc.git/blame - libsanitizer/ChangeLog
invoke.texi (-fsanitize=address): Remove obsolete remark.
[thirdparty/gcc.git] / libsanitizer / ChangeLog
CommitLineData
3409d40e
KS
12012-11-23 Kostya Serebryany <kcc@google.com>
2
e297eb60
KS
3 * merge.sh: Support tsan, support added/removed files.
4 * tsan/Makefile.am: Remove tsan_printf.cc.
5 * tsan/Makefile.in: Regenerated.
6 * other files: Merge from upstream r168514.
7
82012-11-23 Kostya Serebryany <kcc@google.com>
9
10 * merge.sh: New file.
3409d40e 11
64548f3b
JJ
122012-11-23 Jakub Jelinek <jakub@redhat.com>
13
14 * tsan/Makefile.am (AM_CXXFLAGS): Remove -Wno-variadic-macros.
15 * Makefile.am (SUBDIRS): Guard tsan addition with TSAN_SUPPORTED
16 automake conditional instead of !MULTISUBDIR32.
17 * configure.tgt: Set TSAN_SUPPORTED=yes for x86_64/i686-linux
18 for 64-bit multilib.
19 * configure.ac: Check for void * size, source in configure.tgt,
20 define TSAN_SUPPORTED conditional instead of MULTILIBDIR32.
21 * configure: Regenerated.
22 * Makefile.in: Regenerated.
23 * tsan/Makefile.in: Regenerated.
24
cd0be65c
WM
252012-11-22 Wei Mi <wmi@google.com>
26
27 * tsan: New directory. Import tsan runtime from llvm.
28 * configure.ac: Add 64 bits tsan build.
29 * Makefile.am: Likewise.
30 * configure: Regenerated.
31 * Makefile.in: Likewise.
32
5cba83a8
KS
332012-11-21 Kostya Serebryany <kcc@google.com>
34
35 * README.gcc: Extend the README.gcc with mode details.
36
b014e124
KS
372012-11-20 Konstantin Serebryany <konstantin.s.serebryany@gmail.com>
38
39 * sanitizer_common/sanitizer_linux.cc
40 (SANITIZER_LINUX_USES_64BIT_SYSCALLS): Define.
41 (internal_mmap): Use it.
42 (internal_filesize): Likewise.
43
2b723e21
TT
442012-11-16 Tom Tromey <tromey@redhat.com>
45
46 * configure.ac: Invoke AM_MAINTAINER_MODE.
47 * aclocal.m4, configure, Makefile.in, asan/Makefile.in,
48 interception/Makefile.in, sanitizer_common/Makefile.in: Rebuild.
49
d1caed14
L
502012-11-16 H.J. Lu <hongjiu.lu@intel.com>
51
52 PR other/55333
53 * include/sanitizer/common_interface_defs.h (uhwptr): New type
54 for hardware pointer.
55 * sanitizer_common/sanitizer_stacktrace.cc (StackTrace::FastUnwindStack):
56 Replace uptr with uhwptr for stack unwind.
57
f3754998
DS
582012-11-16 Dodji Seketeli <dodji@redhat.com>
59
60 * configure.tgt: Enable build on sparc linux.
61
f64bcb29
L
622012-11-15 H.J. Lu <hongjiu.lu@intel.com>
63
64 * configure.ac: Properly set MULTISUBDIR.
65 * asan/Makefile.am (gcc_version): New.
66 * interception/Makefile.am (gcc_version): Likewise.
67 * sanitizer_common/Makefile.am (gcc_version): Likewise.
68 * configure: Regenerated.
69 * asan/Makefile.in: Likewise.
70 * interception/Makefile.in: Likewise.
71 * sanitizer_common/Makefile.in: Likewise.
72
2a6346c4
L
732012-11-14 H.J. Lu <hongjiu.lu@intel.com>
74
75 PR other/55291
76 * configure.ac (--enable-version-specific-runtime-libs): New option.
77 (AC_CANONICAL_SYSTEM): New.
78 (AM_ENABLE_MULTILIB): Moved right after AM_INIT_AUTOMAKE.
79 (toolexecdir): Support multilib.
80 (toolexeclibdir): Likewise.
81 (multilib_arg): New.
82 * Makefile.in: Regenerated.
83 * aclocal.m4: Likewise.
84 * configure: Likewise.
85 * asan/Makefile.in: Likewise.
86 * interception/Makefile.in: Likewise.
87 * sanitizer_common/Makefile.in: Likewise.
88
4a56a7be
L
892012-11-14 H.J. Lu <hongjiu.lu@intel.com>
90
91 PR other/55292
92 Backport from upstream revision 167883
93 * sanitizer_common/sanitizer_linux.cc (internal_mmap): Check
94 __x86_64__ instead of __WORDSIZE.
95 (internal_filesize): Likwise.
96
4053ca2c
L
972012-11-14 H.J. Lu <hongjiu.lu@intel.com>
98
99 * configure.ac (AC_CONFIG_AUX_DIR): Removed.
100 * Makefile.in: Regenerated.
101 * configure: Likewise.
102
a2479b3d
L
1032012-11-13 H.J. Lu <hongjiu.lu@intel.com>
104
105 PR other/55304
106 * acinclude.m4: New file.
107 * Makefile.am (ACLOCAL_AMFLAGS): New.
108 * configure.ac (AC_PREREQ): Set to 2.64.
109 (AC_CONFIG_AUX_DIR): Set to "..".
110 * Makefile.in: Regenerated.
111 * aclocal.m4: Likewise.
112 * configure: Likewise.
113 * asan/Makefile.in: Likewise.
114 * interception/Makefile.in: Likewise.
115 * sanitizer_common/Makefile.in: Likewise.
116
117 * config.guess: Removed.
118 * config.sub: Likewise.
119 * depcomp: Likewise.
120 * install-sh: Likewise.
121 * ltmain.sh: Likewise.
122 * missing: Likewise.
123
93bf5390
RH
1242012-11-13 Richard Henderson <rth@redhat.com>
125
126 * configure.tgt: New file.
127
d2860e72
DM
1282012-11-12 David S. Miller <davem@davemloft.net>
129
130 * asan/asan_linux.cc (GetPcSpBp): Add sparc support.
131
f35db108
WM
1322012-10-29 Wei Mi <wmi@google.com>
133
134 Initial checkin: migrate asan runtime from llvm.