This repository was archived by the owner on Nov 1, 2021. It is now read-only.
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -140,7 +140,8 @@ Memory leak detection
140
140
---------------------
141
141
142
142
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;
144
145
however, it is not yet supported on other platforms.
145
146
146
147
Issue Suppression
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ detection phase.
17
17
Usage
18
18
=====
19
19
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,
21
21
simply build your program with :doc: `AddressSanitizer `:
22
22
23
23
.. code-block :: console
@@ -30,7 +30,7 @@ simply build your program with :doc:`AddressSanitizer`:
30
30
p = 0; // The memory is leaked here.
31
31
return 0;
32
32
}
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
34
34
==23646==ERROR: LeakSanitizer: detected memory leaks
35
35
Direct leak of 7 byte(s) in 1 object(s) allocated from:
36
36
#0 0x4af01b in __interceptor_malloc /projects/compiler-rt/lib/asan/asan_malloc_linux.cc:52:3
You can’t perform that action at this time.
0 commit comments