summaryrefslogtreecommitdiff
path: root/libsanitizer/ChangeLog.asan
diff options
context:
space:
mode:
authorWei Mi <wmi@google.com>2012-10-30 06:45:44 +0000
committerDodji Seketeli <dodji@seketeli.org>2012-11-09 18:03:56 +0100
commit79518ddbb896f5c9db2e9d1dafb190a3c493d326 (patch)
tree069f5c873e43a9ff049b6ded8dca25f2a5956334 /libsanitizer/ChangeLog.asan
parent905d350be68641678a5f73b3742b2d0cba8afa7f (diff)
downloadgcc-dodji/asan-merge-assemble.tar.gz
Import the asan runtime library into GCC treedodji/asan-merge-assemble
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. * 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: * gcc.c (LINK_COMMAND_SPEC): Add -lasan to link command if -faddress-sanitizer is on. libsanitizer: Initial checkin: migrate asan runtime from llvm. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/asan@192977 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libsanitizer/ChangeLog.asan')
-rw-r--r--libsanitizer/ChangeLog.asan3
1 files changed, 3 insertions, 0 deletions
diff --git a/libsanitizer/ChangeLog.asan b/libsanitizer/ChangeLog.asan
new file mode 100644
index 00000000000..7fe3c0cdc64
--- /dev/null
+++ b/libsanitizer/ChangeLog.asan
@@ -0,0 +1,3 @@
+2012-10-29 Wei Mi <wmi@google.com>
+
+ Initial checkin: migrate asan runtime from llvm.