The LLVM-based D Compiler.
Find a file
David Nadlinger 4774745f44 Do not try to generate metadata for unresolved types.
This does not fix the root cause, which is likely a frontend
bug/oddity, but avoids the crash.
2013-06-16 20:23:07 +02:00
bash_completion.d Enhance completion path 2012-01-20 19:19:04 +01:00
cmake/Modules Search LLVM_ROOT_DIR before system directories. 2013-06-05 17:11:08 +02:00
dmd2 Removed unused and broken template instantiation origin detection. 2013-06-16 18:21:36 +02:00
driver Accept '.dd' pure DDoc files. 2013-06-16 00:39:47 +02:00
gen Do not try to generate metadata for unresolved types. 2013-06-16 20:23:07 +02:00
ir Do not codegen aggregate types from within debug info generation. 2013-06-16 19:33:04 +02:00
runtime Fold in rudimentary rt.sections implementation. 2013-06-14 15:03:24 +02:00
tests/d2 Test suite updates. 2013-06-16 01:06:20 +02:00
utils Sort includes according to style guidelines: 2013-02-07 21:20:55 +01:00
vcbuild using rsp instead of esp 2013-01-26 13:24:13 +01:00
.gitattributes Do not include .travis.yml in release tarballs. 2012-12-13 16:20:05 +01:00
.gitmodules Imported D2 testsuite (v2.060) as submodule. 2012-09-07 03:51:31 +02:00
.travis.yml Stop running Travis tests using LLVM 3.0. 2013-05-31 20:48:38 +02:00
CMakeLists.txt Remove USE_METADATA. 2013-06-07 02:48:53 +02:00
Doxyfile Added Doxygen file. 2009-04-15 20:06:25 +02:00
ldc2.conf.in Do not generate .di files for druntime modules. 2013-03-17 19:23:22 +01:00
ldc2.rebuild.conf.in Use shiny new debug libraries. 2012-12-06 16:24:22 +01:00
ldc2_install.conf.in Use shiny new debug libraries. 2012-12-06 16:24:22 +01:00
ldc2_phobos.conf.in Do not generate .di files for druntime modules. 2013-03-17 19:23:22 +01:00
LICENSE Merged all licenses into LICENSE for release packaging; updated LDC copyright year. 2012-12-16 17:19:14 +01:00
README *LLVM-based* D compiler. 2013-05-27 16:37:23 +02:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

LDC  the LLVM-based D Compiler
===============================

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 and
libconfig++ (http://hyperrealm.com/libconfig/libconfig.html)
available, there should be no big surprises, though.

Do not forget to make sure all the submodules are up to date:
  $ cd ldc
  $ git submodule update --init

Some Linux distributions are also packaging a recent version of LDC,
so building it manually might not be necessary.


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 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!