Does anyone know how to install IronPython 2.0 with NGEN'ed binaries using the MSI package? The official IronPython homepage says that the NGEN option will greatly improve startup time, but for some reason it is not enabled by default. It doesn't actually state which MSI parameters you need pass to enable it, and I couldn't find a documentation page on the site, so I'm hoping someone here would know. (Clarification: I'm doing a silent install for distribution to multiple machines, so I'm looking for command line parameters, thanks)
I'm asking this because the start time for a simple "hello world" script is in the order of 5-6 seconds on my laptop with 2+ghz Intel Core 2 Duo w/ 4gig. And this happens every time I run. I hope that this NGEN option solves this problem because as slow as it is now, it almost feels like I'm using a compiled language.
UPDATE: srivatsn had the right answer to use the NGENDLLS=True command line parameter.
For future reference, here is the complete MSI command line I used to install IronPython 2.0 silently:
msiexec /qn /i "IronPython.msi" NGENDLLS=True