Difference between revisions of "Installing LDC on Gentoo"

From D Wiki
Jump to: navigation, search
m (Add a note about make.conf)
m (Add link to Dlang Gentoo wiki)
Line 43: Line 43:
  
 
== Resources ==
 
== Resources ==
 +
[https://wiki.gentoo.org/wiki/Dlang Official Dlang overlay]
 +
 
[https://github.com/ldc-developers/gentoo-overlay Overlay repository on GitHub]
 
[https://github.com/ldc-developers/gentoo-overlay Overlay repository on GitHub]
  

Revision as of 19:06, 2 June 2014

There is a Gentoo portage overlay for the LDC compiler officially supported by the developers. You can add the overlay with layman. If you do not have layman yet then install it with

emerge -av layman

After that you have to add to /etc/portage/make.conf the following line:

source "/var/lib/layman/make.conf"

To use the LDC overlay, simply add our URL to /etc/layman/layman.cfg:

overlays  : http://www.gentoo.org/proj/en/overlays/repositories.xml
            https://raw.github.com/ldc-developers/gentoo-overlay/master/overlays.xml

Then update the overlay list

layman -L

and add the LDC overlay:

layman -a ldc

To emerge LDC you simply type:

emerge -av ldc2

Currently the LDC packages are marked as unstable. If you do not accept unstable packages globally then you have to add to /etc/portage/package.keywords the entry

dev-lang/ldc2 **

Resources

Official Dlang overlay

Overlay repository on GitHub

Gentoo wiki on overlays