我工作在一个项目protobuf
和zmq
参与。 我已经完成了它在VS2010,现在希望把它在Linux下工作。 我刚安装protobuf
和zmq
我们的Linux服务器和Makefile
看起来是这样的:
g++ -c -D_DEBUG TestTDFAPI_v2.cpp -I ../
g++ -c -D_DEBUG Platform.cpp
g++ -c -D_DEBUG PathHelper.cpp
g++ -c -D_DEBUG MyStruct.pb.cpp
g++ -c -D_DEBUG MyStruct.cpp
g++ -o Test_TDFAPI_v2 Platform.o PathHelper.o MyStruct.pb.o MyStruct.o TestTDFAPI_v2.o -l /usr/local/include -L /usr/local/lib -L../ -L../linux/ -lTDFAPI_v2 -lWHNetWork -lpthread -lprotobuf
化妆后,我得到了以下错误:
/usr/bin/ld: cannot find -l/usr/local/include
collect2: ld returned 1 exit status
任何人有任何线索?