Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 52585 invoked from network); 26 Jun 2006 14:46:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 26 Jun 2006 14:46:53 -0000 Received: (qmail 34775 invoked by uid 500); 26 Jun 2006 14:46:51 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 34575 invoked by uid 500); 26 Jun 2006 14:46:50 -0000 Mailing-List: contact harmony-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: harmony-dev@incubator.apache.org Delivered-To: mailing list harmony-dev@incubator.apache.org Received: (qmail 34495 invoked by uid 99); 26 Jun 2006 14:46:49 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 07:46:49 -0700 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: 195.212.29.139 is neither permitted nor denied by domain of mark.hindess@googlemail.com) Received: from [195.212.29.139] (HELO mtagate6.uk.ibm.com) (195.212.29.139) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Jun 2006 07:46:48 -0700 Received: from d06nrmr1407.portsmouth.uk.ibm.com (d06nrmr1407.portsmouth.uk.ibm.com [9.149.38.185]) by mtagate6.uk.ibm.com (8.13.6/8.13.6) with ESMTP id k5QEkQEu133778 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Mon, 26 Jun 2006 14:46:26 GMT Received: from d06av02.portsmouth.uk.ibm.com (d06av02.portsmouth.uk.ibm.com [9.149.37.228]) by d06nrmr1407.portsmouth.uk.ibm.com (8.13.6/NCO/VER7.0) with ESMTP id k5QElm2p134640 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 26 Jun 2006 15:47:48 +0100 Received: from d06av02.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av02.portsmouth.uk.ibm.com (8.12.11.20060308/8.13.3) with ESMTP id k5QEkQcj012330 for ; Mon, 26 Jun 2006 15:46:26 +0100 Received: from anaheim.local (sig-9-145-66-159.uk.ibm.com [9.145.66.159]) by d06av02.portsmouth.uk.ibm.com (8.12.11.20060308/8.12.11) with ESMTP id k5QEkO9E012261 for ; Mon, 26 Jun 2006 15:46:24 +0100 Message-Id: <200606261446.k5QEkO9E012261@d06av02.portsmouth.uk.ibm.com> X-Mailer: exmh version 2.7.2 01/07/2005 (debian 1:2.7.2-7) with nmh-1.1 From: Mark Hindess To: harmony-dev@incubator.apache.org Subject: Re: svn commit: r416738 - /incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/bootclasspath.properties In-reply-to: Your message of "Mon, 26 Jun 2006 15:06:42 +0400." Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 26 Jun 2006 15:46:25 +0100 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N On 26 June 2006 at 15:06, "Alexey Petrenko" wrote: > > Mark, > > have you tried to run ij after your fix? Of course. > I still can not run it... I got "unknown constant type in classfile" > error with "Hello, World!" application... This sounds like a compiler 'jsr14' issue. Are you using the Eclipse compiler? You have to use one of the recent 3.2 release candidates for jsr14 to work. Otherwise it fails (but doesn't die) and builds 1.5 class files instead. Regards, Mark. > 2006/6/24, Alexey Petrenko : > > Right, agreed. > > > > Thanks again for the fast fix. > > I'll check it on monday... I'm playing with prebuilt jpeg and png > > libraries found in the net... :) > > > > SY, Alexey > > > > 2006/6/24, Mark Hindess : > > > > > > On 23 June 2006 at 23:43, "Alexey Petrenko" > wrote: > > > > Mark, > > > > > > > > thanks for the fast fix. > > > > > > > > But probably Tim was right and we should not fix properties file but > > > > should fix drlvm to work inside classlib deploy directory? > > > > > > Indeed. See my comment in the JIRA HARMONY-651. I would have used > > > the version from classlib, but there is an outstanding issue with > > > serializer.jar - which drlvm current adds to jre/lib/boot but classlib > > > does not. > > > > > > As I suggested in an earlier message (subject Re: [drlvm] Doing the > > > minimum to support Java 5 classfiles) I think drlvm's deploy tree > > > shouldn't contain any classlib files but should produce a deploy tree > > > that a top-level build can combine with a classlib tree to produce a > > > fully working deploy tree. Much like we do manually when we combine the > > > IBM VME and classlib. > > > > > > That is, we should do more to reduce the coupling between drlvm and > > > classlib. At the moment, drlvm is trying to understand classlib - i.e. > > > knowing what to copy across but it is not going to be maintainable. > > > (And arguably it is already failing because it is not copying the jre/ > > > lib/ext/bcprov.jar that classlib uses - instead drlvm puts an older > > > version in jre/lib/boot. This is just confusing we should stop trying > > > to do it in drlvm and delegate this task to the top-level build.) > > > > > > > Gregory? > > > > > > I'd like to know what Gregory thinks about this too. > > > > > > Regards, > > > Mark. > > > > > > > 2006/6/23, Mark Hindess : > > > > > > > > > > On 23 June 2006 at 22:37, Gregory Shimansky wr > ote: > > > > > > Hello Mark > > > > > > > > > > > > While resolving conflict between your and mine changes to this file > > > > > > I've found that you didn't include awt.jar. Should it be added > > > > > > perhaps? > > > > > > > > > > Yes. Fixed in r416804 (and I've fixed the reason why it was missing > > > > > from my build). > > > > > > > > > > -Mark. > > > > > > > > > > > On Friday 23 June 2006 19:22 hindessm@apache.org wrote: > > > > > > > Author: hindessm > > > > > > > Date: Fri Jun 23 08:22:20 2006 > > > > > > > New Revision: 416738 > > > > > > > > > > > > > > URL: http://svn.apache.org/viewvc?rev=416738&view=rev > > > > > > > Log: > > > > > > > Fixed to point to all jars (or at least a version of all jars). > > > > > > > > > > > > > > Modified: > > > > > > > > > > > > > > incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/bootcla > sspath > > > > .pro > > > > > > >perties > > > > > > > > > > > > > > Modified: > > > > > > > incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/bootcla > sspath > > > > .pro > > > > > > >perties URL: > > > > > > > http://svn.apache.org/viewvc/incubator/harmony/enhanced/drlvm/tru > nk/vm/ > > > > vmco > > > > > > >re/src/init/bootclasspath.properties?rev=416738&r1=416737&r2=41673 > 8&view > > > > =dif > > > > > > >f > > > > > > > ================================================================= > ====== > > > > ==== > > > > > > >=== --- > > > > > > > incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/bootcla > sspath > > > > .pro > > > > > > >perties (original) +++ > > > > > > > incubator/harmony/enhanced/drlvm/trunk/vm/vmcore/src/init/bootcla > sspath > > > > .pro > > > > > > >perties Fri Jun 23 08:22:20 2006 @@ -38,46 +38,68 @@ > > > > > > > # unspecified then the source is deemed to be available rooted a > t '/'. > > > > > > > # Packageroots given with no source location are ignored. > > > > > > > > > > > > > > -bootclasspath.1=archive.jar > > > > > > > +bootclasspath.1=accessibility.jar > > > > > > > > > > > > > > -bootclasspath.2=bcprov-jdk14-129.jar > > > > > > > +bootclasspath.2=annotation.jar > > > > > > > > > > > > > > -bootclasspath.3=beans.jar > > > > > > > +bootclasspath.3=applet.jar > > > > > > > > > > > > > > -bootclasspath.4=crypto.jar > > > > > > > +bootclasspath.4=archive.jar > > > > > > > > > > > > > > -bootclasspath.5=icu4j_3_4.jar > > > > > > > +bootclasspath.5=auth.jar > > > > > > > > > > > > > > -bootclasspath.6=icu4jni-3.4.jar > > > > > > > +bootclasspath.6=bcprov-jdk14-129.jar > > > > > > > > > > > > > > -bootclasspath.7=kernel.jar > > > > > > > +bootclasspath.7=beans.jar > > > > > > > > > > > > > > -bootclasspath.8=logging.jar > > > > > > > +bootclasspath.8=crypto.jar > > > > > > > > > > > > > > -bootclasspath.9=luni.jar > > > > > > > +bootclasspath.9=icu4j_3.4.4/icu4j_3_4_4.jar > > > > > > > > > > > > > > -bootclasspath.10=math.jar > > > > > > > +bootclasspath.10=icu4jni-3.4.jar > > > > > > > > > > > > > > -bootclasspath.11=nio.jar > > > > > > > +bootclasspath.11=jndi.jar > > > > > > > > > > > > > > -bootclasspath.12=nio_char.jar > > > > > > > +bootclasspath.12=kernel.jar > > > > > > > > > > > > > > -bootclasspath.13=regex.jar > > > > > > > +bootclasspath.13=logging.jar > > > > > > > > > > > > > > -bootclasspath.14=resolver.jar > > > > > > > +bootclasspath.14=luni.jar > > > > > > > > > > > > > > -bootclasspath.15=security.jar > > > > > > > +bootclasspath.15=math.jar > > > > > > > > > > > > > > -bootclasspath.16=serializer.jar > > > > > > > +bootclasspath.16=misc.jar > > > > > > > > > > > > > > -bootclasspath.17=sql.jar > > > > > > > +bootclasspath.17=mx4j_3.0.1/mx4j-remote.jar > > > > > > > > > > > > > > -bootclasspath.18=text.jar > > > > > > > +bootclasspath.18=mx4j_3.0.1/mx4j.jar > > > > > > > > > > > > > > -bootclasspath.19=x_net.jar > > > > > > > +bootclasspath.19=nio_char.jar > > > > > > > > > > > > > > -bootclasspath.20=xalan.jar > > > > > > > +bootclasspath.20=nio.jar > > > > > > > > > > > > > > -bootclasspath.21=xercesImpl.jar > > > > > > > +bootclasspath.21=prefs.jar > > > > > > > > > > > > > > -bootclasspath.22=xml-apis.jar > > > > > > > +bootclasspath.22=regex.jar > > > > > > > + > > > > > > > +bootclasspath.23=resolver.jar > > > > > > > + > > > > > > > +bootclasspath.24=rmi.jar > > > > > > > + > > > > > > > +bootclasspath.25=security.jar > > > > > > > + > > > > > > > +bootclasspath.26=serializer.jar > > > > > > > + > > > > > > > +bootclasspath.27=sql.jar > > > > > > > + > > > > > > > +bootclasspath.28=swing.jar > > > > > > > + > > > > > > > +bootclasspath.29=text.jar > > > > > > > + > > > > > > > +bootclasspath.30=xalan.jar > > > > > > > + > > > > > > > +bootclasspath.31=xercesImpl.jar > > > > > > > + > > > > > > > +bootclasspath.32=xml-apis.jar > > > > > > > + > > > > > > > +bootclasspath.33=x-net.jar > > > > > > > > > > > > -- > > > > > > Gregory Shimansky, Intel Middleware Products Division > > > > > > > > > > > > ------------------------------------------------------------------- > -- > > > > > > Terms of use : http://incubator.apache.org/harmony/mailing.html > > > > > > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.or > g > > > > > > For additional commands, e-mail: harmony-dev-help@incubator.apache. > org > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > > Terms of use : http://incubator.apache.org/harmony/mailing.html > > > > > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org > > > > > For additional commands, e-mail: harmony-dev-help@incubator.apache.or > g > > > > > > > > > > > > > > > > > > > > > > -- > > > > Alexey A. Petrenko > > > > Intel Middleware Products Division > > > > > > > > --------------------------------------------------------------------- > > > > Terms of use : http://incubator.apache.org/harmony/mailing.html > > > > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org > > > > For additional commands, e-mail: harmony-dev-help@incubator.apache.org > > > > > > > > > > > > --------------------------------------------------------------------- > > > Terms of use : http://incubator.apache.org/harmony/mailing.html > > > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org > > > For additional commands, e-mail: harmony-dev-help@incubator.apache.org > > > > > > > > > > > > -- > > Alexey A. Petrenko > > Intel Middleware Products Division > > > > > -- > Alexey A. Petrenko > Intel Middleware Products Division > > --------------------------------------------------------------------- > Terms of use : http://incubator.apache.org/harmony/mailing.html > To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org > For additional commands, e-mail: harmony-dev-help@incubator.apache.org --------------------------------------------------------------------- Terms of use : http://incubator.apache.org/harmony/mailing.html To unsubscribe, e-mail: harmony-dev-unsubscribe@incubator.apache.org For additional commands, e-mail: harmony-dev-help@incubator.apache.org