Chromium Code Reviews| Index: docs/clang_tool_refactoring.md |
| diff --git a/docs/clang_tool_refactoring.md b/docs/clang_tool_refactoring.md |
| index b9d7c9a820928aaea447fef0cc2bad43a1d58f57..9b49df11b3a9c7c57b7bf1815967bb5dcd3c0113 100644 |
| --- a/docs/clang_tool_refactoring.md |
| +++ b/docs/clang_tool_refactoring.md |
| @@ -97,16 +97,15 @@ Synopsis: |
| ```shell |
| tools/clang/scripts/update.py --bootstrap --force-local-build --without-android \ |
| - --tools blink_gc_plugin plugins rewrite_to_chrome_style |
| + --extra-tools rewrite_to_chrome_style |
| ``` |
| Running this command builds the [Oilpan plugin](https://chromium.googlesource.com/chromium/src/+/master/tools/clang/blink_gc_plugin/), |
| the [Chrome style |
| plugin](https://chromium.googlesource.com/chromium/src/+/master/tools/clang/plugins/), |
| -and the [Blink to Chrome style rewriter](https://chromium.googlesource.com/chromium/src/+/master/tools/clang/rewrite_to_chrome_style/). Additional arguments to `--tools` should be the name of |
| +and the [Blink to Chrome style rewriter](https://chromium.googlesource.com/chromium/src/+/master/tools/clang/rewrite_to_chrome_style/). Additional arguments to `--extra-tools` should be the name of |
|
Łukasz Anforowicz
2016/12/30 17:19:01
nit: wrap this to 80 columns?
dcheng
2017/01/01 03:06:52
I'll try this in a followup: wrapping links is alw
|
| subdirectories in |
| [//tools/clang](https://chromium.googlesource.com/chromium/src/+/master/tools/clang). |
| -Generally, `--tools` should always include `blink_gc_plugin` and `plugins`: otherwise, Chromium won't build. |
| 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. |