Let dmd or ldc be easy to setup on Ubuntu

Jordi Sayol via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Tue Dec 22 09:28:28 PST 2015


El 22/12/15 a les 16:38, FrankLike via Digitalmars-d-learn ha escrit:
> sudo apt-get install dmd ← it's error.

dmd_2.069.2-0-amd64.deb from http://downloads.dlang.org/ is an all-in-one deb package, containing all the tools and libraries for each release.

"d-lang" splits it in few deb packages:

    dmd-bin (compiler and other executable files)
    dmd-doc (documentation, man pages and examples)
    libphobos2-69 (shared library)
    libphobos2-dev (static library, symlink to shared library, module sources and pkg-config files)

So if you want to install dmd compiler, just type:
$ sudo apt-get install dmd-bin

Regards,
Jordi





More information about the Digitalmars-d-learn mailing list