Building with make on UNIX systems (deprecated)
NOTE: make used to be gRPC's default build system, but we're no longer recommending it. You should use bazel or cmake instead. The Makefile is only intended for internal usage and is not meant for public consumption.
I am not sure if bazel or cmake will automatically compile protoc in third_party/. When I ran bazel it didn't seem like it but I could be mistaken.
Edit:
Output when trying to sudo make install:
~/grpc-make$ sudo make install
Installing via 'make' is no longer supported. Use cmake or bazel instead.
Please consult BUILDING.md to get more information.
make: *** [Makefile:707: stop] Error 1
The docs say to compile gRPC using make however according to gRPC's repo, this is deprecated. From the compile docs:
https://github.com/mymindstorm/matrix-appservice-mumble/blob/0.2.0-install-instructions/COMPILING_MURMUR.md
From the gRPC docs:
https://github.com/grpc/grpc/blob/master/BUILDING.md#building-with-make-on-unix-systems-deprecated
I am not sure if bazel or cmake will automatically compile
protoc
inthird_party/
. When I ran bazel it didn't seem like it but I could be mistaken.Edit: Output when trying to
sudo make install
: