diff options
author | Kevin Lubick <kjlubick@google.com> | 2018-04-03 15:22:25 -0400 |
---|---|---|
committer | Skia Commit-Bot <skia-commit-bot@chromium.org> | 2018-04-03 19:31:40 +0000 |
commit | 63bd23a8b143ecafc8b43e89f79fc497871cf135 (patch) | |
tree | c752ebec679d8b34ab1943f5ef0b379b8c489895 /site/dev | |
parent | 428ab73b219ddc0ef39d8d32a1c06f65046213e5 (diff) |
Improve MSAN docs
No-Try: true
Docs-Preview: https://skia.org/?cl=118360
Bug: skia:
Change-Id: Ic6691bc0427dd0c5e9e50efd8d5bbdad8fd0012d
Reviewed-on: https://skia-review.googlesource.com/118360
Reviewed-by: Cary Clark <caryclark@google.com>
Commit-Queue: Kevin Lubick <kjlubick@google.com>
Diffstat (limited to 'site/dev')
-rw-r--r-- | site/dev/testing/xsan.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/site/dev/testing/xsan.md b/site/dev/testing/xsan.md index f510d67c84..e3fa070ebf 100644 --- a/site/dev/testing/xsan.md +++ b/site/dev/testing/xsan.md @@ -21,6 +21,7 @@ of Clang and the instrumented libc++, located in /msan. Downloading Clang binaries (Googlers Only) ------------------------------------------ +This requires gsutil, part of the [gcloud sdk](https://cloud.google.com/sdk/downloads). CLANGDIR="${HOME}/clang" python infra/bots/assets/clang_linux/download.py -t $CLANGDIR @@ -45,6 +46,8 @@ Configure and Compile Skia with MSAN extra_ldflags = [ "-B${CLANGDIR}/bin", "-fuse-ld=lld", "-L${CLANGDIR}/msan" ] sanitize = "MSAN" skia_use_fontconfig = false + skia_use_system_freetype2 = false + skia_enable_gpu = false EOF python tools/git-sync-deps bin/gn gen out/msan |