Utility to ease bundling libraries into executables for OSX
Go to file
SCG82 fd0d9cd701 remove unnecessary linking flag in Makefile 2019-12-25 20:39:27 -08:00
src refine help 2019-12-16 11:39:28 -08:00
.gitignore commit .gitignore 2019-12-14 13:43:45 -08:00
.travis.yml Add Travis CI 2018-04-17 08:03:18 +02:00
LICENSE Initial import 2014-05-29 19:48:42 -04:00
Makefile remove unnecessary linking flag in Makefile 2019-12-25 20:39:27 -08:00
README.md Handle frameworks 2019-12-16 05:17:49 -08:00

README.md

mac dylib bundler

About

Mac OS X (now macOS) introduced an innovative and very useful way to package applications: app bundles. While their design has all that is needed to ease distribution of resources and frameworks, it seems like dynamic libraries (.dylib) are very complicated to distribute. Sure, applications developed specifically for macOS (OS X) won't make use of them, however applications ported from Linux or other Unices may have dependencies that will only compile as dylibs. By default, there exists no mechanism to bundle them but some command-line utilities provided by Apple - however it turns out that for a single program it is often necessary to issue dozens of commands! This often leads each developer to create their own "home solution" which are often hacky, non-portable and/or suboptimal.

dylibbundler is a small command-line programs that aims to make bundling .dylibs as easy as possible. It automatically determines which dylibs are needed by your program, copies these libraries inside the app bundle, and fixes both them and the executable to be ready for distribution... all this with a single command! It will also work if your program uses plug-ins that have dependencies too.

It usually involves 2 actions :

  • Creating a directory (by default called Frameworks) that can be placed inside the Contents folder of the app bundle.
  • Fixing the executable file so that it is aware of the new location of its dependencies.

Installation

In Terminal, cd to the main directory of dylibbundler and type "make". You can install with "sudo make install".

Using dylibbundler

Here is a list of flags you can pass to dylibbundler:

-h, --help

Displays a summary of options

-x, --fix-file (executable or plug-in filepath)

Fixes given executable or plug-in file (a .dylib can work too. anything on which `otool -L` works is accepted by `-x`). dylibbundler will walk through the dependencies of the specified file to build a dependency list. It will also fix the said files' dependencies so that it expects to find the libraries relative to itself (e.g. in the app bundle) instead of at an absolute path (e.g. /usr/local/lib). To pass multiple files to fix, simply specify multiple `-x` flags.

-b, --bundle-deps

Copies libaries to a local directory, fixes their internal name so that they are aware of their new location, fixes dependencies where bundled libraries depend on each other. If this option is not passed, no libraries will be prepared for distribution.

-f, --bundle-frameworks

Copies frameworks to a local directory, fixes their internal name so that they are aware of their new location, fixes dependencies where bundled libraries depend on each other. If this option is not passed, no frameworks will be prepared for distribution.

-i, --ignore (path)

Dylibs in (path) will be ignored. By default, dylibbundler will ignore libraries installed in /usr/lib & /System/Library since they are assumed to be present by default on all macOS installations. (It is usually recommend not to install additional stuff in /usr/, always use /usr/local/ or another prefix to avoid confusion between system libs and libs you added yourself)

-d, --dest-dir (directory)

Sets the name of the directory in wich distribution-ready dylibs will be placed, relative to the current working directory. (Default is ./Frameworks) For an app bundle, it is often conveniant to set it to something like ./MyApp.app/Contents/Frameworks.

-p, --install-path (libraries install path)

Sets the "inner" installation path of libraries, usually inside the bundle and relative to executable. (Default is @executable_path/../Frameworks/, which points to a directory named Frameworks inside the Contents directory of the bundle.)

The difference between -d and -p is that -d is the location dylibbundler will put files in, while -p is the location where the libraries will be expected to be found when you launch the app (often using @executable_path, @loader_path, or @rpath).

-s, --search-path (search path)

Check for libraries in the specified path.

-of, --overwrite-files

When copying libraries to the output directory, allow overwriting files when one with the same name already exists.

-od, --overwrite-dir

If the output directory already exists, completely erase its current content before adding anything to it. (This option implies --create-dir)

-cd, --create-dir

If the output directory does not exist, create it.

-q, --quiet

Print only summary information.

-v, --verbose

Print extra information (useful for debugging).

A command may look like % dylibbundler -q -od -b -x ./HelloWorld.app/Contents/MacOS/helloworld -d ./HelloWorld.app/Contents/Frameworks/