Re: RFR: JDK-8024200 : (xxs) hgforest.sh fails to detect Python correctly if space after shebang

2013-09-04 Thread Erik Joelsson
Looks ok, but just to be sure, since sed is involved, have you tried it on Solaris? /Erik On 2013-09-03 21:43, Mike Duigou wrote: Hello all; This is a very small change to trim optional whitespace off of the interpreter directive which may appear in the hg wrapper script. The whitespace is

Re: RFR: 8024201 : (xs) Change bug database URL

2013-09-04 Thread Volker Simonis
Hi Mike, this change seems a little strange to me: you change the old, Oracle-internal Bug-URL to a new OpenJDK-ish one which doesn't seems to be available right now. But at the same time you leave the bug URL which is used for OpenJDK (if given the '-O' option) untouched: 2536

Re: RFR: 8024201 : (xs) Change bug database URL

2013-09-04 Thread Volker Simonis
On Tue, Sep 3, 2013 at 11:02 PM, Joe Darcy joe.da...@oracle.com wrote: On 9/3/2013 1:49 PM, Omair Majid wrote: On 09/03/2013 04:26 PM, Mike Duigou wrote: Hello all; The base url for the openjdk bug database was recently changed. This changeset ensures that webrev generates correct urls for

hg: jdk8/build: 2 new changesets

2013-09-04 Thread erik . joelsson
Changeset: 0f6dde6231bd Author:ihse Date: 2013-09-04 10:15 +0200 URL: http://hg.openjdk.java.net/jdk8/build/rev/0f6dde6231bd 8024155: Fix 'make CONF= target' Reviewed-by: erikj, tbell ! NewMakefile.gmk ! common/makefiles/Main.gmk Changeset: 8e7b4d9fb00f Author:erikj Date:

Re: jdk8 build times

2013-09-04 Thread Pete Brunet
Hi loi, I tried what you suggested and got the following. What other steps do I need to take? -Pete Setting environment for using Microsoft Visual Studio 2010 x86 tools. C:\Program Files (x86)\Microsoft Visual Studio 10.0\VCcd c:\Users\Pete\JDK8\jdk8\hotspot\make\windows

Re: jdk8 build times

2013-09-04 Thread Pete Brunet
Hi Erik, Getting caught up on email... On 8/30/13 2:08 AM, Erik Joelsson wrote: Two more questions: Are you building 32 or 64bit and how many jvm variants? I built 64bit so only server. I am only building 32 bit. My config/make invocations are: bash ./configure

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

2013-09-04 Thread Volker Simonis
Hi, could you please review the following webrev which contains the changes needed in the top-level repository in order to configure the OpenJDK on AIX: http://cr.openjdk.java.net/~simonis/webrevs/8024265/ With this change and the two HotSpot changes 8023034: PPC64 (part 14): Implement

Re: RFR: JDK-8024200 : (xxs) hgforest.sh fails to detect Python correctly if space after shebang

2013-09-04 Thread Mike Duigou
On Sep 4 2013, at 01:22 , Erik Joelsson wrote: Looks ok, but just to be sure, since sed is involved, have you tried it on Solaris? Heh, yes. I tested it on Linux, Cygwin, Mac and Solaris. Once burned, twice shy. I definitely did not want a repeat of previous fire drill. Mike /Erik

Re: RFR: 8024201 : (xs) Change bug database URL

2013-09-04 Thread Joe Darcy
Volker, On 9/4/2013 1:34 AM, Volker Simonis wrote: On Tue, Sep 3, 2013 at 11:02 PM, Joe Darcy joe.da...@oracle.com wrote: On 9/3/2013 1:49 PM, Omair Majid wrote: On 09/03/2013 04:26 PM, Mike Duigou wrote: Hello all; The base url for the openjdk bug database was recently changed. This

Re: jdk8 build times

2013-09-04 Thread Ioi Lam
Hi Pete, create.bat is a script in thehotspot\make\windowsdirectory. It needs a parameter that points to a valid JDK 8 build. I have d:\re\jdk8-b102\windows-i586on my PC, but need to change that to point to where you put the JDK. - Ioi On 09/04/2013 08:14 AM, Pete Brunet wrote: create

Re: jdk8 build times

2013-09-04 Thread Pete Brunet
Hi Ioi, Here's what I got this time, pointing at jdk8 b73 which was downloaded from the EA site -Pete c:\Users\Pete\JDK8\jdk8\hotspot\make\windowscreate c:\Users\Pete\jdk1.8.0 cygwin warning: MS-DOS style path detected: c:\Users\Pete\JDK8\jdk8\hotspot\/make/windows/get_msc_ver.sh Preferred

Re: jdk8 build times

2013-09-04 Thread Pete Brunet
Hi Ioi, Now that the HOTSPOTMKSHOME env var is pointing at my cygwin directory... On 8/28/13 9:32 PM, Ioi Lam wrote: Pete, By the way, for the purposes of testing your build speed, instead of spending a long time building JDK8, maybe you can just build hotspot. It's not completely

Re: RFR: JDK-8024200 : (xxs) hgforest.sh fails to detect Python correctly if space after shebang

2013-09-04 Thread Dmitry Samersoff
Mike, This script probably will not work if first line of hg is /usr/bin/env python I would suggest just to ask python to print path to it self. hpython=`sed -n -e '1 s,^[^/]*/,/,p' ${whichhg}` python=`$hpython -c import sys; print(sys.executable)` or at least check for env: epython= `sed -n