On Tuesday, 21 May 2019 at 09:48:34 UTC, Robert M. Münch wrote:
Is it possible to compile a release build with debug information?
with plain dmd dmd -g -release -O or dmd -g -release -debug -OThe -g is debug info. The -debug switch turns on `debug` code blocks. -O turns on optimizations. -release removes asserts and adds potential security holes to your application.
You can use all of these independently or together in any combination.