Skip to content

Commit

Permalink
Add a developer trick to the installation doc, reorganize a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
hcaseyal committed Aug 20, 2019
1 parent 83e6044 commit 5bf71fa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ If you plan to build from source and run tests, install the following as well:
$ [sudo] apt-get install libgflags-dev libgtest-dev
$ [sudo] apt-get install clang libc++-dev
```
Lastly, see the Protoc section below if you do not yet have the protoc compiler installed.

## MacOS

Expand Down Expand Up @@ -46,6 +47,7 @@ installed by `brew` is being used:
```sh
$ LIBTOOL=glibtool LIBTOOLIZE=glibtoolize make
```
Lastly, see the Protoc section below if you do not yet have the protoc compiler.

## Windows

Expand Down Expand Up @@ -112,6 +114,12 @@ From the grpc repository root
```sh
$ make
```
NOTE: if you get an error on linux such as 'aclocal-1.15: command not found', which can happen if you ran 'make' before installing the pre-reqs, try the following:
```sh
$ git clean -f -d -x && git submodule foreach --recursive git clean -f -d -x
$ [sudo] apt-get install build-essential autoconf libtool pkg-config
$ make
```

## bazel

Expand Down

0 comments on commit 5bf71fa

Please sign in to comment.