簡體   English   中英

gRPC安裝在“ make”位置失敗

[英]gRPC installation fails at “make”

我正在按照“從源構建” 說明安裝grpc

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

成功

$ cd grpc

成功

$ git submodule update --init

成功

$ make

構建一些源文件后失敗

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

作業系統:Linux 4.4.0-0 SMP Debian 4.4.16-1

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

我在互聯網上找不到任何未解決的問題或有關此錯誤的任何幫助。

該問題似乎是在編譯boringssl時發生的。 我們使用$ git submodule給定的版本,在撰寫本文時,該版本為be2ee342d3781ddb954f91f8a7e660c6f59e87e5 third_party/boringssl (version_for_cocoapods_7.0-526-gbe2ee342) 您能夠自行編譯boringssl嗎?

如果沒有嵌入式BoringSSL,您可能會有更好的運氣。 嘗試使用:

EMBED_OPENSSL=false make

如果遇到有關缺少軟件包的錯誤,請確保已安裝libssl-dev

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM