Re: jdk 8 skipping javadocs

2013-09-13 Thread Erik Joelsson
On 2013-09-12 19:54, Pete Brunet wrote: On 9/12/13 12:32 PM, Jonathan Gibbons wrote: On 09/12/2013 10:27 AM, Pete Brunet wrote: On 7/29/13 9:39 AM, Mike Duigou wrote: On Jul 29 2013, at 07:09 , Pete Brunet wrote: In the new JDK 8 build doc I see this sentence: Creating the javadocs can be

Re: JDK8 - bypassing the building of the images

2013-09-13 Thread Erik Joelsson
Unfortunately rt.jar is part of the images build. The fastest turnaround incremental builds for your usecase is currently reached by doing this: make jdk-only JDK_FILTER=javax/swing javax/accessibility java/beans You don't get an rt.jar, but you can run the exploded image directly from

Re: RFR (M): 8024265: Enable new build on AIX (top level part)

2013-09-13 Thread David Holmes
On 13/09/2013 10:33 AM, Vladimir Kozlov wrote: Done. I have to regenerate generated-configure.sh to sync times with closed version. I ran jdk control build in JPRTwith bootstap to verify that it is not broken. And I got jdk product build failure on linux-x64: /bin/sh:

Re: JDK8 - bypassing the building of the images

2013-09-13 Thread David Holmes
On 13/09/2013 3:51 AM, Pete Brunet wrote: I made some changes for debugging in jdk8. jdk ran for 9.5 min and images for a little over 13 min. I'm currently changing code in javax.swing, javax.accessibility, and java.beans. All those live in rt.jar so it would be nice to be able to copy a

hg: jdk8/build: 8024620: config.log does not end up in corresponding configuration

2013-09-13 Thread erik . joelsson
Changeset: 69da99676239 Author:ihse Date: 2013-09-13 13:07 +0200 URL: http://hg.openjdk.java.net/jdk8/build/rev/69da99676239 8024620: config.log does not end up in corresponding configuration Reviewed-by: erikj ! common/autoconf/configure ! common/autoconf/configure.ac !

jdk8 build times

2013-09-13 Thread Pete Brunet
Hi, After trying the following with no significant improvement - remove Norton 360 anti-virus - defrag hard file - upgrade cygwin and java boot jre - remove the search index attribute from all files on the entire hard file - turned off some processes that seemed to be using disk cycles: Acronis

Re: JDK8 - bypassing the building of the images

2013-09-13 Thread Naoto Sato
Hi Erik, Is there any reason that those jars *have to* be created in images build? localedata.jar is also in the same boat, and it's even more difficult for incremental build, since those locales are loaded as extensions with ServiceLoader. Naoto On 9/12/13 11:54 PM, Erik Joelsson wrote:

Re: JDK8 - bypassing the building of the images

2013-09-13 Thread Pete Brunet
Thanks Ioi, Very helpful! Here is my script: ROOT=build/windows-x86-normal-server-release JAVAC=${ROOT}/jdk/bin/javac JAR=${ROOT}/jdk/bin/jar RT=${ROOT}/images/j2re-image/lib/rt.jar FILES=`find jdk/src -name \*.java -a -newer ${RT}` echo ${FILES} rm -rf tmpclasses mkdir tmpclasses ${JAVAC} -g