Organization of This Document
See Also
Applications are rarely implemented as a single module of code because operating systems implement much of the functionality applications need in libraries. To develop applications, programmers link their custom code against these libraries to get basic functionality, such as the ability to write to standard output or draw complex images using a graphics card. However, linking to libraries creates large executable files and wastes memory. One way to reduce the file size and memory footprint of applications is to reduce the amount of code that is loaded at application launch. Dynamic libraries address this need; they can be loaded either at application launch time or at runtime. Dynamic libraries provide a way for applications to load code when it’s actually needed.
To load dynamic libraries at runtime, applications should use a set of efficient and portable functions, called dynamic loader compatibility functions. Using these functions ensures that dynamic libraries are loaded in the most efficient way and facilitates the porting of applications from one platform to another.
This document is intended for developers of dynamic libraries and developers who use dynamic libraries in their applications. You should be familiar with the Mac OS, UNIX, Solaris, or Linux operating systems. You should also be an experienced C, C++, or Objective-C programmer.
This document explains how dynamic libraries are loaded at application launch time and how to use the DLC functions, dlopen
, dlsym
, dladdr
, dlclose
, and dlerror
, to load dynamic libraries at runtime. This document also provides guidelines for developing dynamic libraries to be used by client applications.
This document doesn’t address the needs of Carbon or Cocoa programmers who need to load code packaged in a framework or a bundle at runtime or those who want to learn how to package dynamic libraries into frameworks or bundles. The documents Framework Programming Guide, and Code Loading Programming Topics for Cocoa provide information tailored specifically to Carbon and Cocoa developers.
After reading this document, you will understand how dynamic libraries should be implemented so they can be used effectively by client applications. You will also know how to use the cross-platform DLC functions to load dynamic libraries at runtime.
This document is comprised by the following articles:
“Overview of Dynamic Libraries” explains what dynamic libraries are and how they are used by applications. It also provides an overview of the Mac OS X dynamic loader and its cross-platform programming interface.
“Dynamic Library Design Guidelines” explains how to name and export public symbols so that they are easy to use by clients and how to implement static initializers and finalizers. This article also provides tips on how to manage compatibility and dependency issues. Finally, this article lists issues to consider when implementing a dynamic library using C++ or Objective-C.
“Dynamic Library Usage Guidelines” shows how to correctly load and use dynamic libraries in applications or in other dynamic libraries. It also provides specific details for using C++–based libraries and Objective-C–based libraries.
“Creating Dynamic Libraries” demonstrates how to develop dynamic libraries so that they are easy to use by developers who want to take advantage of them in their products.
“Using Dynamic Libraries” describes the process of installing and using dynamic libraries. It also shows how to interpose the functions exported by a dynamic library.
“Logging Dynamic Loader Events” explains how to turn on dynamic loader logging and identifies the events that can be logged.
“Run-Path Dependent Libraries” describes how to create run-path dependent libraries and how to use them in executables.
To complement the information provided in this document, consult the following documents:
Code Size Performance Guidelines focuses on techniques you can use to reduce the size of your code and use memory efficiently by grouping code into modules according to functionality.
“Executing Mach-O Files” in Mach-O Programming Topics describes the application-launch process. In particular this article explains how the dynamic loader binds imported symbols and explains the advantages of using a two-level namespace instead of a flat namespace. This article also explains the different storage classes and symbol attributes you can use to control the visibility of a dynamic library’s exported symbols.
“Loading Code at Runtime” in Mach-O Programming Topics explains how to package a dynamic library as a framework, which provides features such as resource management and a streamlined versioning model.
You can find further information on dynamic libraries in the following documents:
Framework Programming Guide explains how to package dynamic libraries into frameworks.
Porting UNIX/Linux Applications to Mac OS X explains how to use dynamic libraries (plug-ins) to reduce the amount of platform-specific code in an application.
How to Write Shared Libraries (http://people.redhat.com/drepper/dsohowto.pdf) describes in great detail Linux’s shared objects (dynamic libraries) and provides guidelines on the design and implementation of a library’s API and ABI, including compatibility, performance, and security issues.
© 2009 Apple Inc. All Rights Reserved. (Last updated: 2009-02-26)