| 网站首页 | 文学 | 小说 | 动漫 | 论文 | 军事 | 科技 | 图片 | 教育 | 哲学 | 历史 | 英语 | 
首页>>计算机 >>程序编程 用户登录 新用户注册
Building Shared Libraries

Building Shared Libraries

Building shared libraries for Linux is often considered a black art. In this article, Eric explains five simple steps to producing a standard Linux shared library, and tells the curious where to find more information.

by Eric Kasten

Shared libraries are probably most often used because they allow for the creation of shared executables, which take less disk space. They also allow the compression of multiply defined global variables into a single instance of the variable that all program modules share. Also possible is the creation of a compatible, drop-in replacement for an existing shared library. Improvements or fixes in the replacement library are then immediately available to executables the library is linked with. This last possibility is beyond the scope of this article.

Dynamically linked libraries (DLLs) have become an important part of the Linux system. Even though ELF (the executable and linking format designed for Unix SVR4), which makes creating shared
< 1 >   < 2

在百度搜索:Building Shared Libraries
推 荐
相 关 文 章
  • Linux ioctl() Primer
  • 小软件项目开发的管理
  • TCP/IP 协议
  • 高级套接字函数
  • 用户数据报发送
  • 完整的读写函数
  • 服务器和客户机的信息函数
  • 第六篇:从程序员到系统分析员之一
  • 第七篇:从程序员到系统分析员之二
  • 第五篇:达到目标必经的路 之三