ldc

D compiler using LLVM as a backend. More information: <https://wiki.dlang.org/Using_LDC>.

Install

All systems
curl cmd.cat/ldc.sh
Debian Debian
apt-get install ldc
Ubuntu
apt-get install ldc
Arch Arch Linux
pacman -S ldc
image/svg+xml Kali Linux
apt-get install ldc
Fedora
dnf install ldc
Windows (WSL2)
sudo apt-get update sudo apt-get install ldc
OS X
brew install ldc
Raspbian
apt-get install ldc

D compiler using LLVM as a backend. More information: <https://wiki.dlang.org/Using_LDC>.

  • Compile a source code file into an executable binary:
    ldc2 path/to/source.d -of=path/to/output_executable
  • Compile the source code file without linking:
    ldc2 -c path/to/source.d
  • Select the target architecture and OS:
    ldc -mtriple=architecture_OS -c path/to/source.d
  • Display help:
    ldc2 -h
  • Display complete help:
    ldc2 -help-hidden

© tl;dr; authors and contributors