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.
一些 linux 应用程序,如 supertuxkart 或 regnum online 具有静态二进制文件,下载后无需安装任何共享库即可工作。在每个发行版上。我怎样才能制作这样的应用程序?
确保所有资源都包含在可执行文件中并静态链接可执行文件:
gcc -o foo main.o -static -lbaz -lbar
然而,这也有缺点。查找动态链接。