If static libraries and static linkage were Atari controllers, dynamic libraries and dynamic linkage are Steel Battalion controllers. We’ll show how to work with them in the rest of this post, but I’ll prove how memory is saved in a later post. Let’s say we want to created a shared version of libhello. Jul 23, 2012 It also provides an overview of the 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. Oct 27, 2012  Building Python lxml in a virtualenv on Mac OS X 10.7 Published on the 27 Oct, 2012. UPDATE: As of 19th April 2013, libxml has been updated to version 2.9.1.This fixes the issue that was in 2.9.0 which resulted in a failed build on Mac OS. Usually a runtime is provided as a library that gets implicitly linked into your executable when you compile.) You can statically link against libc with the -static flag, on Linux at least (OSX makes this difficult, “Apple does not support statically linked binaries on Mac OS X”).

Apps are rarely implemented as a single module of code because operating systems implement much of the functionality apps need in libraries. To develop apps, 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 apps is to reduce the amount of code that is loaded at app launch. Dynamic libraries address this need; they can be loaded either at app launch time or at runtime. Dynamic libraries provide a way for apps to load code when it’s actually needed.

To load dynamic libraries at runtime, apps 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 apps from one platform to another.

This document is intended for developers of dynamic libraries and developers who use dynamic libraries in their apps. 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 app 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 apps.

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 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 apps. You will also know how to use the cross-platform DLC functions to load dynamic libraries at runtime.

Software: This content of this document was tested with to OS X v10.7 and the Xcode 4.3.3 Command Line Tools component.

Organization of This Document

This document is comprised by the following articles:

  • Overview of Dynamic Libraries explains what dynamic libraries are and how they are used by apps. It also provides an overview of the 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 apps 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.

See Also

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 app-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.

Merge two photo libraries mac. 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 OS X explains how to use dynamic libraries (plug-ins) to reduce the amount of platform-specific code in an app.

  • 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.



Copyright © 2012 Apple Inc. All Rights Reserved. Terms of Use Privacy Policy Updated: 2012-07-23