Why demo/sample before launchers?

2010-12-05 Thread Weijun Wang
Hi Kelly I noticed that in jdk build, demo and sample are before launchers. In a jdk-only build, JDK_IMPORT_PATH's javac is used. Otherwise, BOOTDIR's javac using javac.jar built from langtools is used. Why not build launchers first and use the brand new javac to compile demo/sample? Thanks

Re: Why demo/sample before launchers?

2010-12-05 Thread Kelly O'Hair
On Dec 5, 2010, at 5:12 PM, Weijun Wang wrote: Hi Kelly I noticed that in jdk build, demo and sample are before launchers. In a jdk-only build, JDK_IMPORT_PATH's javac is used. Otherwise, BOOTDIR's javac using javac.jar built from langtools is used. Why not build launchers first and use

Re: Why demo/sample before launchers?

2010-12-05 Thread Weijun Wang
Thanks for the info. If the new image is not used, does that mean there can be some kind of dependency check in Makefiles for demo/sample? Currently these two are always rebuilt entitely and occupies most of the time in doing an increment jdk build. Thanks Max On 12/06/2010 11:38 AM, Kell