Hi,
I am student of UW-Madison and I am trying to use gRpc for some class project.
I was able to successfully install everything by following the instrctuion but when I try to run hello world program of c++, I get following erros:
root@Nishant-PC:/home/nishant/workspace/grpc/examples/cpp/helloworld# make
helloworld.grpc.pb.cc helloworld.pb.ccprotoc -I ../../protos --grpc_out=. --plugin=protoc-gen-grpc=`which grpc_cpp_plugin` ../../protos/helloworld.proto
helloworld.proto:33:8: Option "objc_class_prefix" unknown.
If I try to do make it gives me,
DEPENDENCY ERROR
You don't have the grpc c++ protobuf plugin installed in your path.
Please install grpc. You can find it here:
https://github.com/grpc/grpcHere is what I get when trying to detect if you have the plugin:
which grpc_cpp_plugin
make: [system-check] Error 1 (ignored)
make: *** [system-check] Error 1
I tried to search for instruction to install grpc_cpp_plugin but not able to find it.
It would be great if someone could help me here.