Currently I am my writing cpp app on MingW which uses protobuf. But during compilation, it shows lots of linker errors, saying
undefined reference to google::protobuf::internal
and
undefined reference to google::protobuf::message.
I have already included -L/path/to/lib/ -lprotobuf
in gcc.
But still not working..
Any input?