Thread overview
about dmd's source
Feb 22, 2005
Huang Yicheng
Feb 22, 2005
Huang Yicheng
Feb 22, 2005
J C Calvarese
February 22, 2005
I failed to compile the dmd's src successfully because of lacking the file "id.h". Is it forgot to be put there or some other reasons?

Thanks


February 22, 2005
Huang Yicheng wrote:

> I failed to compile the dmd's src successfully because of lacking the file "id.h". Is it forgot to be put there or some other reasons?

It is automatically generated by the program "idgen", which is included.

--anders
February 22, 2005
Thanks a lot
"Anders F Björklund" <afb@algonet.se> wrote in message
news:cvergn$2asd$1@digitaldaemon.com...
> Huang Yicheng wrote:
>
>> I failed to compile the dmd's src successfully because of lacking the file "id.h". Is it forgot to be put there or some other reasons?
>
> It is automatically generated by the program "idgen", which is included.
>
> --anders


February 22, 2005
In article <cveq6k$28re$1@digitaldaemon.com>, Huang Yicheng says...
>
>I failed to compile the dmd's src successfully because of lacking the file "id.h". Is it forgot to be put there or some other reasons?
>
>Thanks

If you're interesting in working with the DMD source, you might find it helpful to look at this user-created guide: http://www.prowiki.org/wiki4d/wiki.cgi?DMDSourceGuide

It's still a work-in-progress, but it's definitely better than nothing.

jcc7