summaryrefslogtreecommitdiff
path: root/libsanitizer/interception/interception_mac.cc
Commit message (Collapse)AuthorAgeFilesLines
* libsanitizer merge from upstream r175049Kostya Serebryany2013-02-131-11/+0
| | | | From-SVN: r196009
* Import the asan runtime library into GCC treeWei Mi2012-11-121-0/+29
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