diff options
author | Matthew Bender <mbender@gospotcheck.com> | 2018-08-07 11:25:37 -0600 |
---|---|---|
committer | Matthew Bender <mbender@gospotcheck.com> | 2018-08-07 11:25:37 -0600 |
commit | 68f549e43fe433fd5393453b2f407e061f7ca240 (patch) | |
tree | 1c26c9454b386e008f90c459217e2cd313a707b7 /doc | |
parent | 60069baa6a430f744338941ee91953f6bd9403ef (diff) |
Update instructions to include how to satisfy gFlags prerequisite on a mac
Diffstat (limited to 'doc')
-rw-r--r-- | doc/command_line_tool.md | 10 |
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: |