r348863 - [ASan] Minor documentation fix: clarify static linking limitation.
Max Moroz via cfe-commits
cfe-commits at lists.llvm.org
Tue Dec 11 08:47:12 PST 2018
Author: dor1s
Date: Tue Dec 11 08:47:12 2018
New Revision: 348863
URL: http://llvm.org/viewvc/llvm-project?rev=348863&view=rev
Log:
[ASan] Minor documentation fix: clarify static linking limitation.
Summary:
ASan does not support statically linked binaries, but ASan runtime itself can
be statically linked into a target binary executable.
Reviewers: eugenis, kcc
Reviewed By: eugenis
Subscribers: cfe-commits, llvm-commits
Differential Revision: https://reviews.llvm.org/D55066
Modified:
cfe/trunk/docs/AddressSanitizer.rst
Modified: cfe/trunk/docs/AddressSanitizer.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/AddressSanitizer.rst?rev=348863&r1=348862&r2=348863&view=diff
==============================================================================
--- cfe/trunk/docs/AddressSanitizer.rst (original)
+++ cfe/trunk/docs/AddressSanitizer.rst Tue Dec 11 08:47:12 2018
@@ -265,7 +265,7 @@ Limitations
* On 64-bit platforms AddressSanitizer maps (but not reserves) 16+ Terabytes of
virtual address space. This means that tools like ``ulimit`` may not work as
usually expected.
-* Static linking is not supported.
+* Static linking of executables is not supported.
Supported Platforms
===================
More information about the cfe-commits
mailing list