gdc
D compiler using GCC as a backend. More information: <https://wiki.dlang.org/Using_GDC>.
Install
- All systems
-
curl cmd.cat/gdc.sh
- Debian
-
apt-get install gdc
- Ubuntu
-
apt-get install gdc
- Arch Linux
-
pacman -S gdc
- Kali Linux
-
apt-get install gdc
- Fedora
-
dnf install gdc
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install gdc
- Raspbian
-
apt-get install gdc
- Dockerfile
- dockerfile.run/gdc
D compiler using GCC as a backend. More information: <https://wiki.dlang.org/Using_GDC>.
-
Create an executable:
gdc path/to/source.d -o path/to/output_executable
-
Print information about module dependencies:
gdc -fdeps
-
Generate Ddoc documentation:
gdc -fdoc
-
Generate D interface files:
gdc -fintfc
-
Do not link the standard GCC libraries in the compilation:
gdc -nostdlib
© tl;dr; authors and contributors