aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2018-08-16 20:19:57 -0700
committerGravatar GitHub <noreply@github.com>2018-08-16 20:19:57 -0700
commite28ed218ddb1a171b02b965fcccc74b4706d7bf8 (patch)
tree92326eadec875cfb9c30fbf60a422560bb17ce0a /doc
parent61dabce400f3b139205e8f983e167d9ed6e7e6d4 (diff)
parent68f549e43fe433fd5393453b2f407e061f7ca240 (diff)
Merge pull request #16273 from codebender/update_cli_instructions
Update instructions to include how to satisfy gFlags prerequisite on a Mac
Diffstat (limited to 'doc')
-rw-r--r--doc/command_line_tool.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/doc/command_line_tool.md b/doc/command_line_tool.md
index 6337acaf60..a373cbea62 100644
--- a/doc/command_line_tool.md
+++ b/doc/command_line_tool.md
@@ -41,12 +41,16 @@ repository, you need to run the following command to update submodules:
git submodule update --init
```
-You also need to have the gflags library installed on your system. On Linux
-systems, gflags can be installed with the following command:
-
+You also need to have the gflags library installed on your system. gflags can be
+installed with the following command:
+Linux:
```
sudo apt-get install libgflags-dev
```
+Mac systems with Homebrew:
+```
+brew install gflags
+```
Once the prerequisites are satisfied, you can build the command line tool with
the command: