Darwin/macOS emulation layer for Linux
Go to file
2023-05-02 16:22:04 -07:00
.circleci Update CircleCI image 2021-05-03 22:15:55 -04:00
.github Make Github Actions run on pull requests too 2021-05-29 19:40:11 -04:00
.vscode Add Configuration To Load Core Dumps In VSCode Debugger 2023-03-28 11:37:49 -07:00
basic-headers Remove architecture from Darling repo. Add symbol link to architecture submodule. 2023-01-25 11:26:10 -08:00
ci Build Darling on a faster private CI machine 2023-04-14 19:07:46 -04:00
cmake Update add_darling_executable to reference crt1.10.6 2023-05-02 16:22:03 -07:00
debian Add libcap2-bin to Debian build deps 2023-04-14 19:50:52 -04:00
Developer [LDAP] Update Framework header Symbolic-Link 2023-05-02 16:22:04 -07:00
etc Remove obsolete files 2018-08-14 11:10:57 +03:00
framework-include Fix Metal SDK Header Symlinks 2023-05-02 15:37:09 -07:00
framework-private-include Add InternationalSupport Stubs 2022-11-13 15:40:01 -08:00
misc Cleanup benchmarks, misc and tools directories 2016-02-26 22:59:34 +01:00
rpm Rpm auto version (#918) 2021-02-12 12:58:46 -05:00
src [CryptoTokenKit] Add TKBindUserAm Stub 2023-05-02 16:22:04 -07:00
tests/src Remove unused stuff from tests/ 2016-02-26 23:03:00 +01:00
tools Don't use backslashes for "${FRAMEWORK_VERSION}" 2022-09-08 20:29:43 -07:00
.gdbinit Loads of work on dyld and BSD functions 2012-08-15 12:17:58 +02:00
.gitignore Add some CLion files to .gitignore 2022-11-24 01:13:46 -05:00
.gitmodules Start work on an actual Metal implementation 2023-04-10 07:26:15 -04:00
CMakeLists.txt cmake: Make Python 2 bytecode pre-compilation optional 2023-04-23 16:22:37 -06:00
CONTRIBUTORS.md Add contributors file 2017-04-06 09:12:11 +02:00
LICENSE Loads of work, libmacarchive added, copyright headers... 2012-10-22 19:02:06 +02:00
README.md Update URLs to HTTPS 2021-01-04 03:56:37 +03:00

Darling

Darling logo

Darling is a runtime environment for macOS applications.

Please note that most GUI applications will not run at the moment.

Download

Packages for some distributions are available for download under releases.

Build Instructions

For build instructions, visit Darling Docs.

Prefixes

Darling has support for DPREFIXes, which are very similar to WINEPREFIXes. They are virtual “chroot” environments with an macOS-like filesystem structure, where you can install software safely. The default DPREFIX location is ~/.darling, but this can be changed by exporting an identically named environment variable. A prefix is automatically created and initialized on first use.

Please note that we use overlayfs for creating prefixes, and so we cannot support putting prefix on a filesystem like NFS or eCryptfs. In particular, the default prefix location won't work if you have an encrypted home directory.

Hello world

Let's start with a Hello world:

$ darling shell echo Hello world
Hello world

Congratulations, you have printed Hello world through Darling's OS X system call emulation and runtime libraries.

Installing software

You can install .pkg packages with the installer tool available inside shell. It is a somewhat limited cousin of OS X's installer:

$ darling shell
Darling [~]$ installer -pkg mc-4.8.7-0.pkg -target /

The Midnight Commander package from the above example is available for download.

You can uninstall and list packages with the uninstaller command.

Working with DMG images

DMG images can be attached and deattached from inside darling shell with hdiutil. This is how you can install Xcode along with its toolchain and SDKs (note that Xcode itself doesn't run yet):

Darling [~]$ hdiutil attach Xcode_7.2.dmg
/Volumes/Xcode_7.2
Darling [~]$ cp -r /Volumes/Xcode_7.2/Xcode.app /Applications
Darling [~]$ export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk
Darling [~]$ echo 'void main() { puts("Hello world"); }' > helloworld.c
Darling [~]$ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang helloworld.c -o helloworld
Darling [~]$ ./helloworld
Hello world

Congratulations, you have just compiled and run your own Hello world application with Apple's toolchain.

Working with XIP archives

Xcode is now distributed in .xip files. These can be installed using unxip:

cd /Applications
unxip Xcode_11.3.xip