/usr/lib/gcc/x86_64-pc-linux-gnu/
Reply-To: "H.J. Lu" <hjl.to...@gmail.com>

Hi,

I checked in this patch to fix PR sanitizer/55450.


H.J.
---
Index: ChangeLog
===================================================================
--- ChangeLog   (revision 193766)
+++ ChangeLog   (working copy)
@@ -1,12 +1,18 @@
+2012-11-23  H.J. Lu  <hongjiu...@intel.com>
+
+       PR sanitizer/55450
+       * tsan/Makefile.am (gcc_version): New.
+       * tsan/Makefile.in: Regenerated.
+
 2012-11-23  Kostya Serebryany  <k...@google.com>
-        
+
        * merge.sh: Support tsan, support added/removed files.
        * tsan/Makefile.am: Remove tsan_printf.cc.
        * tsan/Makefile.in: Regenerated.
        * other files: Merge from upstream r168514.
 
 2012-11-23  Kostya Serebryany  <k...@google.com>
-        
+
        * merge.sh: New file.
 
 2012-11-23  Jakub Jelinek  <ja...@redhat.com>
@@ -32,7 +38,7 @@
 
 2012-11-21  Kostya Serebryany  <k...@google.com>
 
-        * README.gcc: Extend the README.gcc with mode details.
+       * README.gcc: Extend the README.gcc with mode details.
 
 2012-11-20  Konstantin Serebryany  <konstantin.s.serebry...@gmail.com>
 
Index: tsan/Makefile.am
===================================================================
--- tsan/Makefile.am    (revision 193766)
+++ tsan/Makefile.am    (working copy)
@@ -1,5 +1,8 @@
 AM_CPPFLAGS = -I $(top_srcdir) -I $(top_srcdir)/include
 
+# May be used by toolexeclibdir.
+gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
+
 DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS 
-D__STDC_LIMIT_MACROS 
 AM_CXXFLAGS = -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic 
-Wno-long-long  -fPIC -fno-builtin -fno-exceptions -fomit-frame-pointer 
-funwind-tables -fvisibility=hidden -Wno-variadic-macros
 ACLOCAL_AMFLAGS = -I m4
Index: tsan/Makefile.in
===================================================================
--- tsan/Makefile.in    (revision 193766)
+++ tsan/Makefile.in    (working copy)
@@ -84,8 +84,7 @@ am__objects_1 = tsan_clock.lo tsan_inter
        tsan_rtl.lo tsan_stat.lo tsan_sync.lo tsan_interceptors.lo \
        tsan_md5.lo tsan_platform_mac.lo tsan_rtl_mutex.lo \
        tsan_suppressions.lo tsan_interface_ann.lo tsan_mman.lo \
-       tsan_rtl_report.lo \
-       tsan_symbolize_addr2line_linux.lo
+       tsan_rtl_report.lo tsan_symbolize_addr2line_linux.lo
 am_libtsan_la_OBJECTS = $(am__objects_1)
 libtsan_la_OBJECTS = $(am_libtsan_la_OBJECTS)
 libtsan_la_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
@@ -238,6 +237,9 @@ top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
 AM_CPPFLAGS = -I $(top_srcdir) -I $(top_srcdir)/include
+
+# May be used by toolexeclibdir.
+gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
 AM_CXXFLAGS = -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic 
-Wno-long-long  -fPIC -fno-builtin -fno-exceptions -fomit-frame-pointer 
-funwind-tables -fvisibility=hidden -Wno-variadic-macros
 ACLOCAL_AMFLAGS = -I m4
 toolexeclib_LTLIBRARIES = libtsan.la

Reply via email to