The LLVM-based D Compiler.
Find a file
2016-03-13 16:44:07 +01:00
bash_completion.d Use bash completion dir from config if available 2015-02-19 17:49:22 +02:00
cmake/Modules Merge remote-tracking branch 'origin/ltsmaster' 2016-03-13 16:44:07 +01:00
ddmd Revert "Revert "Merge branch 'ltsmaster'"" 2016-03-03 21:12:53 +01:00
dmd2/root Run semantic on Type::tvalist. 2016-02-29 08:38:08 +00:00
driver Fix #1344. Add --version to ldmd2. 2016-03-11 17:23:46 +01:00
gen Merge remote-tracking branch 'origin/ltsmaster' 2016-03-13 16:44:07 +01:00
ir Revert "Revert "Merge branch 'ltsmaster'"" 2016-03-03 21:12:53 +01:00
runtime Merge remote-tracking branch 'origin/ltsmaster' 2016-03-13 16:44:07 +01:00
tests Merge remote-tracking branch 'origin/ltsmaster' 2016-03-13 16:44:07 +01:00
utils "Properties" has been renamed "IntrProperties" in LLVM 3.9 2016-02-21 10:33:35 +01:00
vcbuild Windows: make sure the linker batch files return the linker's exit code 2015-10-18 00:42:21 +02:00
.clang-format driver/gen/ir: clang-format the world 2015-11-02 00:28:01 +02: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 Relocate the Lit-based testsuite to /tests (from /tests/ir). 2016-02-29 00:34:37 +01:00
appveyor.yml MSVC: Limit debug info display names to ~64k 2016-03-12 16:30:49 +01:00
CMakeCPack.cmake Add CPack configuration for debian packages 2014-02-12 15:16:43 +01:00
CMakeLists.txt Merge remote-tracking branch 'origin/ltsmaster' 2016-03-13 16:44:07 +01: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
LDC-DMD2.068.2 full.diff Add the dmd2 and dmd2/root directories DIFF of LDC (14 jan, SHA d3da2391ed) with DMD2.068.2 (23 sep, SHA ef854c328bf8798f3154dc923d1b7115acd97c70). 2016-01-28 17:04:43 +01:00
LDC-DMD2.068.2 WIP.diff dmd2 --> ddmd. Merge (almost all of) our changes to dmd source into the new D source of dmd 2.069.2. 2016-01-28 19:03:58 +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 Simplify and fix install target 2015-09-26 15:24:36 +02:00
LICENSE Merged all licenses into LICENSE for release packaging; updated LDC copyright year. 2012-12-16 17:19:14 +01:00
README.md Update README.md [NFC] 2016-02-23 20:33:14 +01:00

LDC the LLVM-based D Compiler

Build Status Test Coverage 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

In-depth material on building and installing LDC and the standard libraries, including experimental instructions for running LDC on Windows, is available on the project wiki at http://wiki.dlang.org/Building_LDC_from_source.

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

Some Linux and OS X 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.

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!