From ab885c56e2ea715ba089965960d39f64c0554027 Mon Sep 17 00:00:00 2001 From: Mike Aizatsky Date: Tue, 24 May 2016 22:25:46 +0000 Subject: [libfuzzer][doc] documenting running libfuzzer tests. Differential Revision: http://reviews.llvm.org/D20594 llvm-svn: 270626 --- llvm/docs/LibFuzzer.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'llvm/docs') diff --git a/llvm/docs/LibFuzzer.rst b/llvm/docs/LibFuzzer.rst index 72624e8b0fc..79e8d2947aa 100644 --- a/llvm/docs/LibFuzzer.rst +++ b/llvm/docs/LibFuzzer.rst @@ -689,6 +689,18 @@ If your target has massive leaks and the leak detection is disabled you will eventually run out of RAM (see the ``-rss_limit_mb`` flag). +Developing libFuzzer +==================== + +Building libFuzzer as a part of LLVM project and running its test requires +special CMake configuration: + +.. code-block:: console + + cmake -GNinja -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DLLVM_USE_SANITIZER=Address -DLLVM_USE_SANITIZE_COVERAGE=YES -DCMAKE_BUILD_TYPE=Release /path/to/llvm + ninja check-fuzzer + + Fuzzing components of LLVM ========================== .. contents:: -- cgit v1.2.3