[libFuzzer] menion the git mirror in the docs
authorKostya Serebryany <kcc@google.com>
Fri, 15 Apr 2016 21:10:27 +0000 (21:10 +0000)
committerKostya Serebryany <kcc@google.com>
Fri, 15 Apr 2016 21:10:27 +0000 (21:10 +0000)
llvm-svn: 266476

llvm/docs/LibFuzzer.rst

index d32ae55..7bc3e6b 100644 (file)
@@ -22,6 +22,8 @@ First, implement a fuzzing target function, like this::
 Next, build the Fuzzer library as a static archive. Note that libFuzzer contains the `main()` function::
 
   svn co http://llvm.org/svn/llvm-project/llvm/trunk/lib/Fuzzer
+  # Alternative: get libFuzzer from a dedicated git mirror:
+  # git clone https://chromium.googlesource.com/chromium/llvm-project/llvm/lib/Fuzzer
   clang++ -c -g -O2 -std=c++11 Fuzzer/*.cpp -IFuzzer
   ar ruv libFuzzer.a Fuzzer*.o