aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started/new_project_guide.md
diff options
context:
space:
mode:
authorMax Moroz <mmoroz@chromium.org>2020-07-24 12:38:00 -0700
committerGitHub <noreply@github.com>2020-07-24 12:38:00 -0700
commit70d278bb53147c23c4fc7f2c4528e485c50cfe1f (patch)
tree0f915c2411f5019242f07306a118671ce8eea087 /docs/getting-started/new_project_guide.md
parenta9d0062a554b1598fbbb71ccd1c38d46c3c80c45 (diff)
downloadoss-fuzz-70d278bb53147c23c4fc7f2c4528e485c50cfe1f.tar.gz
[infra] Rename msan-builder to msan-libs-builder (#3388). (#4190)
* [infra] Rename msan-builder to msan-libs-builder and add (broken) dfsan-libs-builder (#3388). * remove dfsan-libs-builder for now * presubmit format
Diffstat (limited to 'docs/getting-started/new_project_guide.md')
-rw-r--r--docs/getting-started/new_project_guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/getting-started/new_project_guide.md b/docs/getting-started/new_project_guide.md
index f47d70413..17ff2376f 100644
--- a/docs/getting-started/new_project_guide.md
+++ b/docs/getting-started/new_project_guide.md
@@ -116,7 +116,7 @@ sanitizers (currently ["address"](https://clang.llvm.org/docs/AddressSanitizer.h
and recommended, but is not enabled by default due to the likelihood of false positives from
un-instrumented system dependencies. If you want to use "memory," first make sure your project's
runtime dependencies are listed in the OSS-Fuzz
-[msan-builder Dockerfile](https://github.com/google/oss-fuzz/blob/master/infra/base-images/msan-builder/Dockerfile#L20).
+[msan-libs-builder Dockerfile](https://github.com/google/oss-fuzz/blob/master/infra/base-images/msan-libs-builder/Dockerfile#L20).
Then, you can opt in by adding "memory" to your list of sanitizers.
If your project does not build with a particular sanitizer configuration and you need some time to fix
@@ -315,7 +315,7 @@ fuzz targets get to the code you expect. Please refer to [code coverage]({{ site
**Note:** Currently, we only support AddressSanitizer (address) and UndefinedBehaviorSanitizer (undefined)
configurations. MemorySanitizer is recommended, but needs to be enabled manually once you verify
that all system dependencies are
-[instrumented](https://github.com/google/oss-fuzz/blob/master/infra/base-images/msan-builder/Dockerfile#L20).
+[instrumented](https://github.com/google/oss-fuzz/blob/master/infra/base-images/msan-libs-builder/Dockerfile#L20).
<b>Make sure to test each
of the supported build configurations with the above commands (build_fuzzers -> run_fuzzer -> coverage).</b>