.h in dmd source code

2015-09-26 Thread Freddy via Digitalmars-d
Under dmd's source 
code(https://github.com/D-Programming-Language/dmd/tree/master/src) there are some .h files, wasn't  dmd supported to converted to D? Why are the .h files still there?


Re: .h in dmd source code

2015-09-26 Thread David Nadlinger via Digitalmars-d

On Saturday, 26 September 2015 at 18:40:12 UTC, Freddy wrote:
Under dmd's source 
code(https://github.com/D-Programming-Language/dmd/tree/master/src) there are some .h files, wasn't  dmd supported to converted to D? Why are the .h files still there?


Because the backend is still in C++, and in the case of GDC and 
LDC, will stay in C++.


Daniel was working on a way to auto-generate them from the D 
sources, though.


 — David