linux简单g++指令

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_30549833/article/details/82986272

编译程序:
g++ -c test.cpp
g++ -o test test.o -lrestfulhandlemanager
g++ -o test test.cpp -L ./ -lrestfulhandlemanager.so

-g为debug
g++ -g -o test.cpp

猜你喜欢

转载自blog.csdn.net/qq_30549833/article/details/82986272