Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Pelles C IDE,对于某些项目,必须告诉链接器包含某个库,例如Ws2_32.lib. 目前我正在开发一个我经常在许多项目中重用的函数,所以我决定为它制作一个头文件。有没有办法告诉链接器从头文件中包含某个库?
Ws2_32.lib
你已经链接了图书馆,别无他法。
如果编译器是 linux 中的 gcc,您可以libtemp.so像这样 链接库,然后在运行可执行文件之前添加到gcc youfile.c -ltemp 的路径libtemp.soLD_LIBRARY_PATH
libtemp.so
gcc youfile.c -ltemp
LD_LIBRARY_PATH
在您的 IDE 中,您可以配置相同的内容。