Re: Why is one d file compiled into two files object file & executable.

2015-02-11 Thread Kagamin via Digitalmars-d-learn
http://www.dsource.org/projects/ddl

Re: Why is one d file compiled into two files object file & executable.

2015-02-11 Thread Kagamin via Digitalmars-d-learn
On Wednesday, 11 February 2015 at 08:49:40 UTC, Andre Artus wrote: First to mind is that in Java .class files are executable (in Java runtime), while object files are not. There was a library, which could load object files with D code, resolve symbols and execute it.

Re: Why is one d file compiled into two files object file & executable.

2015-02-11 Thread jklp via Digitalmars-d-learn
On Wednesday, 11 February 2015 at 05:08:16 UTC, Venkat Akkineni wrote: Hi I am coming from Java. What is the purpose of an object file & why is it generated at compile time in addition to an executable. I know C generates an object file too, but I don't know what the use is. Please point me

Re: Why is one d file compiled into two files object file & executable.

2015-02-11 Thread Andre Artus via Digitalmars-d-learn
On Wednesday, 11 February 2015 at 07:42:31 UTC, Kagamin wrote: On Wednesday, 11 February 2015 at 05:08:16 UTC, Venkat Akkineni wrote: I am coming from Java. What is the purpose of an object file & why is it generated at compile time in addition to an executable. I know C generates an object fil

Re: Why is one d file compiled into two files object file & executable.

2015-02-10 Thread Kagamin via Digitalmars-d-learn
On Wednesday, 11 February 2015 at 05:08:16 UTC, Venkat Akkineni wrote: I am coming from Java. What is the purpose of an object file & why is it generated at compile time in addition to an executable. I know C generates an object file too, but I don't know what the use is. Java uses a similar

Re: Why is one d file compiled into two files object file & executable.

2015-02-10 Thread Andre Artus via Digitalmars-d-learn
On Wednesday, 11 February 2015 at 05:08:16 UTC, Venkat Akkineni wrote: Hi I am coming from Java. What is the purpose of an object file & why is it generated at compile time in addition to an executable. I know C generates an object file too, but I don't know what the use is. Hi Venkat,

Why is one d file compiled into two files object file & executable.

2015-02-10 Thread Venkat Akkineni via Digitalmars-d-learn
Hi I am coming from Java. What is the purpose of an object file & why is it generated at compile time in addition to an executable. I know C generates an object file too, but I don't know what the use is. Please point me to any detailed documentation u may have regarding object files. Als