aboutsummaryrefslogtreecommitdiff
path: root/libsanitizer/asan/asan_thread.cc
AgeCommit message (Collapse)AuthorFilesLines
2013-01-23libsanitizer merge from upstream r173241Kostya Serebryany1-1/+1
From-SVN: r195404
2012-11-27[libsanitizer] merge from upstream r168699Kostya Serebryany1-4/+5
From-SVN: r193849
2012-11-23[libsanitizer] merge from upstream r168514Kostya Serebryany1-7/+6
From-SVN: r193756
2012-11-12Import the asan runtime library into GCC treeWei Mi1-0/+153
This patch imports the runtime library in the GCC tree, ensures that -lasan is passed to the linker when -faddress-sanitizer is used and sets up the build system accordingly. ChangeLog: * configure.ac: Add libsanitizer to target_libraries. * Makefile.def: Ditto. * configure: Regenerate. * Makefile.in: Regenerate. * libsanitizer: New directory for asan runtime. Contains an empty tsan directory. gcc/ChangeLog: * gcc.c (LINK_COMMAND_SPEC): Add -laddress-sanitizer to link command if -faddress-sanitizer is on. libsanitizer: Initial checkin: migrate asan runtime from llvm. From-SVN: r193441