无法编译gRPC java

问题描述 投票:1回答:1

当我尝试为java编译gRPC时,我收到以下错误

我正在运行的命令是gradlew.bat installDist

Execution failed for task ':grpc-compiler:compileJava_pluginExecutableJava_pluginCpp'.
> No tool chain is available to build for platform 'x86_64':
    - Tool chain 'visualCpp' (Visual Studio): Could not locate a Visual Studio installation, using the Windows registry and system path.
    - Tool chain 'gcc' (GNU GCC): Could not find C compiler 'gcc' in system path.
    - Tool chain 'clang' (Clang): Could not find C compiler 'clang' in system path.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

我已将Microsoft Visual Studio文件夹(C:\ Program Files(x86)\ Microsoft Visual Studio 14.0)添加到路径中


更新

我已经安装了gcc和clang,但我仍然遇到上述错误

enter image description here

grpc-java
1个回答
0
投票

我刚刚遇到了同样的问题,结果我跳过了一步,更改为示例目录,它将起作用。

$ # Clone the repository at the latest release to get the example code:
$ git clone -b v1.8.0 https://github.com/grpc/grpc-java
$ # Navigate to the Java examples:
$ cd grpc-java/examples

**Run a gRPC application**

1. Compile the server    
$ ./gradlew installDist

2. Run the server
$ ./build/install/examples/bin/hello-world-server

3. In another terminal, compile and run the client
$ cd android/helloworld
$ ./gradlew installDebug

Congratulations! You’ve just run a client-server application with gRPC.

https://grpc.io/docs/quickstart/android.html#run-a-grpc-application

© www.soinside.com 2019 - 2024. All rights reserved.