简体   繁体   English

gRPC安装在“ make”位置失败

[英]gRPC installation fails at “make”

I am following the Built From Source instructions to install grpc 我正在按照“从源构建” 说明安装grpc

$ git clone -b $(curl -L https://grpc.io/release) https://github.com/grpc/grpc

success 成功

$ cd grpc

success 成功

$ git submodule update --init

success 成功

$ make

fails after building a few source files 构建一些源文件后失败

third_party/boringssl/crypto/rand/urandom.c:62:2: error: #error "system call number for getrandom is not the expected value"
#error "system call number for getrandom is not the expected value"
 ^
In file included from /usr/include/x86_64-linux-gnu/sys/syscall.h:31:0,
from third_party/boringssl/crypto/rand/urandom.c:32:
third_party/boringssl/crypto/rand/urandom.c: In function ‘init_once’:
third_party/boringssl/crypto/rand/urandom.c:128:15: error: ‘__NR_getrandom’ undeclared (first use in this function)
syscall(SYS_getrandom, &dummy, sizeof(dummy), GRND_NONBLOCK);
         ^
third_party/boringssl/crypto/rand/urandom.c:128:15: note: each undeclared identifier is reported only once for each function it appears in
third_party/boringssl/crypto/rand/urandom.c: In function ‘fill_with_entropy’:
third_party/boringssl/crypto/rand/urandom.c:258:21: error: ‘__NR_getrandom’ undeclared (first use in this function)
r = syscall(SYS_getrandom, out, len, 0 /* no flags */);
            ^
Makefile:2564: recipe for target '/home/usrnm/grpc/objs/opt/third_party/boringssl/crypto/rand/urandom.o' failed
make: *** [/home/usrnm/grpc/objs/opt/third_party/boringssl/crypto/rand/urandom.o] Error 1

OS: Linux 4.4.0-0 SMP Debian 4.4.16-1 作业系统:Linux 4.4.0-0 SMP Debian 4.4.16-1

GCC version: gcc (Debian 4.9.2-10) 4.9.2 GCC版本:gcc(Debian 4.9.2-10)4.9.2

I couldn't find any open issues or any help about this error on the internet. 我在互联网上找不到任何未解决的问题或有关此错误的任何帮助。

The problem seems to happen while compiling boringssl . 该问题似乎是在编译boringssl时发生的。 We use the version given by $ git submodule , which at the time of this writing is be2ee342d3781ddb954f91f8a7e660c6f59e87e5 third_party/boringssl (version_for_cocoapods_7.0-526-gbe2ee342) . 我们使用$ git submodule给定的版本,在撰写本文时,该版本为be2ee342d3781ddb954f91f8a7e660c6f59e87e5 third_party/boringssl (version_for_cocoapods_7.0-526-gbe2ee342) Are you able to compile boringssl on its own? 您能够自行编译boringssl吗?

You might have better luck without the embedded BoringSSL. 如果没有嵌入式BoringSSL,您可能会有更好的运气。 Try building with: 尝试使用:

EMBED_OPENSSL=false make

If you get errors about missing packages, make sure you have libssl-dev installed. 如果遇到有关缺少软件包的错误,请确保已安装libssl-dev

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM