logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Generate D Code - Compile D Code with GDC | Online Free DevTools by Hexmos

Generate D code with GDC compiler. Compile D programming language source code using GCC backend. Free online tool, no registration required.

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

See Also