aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/dev
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-10-18 14:43:41 -0400
committerGravatar Mike Klein <mtklein@chromium.org>2017-10-18 18:45:41 +0000
commit8fed655df87618f8460af2a6284bdef764cf84c8 (patch)
tree142dc2459793d1a08cf4a863e6e536e82a68d13b /site/dev
parent29ebe7a80d7b8fa0b72d1d1fb5d8ace57a95b961 (diff)
fix libc++/MSAN instructions
Change-Id: I2305595eeacc6ed7f8b264b85d6a8c33823c77eb Reviewed-on: https://skia-review.googlesource.com/61700 Reviewed-by: Yuqian Li <liyuqian@google.com>
Diffstat (limited to 'site/dev')
-rw-r--r--site/dev/testing/xsan.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/site/dev/testing/xsan.md b/site/dev/testing/xsan.md
index 64e0cb92a9..105b0b166c 100644
--- a/site/dev/testing/xsan.md
+++ b/site/dev/testing/xsan.md
@@ -34,10 +34,10 @@ Configure and Compile Skia with MSAN
bin/gn gen out/msan
ninja -C out/msan
-You may also need to install the following packages to run the MSAN binary
-
- sudo apt-get install libc++dev libc++abi-dev
+When you run a binary built with MSAN, make sure you force it to use our
+MSAN-instrumented libc++:
+ env LD_LIBRARY_PATH=$CLANGDIR/msan out/dm ...
Configure and Compile Skia with ASAN
------------------------------------