protobuf学习:联编错误
2020-06-02 本文已影响0人
ChanYeol666
c++ test1test.cc test1.pb.cc -o c -std=c++11
出错:
protobuf运行出错 protobuf运行出错collect2: error: ld returned 1 exit status
解决:
c++ test1test.cc test1.pb.cc -o c -std=c++11 `pkg-config --cflags --libs protobuf`