Reputation: 469
How did eclipse create their installer to their program? how it creates a .exe file?
I'm asking because eclipse is written in java and this is not a jws installer.
Upvotes: 0
Views: 87
Reputation: 4310
It is build using Java but may be some c,c++ or ASM codes are used just for creating that exe file. :)
Upvotes: 1
Reputation: 11310
The eclipse launcher is just a special JNLP files which start a the first frame to prepare settings/environments for the editor frame itself
Upvotes: 1
Reputation: 2610
Eclipse doesn't use any installer because it doesn't need inject any data in registry or something.
As for the launcher take a look at the "Eclipse Boot Process" part of this article
Upvotes: 1