Difference between revisions of "LDC"
(Update status of LDC on X86_64 MSVC, ARM, PowerPC 32bit and 64bit) |
(Update status LDC on MIPS64) |
||
Line 65: | Line 65: | ||
* Multi-lib build is possible on Linux/PPC64 Big Endian. | * Multi-lib build is possible on Linux/PPC64 Big Endian. | ||
* More testing is needed. | * More testing is needed. | ||
+ | * Contact: kai@redstar.de | ||
+ | |||
+ | === MIPS64 === | ||
+ | |||
+ | * Requires at least LLVM 3.5. | ||
+ | * LDC compiles cleanly but there are some issues in druntime and phobos (mostly vararg related). | ||
+ | * Current target is N64 ABI. | ||
* Contact: kai@redstar.de | * Contact: kai@redstar.de | ||
Revision as of 13:25, 9 November 2014
The LDC project aims to provide a portable D programming language compiler with modern optimization and code generation capabilities. The compiler uses the official DMD frontend to support the latest D2 version and relies on the LLVM Core libraries for code generation.
LDC is fully Open Source; the parts of the code not taken/adapted from other projects are BSD-licensed (see the LICENSE file for details).
D1 is no longer supported in the current development tree; the last version supporting it can be found at the d1 Git branch.
Contents
Getting started
- Latest binary releases and related forum thread
- Building LDC from source
- Building LDC on MinGW x86
- Building and hacking LDC on Windows using MSVC
- Installing LDC on Gentoo - Official Dlang Gentoo overlay
- Using LDC (LDC-specific language changes — LDC inline assembly expressions — LDC inline IR)
- Reporting LDC issues — LDC contributor's guide
Project status
In general, LDC should work fine on most x86/x86-64 Unix-like systems, including Linux, OS X 10.7+ and most BSD flavors. Code generation should work for other platforms supported by the LLVM MC codegen infrastructure (for example ARM), but druntime/Phobos support will most likely be lacking.
OS X version prior to 10.7 (Lion) are currently not supported by the D2 compiler, because LLVM's support for thread-local storage depends on functionality which first appeared in 10.7.
x86 Windows using MinGW
- LDC 2 from Git master compiles and builds druntime/Phobos, but requires recent MinGW and LLVM versions for a few critical bug fixes. See Building LDC on MinGW x86.
- Most programs work just fine (including TLS and exception handling).
- A small number of remaining test cases still fails, but many of the harder issues (real math precision, MS C runtime-caused problems, ABI differences) have already been solved.
- Estimate for making Windows x86/MinGW a »first class« target: 1 weekend of focused work, plus a Windows CI slave.
x86-64 Windows using MSVC
- LDC2 from master branch compiles cleanly.
- LLVM 3.6 (current trunk) is required.
- See Building and hacking LDC on Windows using MSVC for detailed instructions.
- There are no compile issues in druntime and phobos.
- Several unit tests still fail: https://github.com/ldc-developers/ldc/issues/758
- Contact: kai@redstar.de
ARM
- LDC from Git master is able to build a working Phobos "Hello World" application.
- LLVM 3.4 is required, there are many known bugs affecting ARM in older versions.
- EH support is still broken, and there are many other severe bugs: https://github.com/ldc-developers/ldc/issues?labels=B-arm&state=open
- Android has not been tested yet and most likely does not even compile.
- LDC has successfully been used to create a minimal free-standing ARM Cortex-M binary, see Minimal semihosted ARM Cortex-M "Hello_World".
PowerPC 32-bit
- Requires at least LLVM 3.4 because of PR16556
- TLS support only for LocalExec model, see PR16555
- Code generation is known to work.
- There are no compile issues in druntime and phobos.
- Linux/PPC32 specific implementations are missing: core.cpuid, std.internal.math.bigintppc32, ...
- More testing is needed.
- Contact: kai@redstar.de
PowerPC 64-bit Big Endian and Little Endian
- PPPC64 Big Endian requires at least LLVM 3.4. PPC64 Little Endian requires at least LLVM 3.5. Both are affected by PR21443.
- Only Linux because LLVM does not cleanly compile on AIX.
- Code generation is known to work.
- There are no compile issues in druntime and phobos.
- There are still some test failures. Most of the failures are related to math precision (e.g. unit test expects 80bit reals)
- Linux/PPC64 specific implementations are missing: core.cpuid, std.internal.math.bigintppc64, ...
- Multi-lib build is possible on Linux/PPC64 Big Endian.
- More testing is needed.
- Contact: kai@redstar.de
MIPS64
- Requires at least LLVM 3.5.
- LDC compiles cleanly but there are some issues in druntime and phobos (mostly vararg related).
- Current target is N64 ABI.
- Contact: kai@redstar.de
Contributing
LDC is an entirely community-driven effort, so all contributions are warmly welcomed. The easiest way to help with development is to write high-quality bug reports for any issues you run into. For a quick guide on what a useful report should contain, please see Reporting LDC issues.
If you are interested in getting into compiler development, anecdotal evidence suggests that hacking on LDC might be a nice first step, particularly because the LLVM backend is very comfortable to work with. To get started, just browse through the issue list, find a ticket that tickles your fancy (some of them are specifically marked as "junior jobs"), and work on a fix – and of course don't hesitate to ask for advice at the mailing list or on IRC. An LDC contributor's guide is in the works.
We would also be excited to see LDC packages in more OS distributions, particular Debian and its derivatives. So, if you think you might be able to help, please just drop us a line at the development mailing list. We will actively try to make packaging as smooth as possible, but besides the fact that upstream-maintained packages are sometimes discouraged, it is hard to build good packages for a system you don't know well, so we need to rely on external contributors here.
Useful Links
- Issue tracker (GitHub)
- Source code (GitHub)
- LDC discussion forum (also available via NNTP and a mailing list interface, see the forum index)
- LDC IRC channel (#ldc on Freenode)