c++ test1test.cc test1.pb.cc -o c -std=c++11
出错:
collect2: error: ld returned 1 exit status
解决:
c++ test1test.cc test1.pb.cc -o c -std=c++11 `pkg-config --cflags --libs protobuf`
c++ test1test.cc test1.pb.cc -o c -std=c++11
出错:
collect2: error: ld returned 1 exit status
解决:
c++ test1test.cc test1.pb.cc -o c -std=c++11 `pkg-config --cflags --libs protobuf`