protobuf学习:联编错误

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`

你可能感兴趣的:(protobuf学习:联编错误)