Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Andrew Haley
On 02/28/2014 09:18 AM, Yasumasa Suenaga wrote: For example, OpenJDK8 in Fedora20 ships libjvm.so and libjvm.debuginfo . libjvm.debuginfo is generated in OpenJDK's makefiles, however it does not contain debug information. Actual debug information is shipped by OpenJDK debuginfo package.

Re: RFR: JDK-8036079 : (s) --with-boot-jdk-jvmargs configure options are ignored

2014-03-03 Thread Erik Joelsson
Looks good to me. /Erik On 2014-02-28 20:53, Mike Duigou wrote: Hello all; Currently the parameter passed to configure --with-bootjdk-jvmargs is ignored. This changeset improves(*) the handling of the args. http://cr.openjdk.java.net/~mduigou/JDK-8036079/0/webrev/ I also cleaned up the

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Andrew Haley
On 03/01/2014 11:08 PM, Mike Duigou wrote: Do I understand correctly that rpmbuild can only deal with unstripped binaries and generates the stripped rpm package and debuginfo package. Exactly. OpenJDK generating separate debuginfo files is very inconvenient for RPM builds. It sounds kind

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Yasumasa Suenaga
Hi Andrew, Separating debuginfo is not something that we want the OpenJDK build to do, and the most useful thing that we could have is a switch to turn all of OpenJDK's stripping and separate debuginfo off. I expect the same applies to all distros. My patch provides

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Yasumasa Suenaga
Hi David, Moving forward I think we would need to expose the strip-policy via a configure option and have that pass STRIP_POLICY through to both hotspot and the Images target. I want you to do so :-) Additionally, 1. Generating debug symbols in the binaries (via gcc -g or whatever) 2.

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Daniel D. Daugherty
I think we're having a problem with not all replies making it to all the aliases. Yasumasa's reply to David below that Mike is replying to did not arrive on any of the aliases that I'm on... Folks need to remember to reply to all of the aliases... On 3/1/14 4:08 PM, Mike Duigou wrote: On Mar 1

RFR: JDK-8036145: Solaris standard grep does not understand -qE

2014-03-03 Thread Erik Joelsson
It seems I failed in the below fix. /usr/bin/grep on Solaris does not support -qE. Here is another patch, converting the regexp to work without the -E switch and piping to /dev/null to keep it quiet: Bug: https://bugs.openjdk.java.net/browse/JDK-8036145 diff --git a/common/autoconf/configure

Re: RFR: JDK-8036145: Solaris standard grep does not understand -qE

2014-03-03 Thread Alan Bateman
On 03/03/2014 16:56, Erik Joelsson wrote: It seems I failed in the below fix. /usr/bin/grep on Solaris does not support -qE. Here is another patch, converting the regexp to work without the -E switch and piping to /dev/null to keep it quiet: I've been seeing this lately so it's good to get it

Re: RFR: JDK-8036145: Solaris standard grep does not understand -qE

2014-03-03 Thread Tim Bell
Hi Erik Looks good to me as well. Tim On 03/03/14 09:00, Alan Bateman wrote: On 03/03/2014 16:56, Erik Joelsson wrote: It seems I failed in the below fix. /usr/bin/grep on Solaris does not support -qE. Here is another patch, converting the regexp to work without the -E switch and piping to

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Omair Majid
* Andrew Haley a...@redhat.com [2014-03-03 04:43]: On 02/28/2014 09:18 AM, Yasumasa Suenaga wrote: For example, OpenJDK8 in Fedora20 ships libjvm.so and libjvm.debuginfo . libjvm.debuginfo is generated in OpenJDK's makefiles, however it does not contain debug information. Actual debug

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Daniel D. Daugherty
On 3/3/14 12:11 PM, Omair Majid wrote: Hi, * Daniel D. Daugherty daniel.daughe...@oracle.com [2014-03-03 09:57]: On 3/1/14 4:08 PM, Mike Duigou wrote: If we can put debuginfo into external files why would we ever want unstripped binaries? We deliver minimal stripped binaries so that can

Re: [OpenJDK 2D-Dev] RFR: Allow using a system-installed lcms2

2014-03-03 Thread Florian Weimer
* Omair Majid: Basically, there is one file there (LCMS.c) that I want to make sure that does not get compiled against the headers located in the same directory. One way to be absolutely certain is to move the files out of that directory into another. `#include ..` rather than `#include ...`

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Omair Majid
* David Holmes david.hol...@oracle.com [2014-02-28 18:48]: There are three pieces to all of this: 1. Generating debug symbols in the binaries (via gcc -g or whatever) 2. Generating debuginfo files (zipped or not) (FDS) 3. Stripping debug symbols from the binaries (strip-policy) It may be

where is TimeZone bits

2014-03-03 Thread Medi Montaseri
Hi, Not sure if this is the correct forum I have installed openJDK8 on a Debian linux. I was comparing my new JRE with an older version (openjdk6) and I see that I don't have bunch of timezone files. Here is the old one ./jre/lib/zi/CST6CDT ./jre/lib/zi/SystemV/

RE: where is TimeZone bits

2014-03-03 Thread Medi Montaseri
Thanks Martin, Unfortunately I don't see that option ... mmontaseri@griffin:~/work/bug-91383/jdk8src bash ./configure --help | grep tzdata mmontaseri@griffin:~/work/bug-91383/jdk8src Can you please clarify? And what would that option do? would it integrate (bundle, pull-in, copy)

Re: where is TimeZone bits

2014-03-03 Thread Seán Coffey
JDK 8 does continue to ship with tzdata info built into it. The structure changed significantly with the introduction of JSR 310. The lib/zi directory has been replaced with one lib/tzdb.dat file which contains the tzdata rules in compiled format. You can always add the latest tzdata to the

RE: where is TimeZone bits

2014-03-03 Thread Medi Montaseri
thanks guys... Sean's recommendation (of including latest tzdata) sound very much like Martin's -with-tzdata-dir. Any chance of seeing that option (--with-tzdata-dir) in OpenJDK8? My read from Martin's comment is that Icedtea configurator is different from openjdk configurator. Thanks Medi

hg: jdk8/build/corba: 2 new changesets

2014-03-03 Thread david . katleman
Changeset: 5e5c8f0c45dd Author:katleman Date: 2014-02-28 10:05 -0800 URL: http://hg.openjdk.java.net/jdk8/build/corba/rev/5e5c8f0c45dd Added tag jdk8-b130 for changeset 0683ee308085 ! .hgtags Changeset: 84fed37bbe64 Author:katleman Date: 2014-02-28 13:36 -0800 URL:

hg: jdk8/build/hotspot: 6 new changesets

2014-03-03 Thread david . katleman
Changeset: b5e7ebfe185c Author:katleman Date: 2014-02-28 10:06 -0800 URL: http://hg.openjdk.java.net/jdk8/build/hotspot/rev/b5e7ebfe185c Added tag jdk8-b130 for changeset 1dbaf664a611 ! .hgtags Changeset: 5380dc5d007e Author:katleman Date: 2014-02-28 13:36 -0800 URL:

Re: JDK-8036003: Add variable not to separate debug information.

2014-03-03 Thread Daniel D. Daugherty
On 3/3/14 2:49 PM, Omair Majid wrote: * David Holmes david.hol...@oracle.com [2014-02-28 18:48]: There are three pieces to all of this: 1. Generating debug symbols in the binaries (via gcc -g or whatever) 2. Generating debuginfo files (zipped or not) (FDS) 3. Stripping debug symbols from the

hg: jdk8/build/jaxp: 2 new changesets

2014-03-03 Thread david . katleman
Changeset: 79d8b7fac21d Author:katleman Date: 2014-02-28 10:06 -0800 URL: http://hg.openjdk.java.net/jdk8/build/jaxp/rev/79d8b7fac21d Added tag jdk8-b130 for changeset 0cb0cd015218 ! .hgtags Changeset: 5993346020d1 Author:katleman Date: 2014-02-28 13:36 -0800 URL:

hg: jdk8/build/jaxws: 2 new changesets

2014-03-03 Thread david . katleman
Changeset: 012b935707fa Author:katleman Date: 2014-02-28 10:06 -0800 URL: http://hg.openjdk.java.net/jdk8/build/jaxws/rev/012b935707fa Added tag jdk8-b130 for changeset 4195c0956930 ! .hgtags Changeset: c2be0dd15dbf Author:katleman Date: 2014-02-28 13:36 -0800 URL:

hg: jdk8/build/jdk: 4 new changesets

2014-03-03 Thread david . katleman
Changeset: b07a8059dc08 Author:katleman Date: 2014-02-28 10:07 -0800 URL: http://hg.openjdk.java.net/jdk8/build/jdk/rev/b07a8059dc08 Added tag jdk8-b130 for changeset 43386cc9a017 ! .hgtags Changeset: 183a8c520b4a Author:rfield Date: 2014-02-28 10:43 -0800 URL:

hg: jdk8/build/nashorn: 2 new changesets

2014-03-03 Thread david . katleman
Changeset: cca9748cfec7 Author:katleman Date: 2014-02-28 10:09 -0800 URL: http://hg.openjdk.java.net/jdk8/build/nashorn/rev/cca9748cfec7 Added tag jdk8-b130 for changeset f87eba70e9ee ! .hgtags Changeset: 5dbdae28a6f3 Author:katleman Date: 2014-02-28 13:37 -0800 URL:

hg: jdk8/build/langtools: 2 new changesets

2014-03-03 Thread david . katleman
Changeset: 196ab3dcbd28 Author:katleman Date: 2014-02-28 10:08 -0800 URL: http://hg.openjdk.java.net/jdk8/build/langtools/rev/196ab3dcbd28 Added tag jdk8-b130 for changeset 9d81ae1c417a ! .hgtags Changeset: c8a87a58eb3e Author:katleman Date: 2014-02-28 13:37 -0800 URL: