Merge pull request #16273 from codebender/update_cli_instructions

Update instructions to include how to satisfy gFlags prerequisite on a Mac
pull/16378/head
Vijay Pai 6 years ago committed by GitHub
commit e28ed218dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      doc/command_line_tool.md

@ -41,12 +41,16 @@ repository, you need to run the following command to update submodules:
git submodule update --init git submodule update --init
``` ```
You also need to have the gflags library installed on your system. On Linux You also need to have the gflags library installed on your system. gflags can be
systems, gflags can be installed with the following command: installed with the following command:
Linux:
``` ```
sudo apt-get install libgflags-dev 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 Once the prerequisites are satisfied, you can build the command line tool with
the command: the command:

Loading…
Cancel
Save