如何解决gRPC生成的文件中的编译错误?

时间:2019-07-10 12:58:19

标签: c++ cmake grpc

我正在使用gRPC创建客户端服务器应用程序。到目前为止,我还没有使用TLS加密。现在我要启用它,奇怪的是我得到了这个错误。至少在我看来,这是一个链接器错误。解决问题的最佳方法是什么? CLion不会突出显示任何内容,因此我认为语法上一切正常,但是在编译时出现了该错误。

/usr/bin/ld: CMakeFiles/projectname.dir/main.cpp.o: in function `grpc::SslServerCredentials(grpc::SslServerCredentialsOptions const&)':
/home/username/projectname/third_party/grpc/include/grpcpp/security/server_credentials.h:60: undefined reference to `grpc_impl::SslServerCredentials(grpc::SslServerCredentialsOptions const&)'
collect2: error: ld returned 1 exit status

这是我用来根据gRPC规范生成C ++代码的makefile:

HOST_SYSTEM = $(shell uname | cut -f 1 -d_)
SYSTEM ?= $(HOST_SYSTEM)
CXX = g++
CPPFLAGS += `pkg-config --cflags protobuf grpc`
CXXFLAGS += -std=c++11
ifeq ($(SYSTEM),Darwin)
LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++`\
           -lgrpc++_reflection\
           -ldl
else
LDFLAGS += -L/usr/local/lib `pkg-config --libs protobuf grpc++`\
           -Wl,--no-as-needed -lgrpc++_reflection -Wl,--as-needed\
           -ldl
endif
PROTOC = protoc
GRPC_CPP_PLUGIN = grpc_cpp_plugin
GRPC_CPP_PLUGIN_PATH ?= `which $(GRPC_CPP_PLUGIN)`

PROTOS_PATH = ./

vpath %.proto $(PROTOS_PATH)

%.grpc.pb.cc: %.proto
    $(PROTOC) -I $(PROTOS_PATH) --grpc_out=. --plugin=protoc-gen-grpc=$(GRPC_CPP_PLUGIN_PATH) $<

%.pb.cc: %.proto
    $(PROTOC) -I $(PROTOS_PATH) --cpp_out=. $<

clean:
    rm -f *.o *.pb.cc *.pb.h

1 个答案:

答案 0 :(得分:1)

然后像这样解决了问题: 我必须在grpc++_unsecure cmake构建配置文件中的grpc++下将target_link_libraries切换到CMakeLists.txt。 起初我忘记/没想到。

target_link_libraries(bita_server
        pqxx
        sodium
        protobuf::libprotobuf
#        grpc++_unsecure
        grpc++
        SQLiteCpp
        sqlite3
        pthread
        dl
        ${_PROTOBUF_LIBPROTOBUF}
)