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
-
apt-get install ldc
- Ubuntu
-
apt-get install ldc
- Arch Linux
-
pacman -S ldc
- 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
- Dockerfile
- dockerfile.run/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