The LLVM-based D Compiler.
Find a file
David Nadlinger 65476809d5 Merge pull request #1863 from JohanEngelen/fixsoftfloat
Set `+soft-float` feature instead of `use-soft-float` attribute.
2016-10-29 16:52:08 +01:00
bash_completion.d Use bash completion dir from config if available 2015-02-19 17:49:22 +02:00
cmake/Modules fix build with LLVM 4.0: debuginfomsf needed by debuginfocodeview 2016-09-20 08:36:32 +02:00
ddmd Introduce (hidden) command-line option -cleanup-obj 2016-10-15 23:53:30 +02:00
driver Merge pull request #1863 from JohanEngelen/fixsoftfloat 2016-10-29 16:52:08 +01:00
gen Merge pull request #1863 from JohanEngelen/fixsoftfloat 2016-10-29 16:52:08 +01:00
ir Fix dynamic initialization of unions 2016-10-25 01:06:44 +02:00
runtime Implement single-thread fences via the LDC_fence pragma. (#1837) 2016-10-18 19:20:44 +01:00
tests UseSoftFloat was removed from the TargetOptions in LLVM3.7. It's replacement (I believe) is the "+soft-float" target feature (in the target feature string). Inside LLVM, the "use-soft-float" attribute is upgraded to the "+soft-float" feature, so we can do that ourselves when creating the target machine. 2016-10-28 17:19:26 +09:00
tools Merge pull request #1812 from JohanEngelen/rename-ir2obj 2016-10-16 16:27:06 +02:00
utils Move ldc-profdata source into the tools directory. 2016-09-15 20:25:27 +02:00
vcbuild Windows: Detect Visual C++ Build Tools automatically 2016-08-16 21:23:21 +02:00
.clang-format .clang-format: Disable include sorting for now [nfc] 2016-03-27 12:08:21 +01:00
.clang-tidy clang-tidy: Add readability-else-after-return 2015-11-02 11:30:40 +02:00
.editorconfig Add a .editorconfig file for dfmt. The settings are the same as DMD's. [NFC] 2016-03-04 20:24:25 +01:00
.gitattributes set proper attributes for Windows 2014-07-01 20:02:51 +02:00
.gitmodules Imported D2 testsuite (v2.060) as submodule. 2012-09-07 03:51:31 +02:00
.travis.yml [Travis] Bump the LDC LTS version. 2016-10-17 00:07:11 +02:00
appveyor.yml Work around AppVeyor bug 2016-09-24 12:18:19 +02:00
circle.yml CircleCI: build LDC with itself and test that version. (#1810) 2016-10-07 14:38:31 +02:00
CMakeCPack.cmake Add CPack configuration for debian packages 2014-02-12 15:16:43 +01:00
CMakeLists.txt Bump version. 2016-10-23 17:10:32 +09:00
Doxyfile Inlined sources in Doxygen docs (for tablet use) and increased DOT max. nodes to 1,000. 2015-02-20 14:57:44 +01:00
ldc2.conf.in Simplify and fix install target 2015-09-26 15:24:36 +02:00
ldc2_install.conf.in Dynamically load libcurl when needed (backport from post-2.068 upstream) 2015-08-29 14:56:43 +02:00
ldc2_phobos.conf.in [PGO] Add PGO to LDC. Supported for LLVM >= 3.7 2016-06-20 17:28:22 +02:00
LICENSE Relicense profile-rt/d/ldc/profile.d (sole author Johan Engelen). 2016-10-06 11:21:11 +02:00
README.md Remove Coveralls badge 2016-09-10 18:24:50 +01:00

LDC the LLVM-based D Compiler

Build Status Bountysource

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 frontends to support the latest version of D2, 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).

Please consult the D wiki for further information: http://wiki.dlang.org/LDC

D1 is no longer available; see the 'd1' Git branch for the last version supporting it.

Installation

From a pre-built package

Linux and OS X

Some package managers include recent versions of LDC, so manually installing it might not be necessary. For several platforms, there are also stand-alone binary builds available at the GitHub release page.

Distribution Command
Arch Linux pacman -S ldc
Debian apt-get install ldc
Fedora yum install ldc
Gentoo layman -a ldc
HomeBrew brew install ldc
Ubuntu apt-get install ldc
Windows

The latest official releases can be downloaded from the GitHub release page.

For bleeding-edge users, we also provide the latest successful continuous integration builds.

LDC for Windows relies on the Microsoft linker. So you'll either need Visual Studio (2015 is greatly encouraged; 2013 works too if you build LDC yourself) with Visual C++, or the stand-alone Visual C++ Build Tools.

Building from source

In-depth material on building and installing LDC and the standard libraries is available on the project wiki for Linux and OS X and Windows.

If you have a working C++ build environment, CMake, a current LLVM (>= 3.5), and libconfig available there should be no big surprises. Building LDC also requires a working D compiler, DMD and LDC are supported. (LDC 0.17 is the last version that does not need a D compiler, and for that reason we try to maintain it in the 'ltsmaster' branch).

Do not forget to make sure all the submodules (druntime, phobos, dmd-testsuite) are up to date:

$ cd ldc
$ git submodule update --recursive --init

Contact

The best way to get in touch with the developers is either via the digitalmars.D.ldc forum/newsgroup/mailing list (http://forum.dlang.org) or our Gitter chat. There is also the #ldc IRC channel on FreeNode.

For further documentation, contributor information, etc. please see the D wiki: http://wiki.dlang.org/LDC

Feedback of any kind is very much appreciated!