On Friday, 13 September 2013 at 19:48:12 UTC, Joseph Rushton
Wakeling wrote:
Is there any way in which to ensure that the build splits
Phobos up into library and debugging symbols à la LDC? Could
be useful, no?
LDC does not strip the library into a release build and debugging
symbols (yet) – the '-debug' version just contains a debug build
(i.e. with assertions and debug info enabled) of the standard
library.
Whether this is the best idea going forward can certainly be
discussed (considering that the user most probably doesn't expect
to get a non-optimized build of the standard library when using
-g).
David