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.
我的印象是数学库是静态链接的,因为-l name链接到libname.a,但是如果我尝试使用-static标志编译,突然 GCC 找不到数学函数。
-l name
libname.a
-static
这是否意味着数学不一定是静态链接的?还是这里发生了其他事情?
如果它会静态编译,你会写gcc libname.a而不是gcc -l libname.
gcc libname.a
gcc -l libname
对于您的问题,是的,数学库是动态链接的。