我在 Ubuntu 14.4 上使用 Protoc 3.0 版并发出命令
protoc -I ./ --java_out=. --grpc_out=. --plugin=protoc-gen-grpc=/opt/jvision/grpc/oc/protoc-gen-grpc-java-1.0.0-linux-x86_32.exe ./agent.proto
我收到此错误:
/opt/jvision/grpc/oc/protoc-gen-grpc-java-1.0.0-linux-x86_32.exe: program not found or is not executable
--grpc_out: protoc-gen-grpc: Plugin failed with status code 1.
但是,如果我跳过存根部分并发出命令
protoc -I=./ --java_out=. ./agent.proto
它工作得很好。想知道我错过了什么。