diff options
author | Jack Lloyd <[email protected]> | 2017-10-24 15:53:47 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-24 15:54:03 -0400 |
commit | d689e0f9148282148135034a32622df62b53d7c0 (patch) | |
tree | 708275cfa822b7000a4a473427aa2fe56f6af3e0 /doc/manual/fuzzing.rst | |
parent | 4f49a6444127801335dab049f0f0b4419d8d9cc1 (diff) |
Update http:// links in the docs
[ci skip]
Diffstat (limited to 'doc/manual/fuzzing.rst')
-rw-r--r-- | doc/manual/fuzzing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/fuzzing.rst b/doc/manual/fuzzing.rst index 1f596f6da..8260582d6 100644 --- a/doc/manual/fuzzing.rst +++ b/doc/manual/fuzzing.rst @@ -9,10 +9,10 @@ the library. Fuzzing with libFuzzer ------------------------ -To fuzz with libFuzzer (http://llvm.org/docs/LibFuzzer.html), you'll first +To fuzz with libFuzzer (https://llvm.org/docs/LibFuzzer.html), you'll first need to compile libFuzzer:: - $ svn co http://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer libFuzzer + $ svn co https://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/fuzzer libFuzzer $ cd libFuzzer && clang -c -g -O2 -std=c++11 *.cpp $ ar cr libFuzzer.a libFuzzer/*.o |