Return-Path: Delivered-To: apmail-incubator-harmony-dev-archive@www.apache.org Received: (qmail 64272 invoked from network); 25 Jun 2006 21:07:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 25 Jun 2006 21:07:01 -0000 Received: (qmail 51473 invoked by uid 500); 25 Jun 2006 21:07:00 -0000 Delivered-To: apmail-incubator-harmony-dev-archive@incubator.apache.org Received: (qmail 50743 invoked by uid 500); 25 Jun 2006 21:06:58 -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 50731 invoked by uid 99); 25 Jun 2006 21:06:58 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Jun 2006 14:06:58 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of ivan.volosyuk@gmail.com designates 64.233.166.182 as permitted sender) Received: from [64.233.166.182] (HELO py-out-1112.google.com) (64.233.166.182) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 25 Jun 2006 14:06:57 -0700 Received: by py-out-1112.google.com with SMTP id i49so1366248pyi for ; Sun, 25 Jun 2006 14:06:37 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=ugrbnRobmEt1I5VDOqzf1lhBuXj3xy+lhXSgHAZo/eHCrppouchOtyo99Fx03HiWcTaqVKJoefWbMdQWXSorXfDiyLxoThmQFr2klLzFEovuF+/tKznBQWCciS23TLyIwTvYEsWnU63HQdAMFQLgGDkvSCvWyyCzUBzcIMCfm8k= Received: by 10.35.34.18 with SMTP id m18mr5111698pyj; Sun, 25 Jun 2006 14:06:37 -0700 (PDT) Received: by 10.35.115.14 with HTTP; Sun, 25 Jun 2006 14:06:36 -0700 (PDT) Message-ID: <12385bbd0606251406u64169e96t6d2fe3980612ef47@mail.gmail.com> Date: Mon, 26 Jun 2006 01:06:36 +0400 From: "Ivan Volosyuk" 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: <200606252249.30543.gshimansky@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200606251326.k5PDQcX7028550@d06av02.portsmouth.uk.ibm.com> <200606252246.39229.gshimansky@gmail.com> <200606252249.30543.gshimansky@gmail.com> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Stupid question. I am trying to compile current version of drlvm. After a bunch of downloads which still remains (including huge eclipse-3....gz) compilation failes with: build.java: [echo] ## Building Java classes of 'vm.kernel_classes' [javac] Compiling 48 source files to /home/ivan/experiments/harmony/drlvm/build/lnx_ia32_gcc_release/semis/vm/kernel_classes/_classes [javac] javac: invalid target release: jsr14 [javac] Usage: javac [javac] where possible options include: [javac] -g Generate all debugging info [javac] -g:none Generate no debugging info [javac] -g:{lines,vars,source} Generate only some debugging info ............... I am using jdk-1.4 and rely on eclipse compiler everywhere. The message means that compiler from jdk is used. What for we download eclipse, if its compiler is ignored? :) -- Ivan On 6/25/06, Gregory Shimansky wrote: > Oops I forgot to write that the patch is in JIRA HARMONY-655. > > On Sunday 25 June 2006 22:46 Gregory Shimansky wrote: > > On Sunday 25 June 2006 17:26 Mark Hindess wrote: > > > On 24 June 2006 at 22:38, Tim Ellison wrote: > > > > Mark Hindess wrote: > > > > > On 24 June 2006 at 14:44, Gregory Shimansky > > > > wrote: > > > > >> Btw I've figured why kernel.jar has to be added to > > > > >> bootclasspath.properties before luni.jar. They have many classes > > > > >> with the same name but different code (Class, ClassLoader, Thread, > > > > >> System, String to mention a few). So if luni.jar goes first in > > > > >> bootclasspath, then all of those kernel classes implementations are > > > > >> taken from classlib which isn't very good because they should be > > > > >> taken from VM's kernel.jar. So there is no surprise that it doesn't > > > > >> work. > > > > > > > > > > Oops... I can't believe we didn't spot this before! ... > > > > > > > > That's a regression :-( We used to specifically exclude the kernel > > > > patternsets from each JAR packaging step. I agree that it should be > > > > restored. > > > > > > Yes, it's definitely a regression. Probably at least partly my fault, > > > so I've fixed it in r417017. > > > > > > Gregory, this should almost fix the ordering issue except for String > > > which has moved out of the kernel classes in to luni. But as Tim says > > > the real solution is to load the VM's versions of kernel classes first > > > the same way the IBM VME does it. > > > > Sure I've created a patch to properties parser which adds kernel.jar > > unconditionally to the beginning of bootclasspath, and filters out > > everything which isn't beginning with bootclasspath.[0-9] so no *.source > > and other properties appear in the property. > > -- > Gregory Shimansky, Intel Middleware Products Division -- Ivan 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