Skip to content
This repository was archived by the owner on Nov 1, 2021. It is now read-only.

Commit 26a23ff

Browse files
committed
[docs] Update LeakSanitizer documentation to reflect OS X support
Reviewers: kcc, alekseyshl, kubamracek, glider Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D37811 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@313179 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 914987d commit 26a23ff

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

docs/AddressSanitizer.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ Memory leak detection
140140
---------------------
141141

142142
For more information on leak detector in AddressSanitizer, see
143-
:doc:`LeakSanitizer`. The leak detection is turned on by default on Linux;
143+
:doc:`LeakSanitizer`. The leak detection is turned on by default on Linux,
144+
and can be enabled using ``ASAN_OPTIONS=detect_leaks=1`` on OS X;
144145
however, it is not yet supported on other platforms.
145146

146147
Issue Suppression

docs/LeakSanitizer.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ detection phase.
1717
Usage
1818
=====
1919

20-
LeakSanitizer is only supported on x86\_64 Linux. In order to use it,
20+
LeakSanitizer is supported on x86\_64 Linux and OS X. In order to use it,
2121
simply build your program with :doc:`AddressSanitizer`:
2222

2323
.. code-block:: console
@@ -30,7 +30,7 @@ simply build your program with :doc:`AddressSanitizer`:
3030
p = 0; // The memory is leaked here.
3131
return 0;
3232
}
33-
% clang -fsanitize=address -g memory-leak.c ; ./a.out
33+
% clang -fsanitize=address -g memory-leak.c ; ASAN_OPTIONS=detect_leaks=1 ./a.out
3434
==23646==ERROR: LeakSanitizer: detected memory leaks
3535
Direct leak of 7 byte(s) in 1 object(s) allocated from:
3636
#0 0x4af01b in __interceptor_malloc /projects/compiler-rt/lib/asan/asan_malloc_linux.cc:52:3

0 commit comments

Comments
 (0)