| Index: docs/clang_tool_refactoring.md
|
| diff --git a/docs/clang_tool_refactoring.md b/docs/clang_tool_refactoring.md
|
| index ef7faabe97493051af6e0d90a7b7d0625ec6a5e3..5f53ee06a73b1949bfd2a920351814f5a3040d17 100644
|
| --- a/docs/clang_tool_refactoring.md
|
| +++ b/docs/clang_tool_refactoring.md
|
| @@ -112,6 +112,12 @@ Generally, `--tools` should always include `blink_gc_plugin` and `plugins`: othe
|
| It is important to use --bootstrap as there appear to be [bugs](https://crbug.com/580745)
|
| in the clang library this script produces if you build it with gcc, which is the default.
|
|
|
| +After bootstrapping is done, rebuilding can be done with something like:
|
| +
|
| +```shell
|
| +ninja -C third_party/llvm-build/Release+Asserts <tool name>
|
| +```
|
| +
|
| ## Running
|
| First, build all chromium targets to avoid failures due to missing dependecies
|
| that are generated as part of the build:
|
| @@ -172,7 +178,7 @@ that is to `return 1` from the `main()` function of the clang tool.
|
| Synposis:
|
|
|
| ```shell
|
| -test_tool.py <tool name>
|
| +tools/clang/scripts/test_tool.py <tool name>
|
| ```
|
|
|
| The name of the tool binary and the subdirectory for the tool in
|
|
|