gcc 混合连接动态库和静态库

当对动态库与静态库混合连接的时候,使用-static会导致所有的库都使用静态连接的方式。这时需要作用-Wl的方式

gcc test.cpp -L. -Wl,-Bstatic -ltestlib  -Wl,-Bdynamic -ltestlib

posted @ 2017-11-08 08:45  邱明成  阅读(484)  评论(0编辑  收藏  举报