Thread overview
[Issue 14955] [D1] Add module profiling feature
Aug 27, 2015
Walter Bright
Aug 28, 2015
Dicebot
Aug 28, 2015
Andrej Mitrovic
Sep 01, 2015
Walter Bright
Oct 11, 2015
Andrej Mitrovic
August 27, 2015
https://issues.dlang.org/show_bug.cgi?id=14955

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
You can also use separate compilation to achieve the same effect.

--
August 28, 2015
https://issues.dlang.org/show_bug.cgi?id=14955

Dicebot <public@dicebot.lv> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |public@dicebot.lv

--- Comment #2 from Dicebot <public@dicebot.lv> ---
Technically you can but separate compilation like that is very effort consuming to add to any non-trivial build system (if it doesn't support separate compilation from the very beginning). In our use case there is in-house makefile framework that handles most of low level details automatically and circumventing that is considerably more effort than just overriding DFLAGS in whole makefile.

On the other hand, is there any reason why it is a bad idea (apart from general "minimize additions" concern)?

--
August 28, 2015
https://issues.dlang.org/show_bug.cgi?id=14955

--- Comment #3 from Andrej Mitrovic <andrej.mitrovich@gmail.com> ---
(In reply to Walter Bright from comment #1)
> You can also use separate compilation to achieve the same effect.

Ah, I haven't thought of that.

Unfortunately it would be time consuming for us to transfer to using separate compilation, whereas the implementation for this is very little code.

Would you be against adding support for this only in D1? We can provide the implementation, of course.

--
September 01, 2015
https://issues.dlang.org/show_bug.cgi?id=14955

--- Comment #4 from Walter Bright <bugzilla@digitalmars.com> ---
> On the other hand, is there any reason why it is a bad idea (apart from general "minimize additions" concern)?

That's the only concern.

> Would you be against adding support for this only in D1?

Not at all. You're the only D1 customer, so what you need is the only thing that matters.

> We can provide the implementation, of course.

Sounds good!

--
October 11, 2015
https://issues.dlang.org/show_bug.cgi?id=14955

Andrej Mitrovic <andrej.mitrovich@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |WONTFIX

--