digitalmars.D.learn - release build with debug information?
- =?iso-8859-1?Q?Robert_M._M=FCnch?= (5/5) May 21 2019 Is it possible to compile a release build with debug information?
- Alex (3/5) May 21 2019 There is a "release-debug" version in case you are using dub. Not
- Adam D. Ruppe (10/12) May 21 2019 with plain dmd
Is it possible to compile a release build with debug information? -- Robert M. Münch http://www.saphirion.com smarter | better | faster
May 21 2019
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?There is a "release-debug" version in case you are using dub. Not sure, if there is enough debug info for you.
May 21 2019
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 -O The -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.
May 21 2019