From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 03:14:47 2007 Return-Path: X-Original-To: java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D284416A400 for ; Sun, 10 Jun 2007 03:14:47 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id 9B77513C45D for ; Sun, 10 Jun 2007 03:14:47 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.13.1/8.13.3) with ESMTP id l5A3EjmS089226; Sat, 9 Jun 2007 20:14:45 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.13.1/8.13.3/Submit) id l5A3EiXx089225; Sat, 9 Jun 2007 20:14:44 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sat, 9 Jun 2007 20:14:43 -0700 From: Greg Lewis To: Poul-Henning Kamp Message-ID: <20070610031443.GA89186@misty.eyesbeyond.com> References: <26165.1181329228@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <26165.1181329228@critter.freebsd.dk> User-Agent: Mutt/1.4.2.2i Cc: java@FreeBSD.org Subject: Re: jdk15 buildlog on -current X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 03:14:47 -0000 On Fri, Jun 08, 2007 at 07:00:28PM +0000, Poul-Henning Kamp wrote: > Still no jdk15 luck on -current: > > http://phk.freebsd.dk/misc/_.java_jdk15.gz So everyone who is seeing a failure is seeing one like this. That is, the new compiler can't compile Java code which it should be able to. However, all the failures are different and all the failures are indicative of a file not being able to be read or the like. Jung-uk Kim suggested trying this script on the filesystem being used. Maybe it will be able to demonstrate a reproducible a problem with file access. It really seems like the JDK build is tickling a problem in -CURRENT rather than anything else. #!/bin/sh TCOUNT=0 TMPFILE=`mktemp ./test-fs.XXXXXX` if [ $? -ne 0 ]; then echo "Test file cannot be created. Exiting." >&2 exit 1 fi sighandler() { rm -f ${TMPFILE} echo echo "Test interrupted after ${TCOUNT} runs." echo "No problem encountered." exit 0 } echo "Starting open(2)/unlink(2) test." echo -n "Press ^C to stop the test. " trap sighandler int while true; do TCOUNT=$(( ${TCOUNT} + 1 )) touch ${TMPFILE} if [ ! -f ${TMPFILE} ]; then echo "Test file does not exist. This is wrong!" >&2 exit 1 fi rm -f ${TMPFILE} if [ -f ${TMPFILE} ]; then echo "Test file should not exist. This is wrong!" >&2 exit 1 fi done -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 07:07:55 2007 Return-Path: X-Original-To: java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60F2F16A400 for ; Sun, 10 Jun 2007 07:07:55 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id 2344213C45A for ; Sun, 10 Jun 2007 07:07:55 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (unknown [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 87F2517380; Sun, 10 Jun 2007 07:07:53 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.1/8.14.1) with ESMTP id l5A77wVn002066; Sun, 10 Jun 2007 07:07:59 GMT (envelope-from phk@critter.freebsd.dk) To: Greg Lewis From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sat, 09 Jun 2007 20:14:43 MST." <20070610031443.GA89186@misty.eyesbeyond.com> Date: Sun, 10 Jun 2007 07:07:58 +0000 Message-ID: <2057.1181459278@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: java@FreeBSD.org Subject: Re: jdk15 buildlog on -current X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 07:07:55 -0000 In message <20070610031443.GA89186@misty.eyesbeyond.com>, Greg Lewis writes: >On Fri, Jun 08, 2007 at 07:00:28PM +0000, Poul-Henning Kamp wrote: >> Still no jdk15 luck on -current: >> >> http://phk.freebsd.dk/misc/_.java_jdk15.gz > >So everyone who is seeing a failure is seeing one like this. That is, the >new compiler can't compile Java code which it should be able to. However, >all the failures are different and all the failures are indicative of a >file not being able to be read or the like. > >Jung-uk Kim suggested trying this script on the filesystem being used. >Maybe it will be able to demonstrate a reproducible a problem with file >access. I'm running the test-script now, but I seriously doubt it has any chance of finding problem, because buildworld would barf all over the place if basic file visibility was hosed. Isn't a more likely explanation that it is a SMP race ? -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 13:53:53 2007 Return-Path: X-Original-To: java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33FF816A421 for ; Sun, 10 Jun 2007 13:53:53 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from phk.freebsd.dk (phk.freebsd.dk [130.225.244.222]) by mx1.freebsd.org (Postfix) with ESMTP id E8AF313C45B for ; Sun, 10 Jun 2007 13:53:52 +0000 (UTC) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (unknown [192.168.61.3]) by phk.freebsd.dk (Postfix) with ESMTP id 85E45173B4; Sun, 10 Jun 2007 13:53:51 +0000 (UTC) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.14.1/8.14.1) with ESMTP id l5ADs0vK001634; Sun, 10 Jun 2007 13:54:00 GMT (envelope-from phk@critter.freebsd.dk) To: Greg Lewis From: "Poul-Henning Kamp" In-Reply-To: Your message of "Sat, 09 Jun 2007 20:14:43 MST." <20070610031443.GA89186@misty.eyesbeyond.com> Date: Sun, 10 Jun 2007 13:54:00 +0000 Message-ID: <1633.1181483640@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Cc: java@FreeBSD.org Subject: Re: jdk15 buildlog on -current X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 13:53:53 -0000 In message <20070610031443.GA89186@misty.eyesbeyond.com>, Greg Lewis writes: >On Fri, Jun 08, 2007 at 07:00:28PM +0000, Poul-Henning Kamp wrote: >> Still no jdk15 luck on -current: >> >> http://phk.freebsd.dk/misc/_.java_jdk15.gz > >So everyone who is seeing a failure is seeing one like this. That is, the >new compiler can't compile Java code which it should be able to. However, >all the failures are different and all the failures are indicative of a >file not being able to be read or the like. > >Jung-uk Kim suggested trying this script on the filesystem being used. >Maybe it will be able to demonstrate a reproducible a problem with file >access. I ran this for four hours, and as expected, it found nothing. -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 13:54:15 2007 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7C3016A400 for ; Sun, 10 Jun 2007 13:54:15 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from ns.tydfam.jp (ns.tydfam.jp [61.197.228.42]) by mx1.freebsd.org (Postfix) with ESMTP id 08A9F13C480 for ; Sun, 10 Jun 2007 13:54:07 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from localhost (tyd3.sub.tydfam.jp [192.168.1.3]) by ns.tydfam.jp (8.14.1/8.14.1) with ESMTP id l5AD3VLx010863; Sun, 10 Jun 2007 22:03:32 +0900 (JST) (envelope-from ken@tydfam.jp) Date: Sun, 10 Jun 2007 22:03:53 +0900 (JST) Message-Id: <20070610.220353.74755977.ken@tydfam.jp> To: phk@phk.freebsd.dk From: Ken Yamada In-Reply-To: <2057.1181459278@critter.freebsd.dk> References: <20070610031443.GA89186@misty.eyesbeyond.com> <2057.1181459278@critter.freebsd.dk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on ns.tydfam.jp Cc: java@freebsd.org Subject: Re: jdk15 buildlog on -current X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 13:54:15 -0000 From: "Poul-Henning Kamp" > > Isn't a more likely explanation that it is a SMP race ? I experienced that the compilation goes without any problems on Uniprocess kernel, but that it halts on the way showing several javac/java pausing - linux-sun-jdk1.5.0 on SMP kernel which did not disappear with kill pid. (ps -alx|grep java result shown below). Successfully compiled uniprocess jdk1.5.0 does not run on multiprocess kernel though it runs fine on uniprocess kernel. These java related compilation issues makes me suspect some racing condition on SMP, but it is seemingly only with java related. Others work fine on SMP. # ps -alx | grep java 0 1379 1350 0 8 0 3600 1700 wait I+ p2 0:00.00 /bin/sh -ec cd /usr/ports/java 0 2319 2318 4 8 0 4192 1644 wait I+ p2 0:00.01 gmake -f /usr/ports/java/jdk15 0 2994 2911 107 20 0 761464 74308 pause I+ p2 0:03.57 [java] 0 2995 2994 0 96 0 761464 74308 select S+ p2 0:00.14 [java] 0 2996 2995 0 20 0 761464 74308 pause I+ p2 0:00.03 [java] 0 2997 2995 0 20 0 761464 74308 pause I+ p2 0:00.03 [java] 0 2998 2995 0 20 0 761464 74308 pause I+ p2 0:00.03 [java] 0 2999 2995 0 20 0 761464 74308 pause I+ p2 0:00.03 [java] 0 3000 2995 0 8 0 761464 74308 nanslp S+ p2 0:00.76 [java] 0 3001 2995 0 20 0 761464 74308 pause I+ p2 0:00.00 [java] 0 3002 2995 0 20 0 761464 74308 pause I+ p2 0:00.00 [java] 0 3003 2995 0 20 0 761464 74308 pause I+ p2 0:00.00 [java] 0 3004 2995 0 20 0 761464 74308 pause I+ p2 0:00.01 [java] 0 3005 2995 107 20 0 761464 74308 pause I+ p2 0:03.40 [java] 0 3006 2995 105 20 0 761464 74308 pause I+ p2 0:03.37 [java] 0 3007 2995 0 20 0 761464 74308 pause I+ p2 0:00.00 [java] 0 3008 2995 0 20 0 761464 74308 pause I+ p2 0:00.00 [java] >>>>> Compilation log >>>>> : : : : gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/product' /usr/local/linux-sun-jdk1.5.0/bin/javac -g -d ../generated/jvmtifiles /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmtiGen.java Note: /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmtiGen.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. Generating ../generated/jvmtifiles/jvmdiEnter.cpp /usr/local/linux-sun-jdk1.5.0/bin/java -classpath ../generated/jvmtifiles jvmtiGen -IN /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmti.xml -XSL /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmdiEnter.xsl -OUT ../generated/jvmtifiles/jvmdiEnter.cpp -PARAM interface jvmdi Generating ../generated/jvmtifiles/jvmdiEnterTrace.cpp /usr/local/linux-sun-jdk1.5.0/bin/java -classpath ../generated/jvmtifiles jvmtiGen -IN /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmti.xml -XSL /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmdiEnter.xsl -OUT ../generated/jvmtifiles/jvmdiEnterTrace.cpp -PARAM interface jvmdi -PARAM trace Trace Generating ../generated/jvmtifiles/jvmtiEnv.hpp /usr/local/linux-sun-jdk1.5.0/bin/java -classpath ../generated/jvmtifiles jvmtiGen -IN /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmti.xml -XSL /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmtiHpp.xsl -OUT ../generated/jvmtifiles/jvmtiEnv.hpp Generating ../generated/jvmtifiles/jvmtiEnter.cpp /usr/local/linux-sun-jdk1.5.0/bin/java -classpath ../generated/jvmtifiles jvmtiGen -IN /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmti.xml -XSL /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmtiEnter.xsl -OUT ../generated/jvmtifiles/jvmtiEnter.cpp -PARAM interface jvmti -------------- stops at here --------------- I see files supposed to be built from above as follows; # ls -l control/build/bsd-i586/hotspot-i586/tmp/bsd_i486_compiler2/generated/jvmtifiles/ total 660 -rw-r--r-- 1 root wheel 113605 6 10 16:00 jvmdiEnter.cpp -rw-r--r-- 1 root wheel 361972 6 10 16:00 jvmdiEnterTrace.cpp -rw-r--r-- 1 root wheel 147455 6 10 16:00 jvmtiEnter.cpp -rw-r--r-- 1 root wheel 12977 6 10 16:00 jvmtiEnv.hpp -rw-r--r-- 1 root wheel 5302 6 10 16:00 jvmtiGen.class From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 14:24:11 2007 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F0F1116A468 for ; Sun, 10 Jun 2007 14:24:11 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from ns.tydfam.jp (ns.tydfam.jp [61.197.228.42]) by mx1.freebsd.org (Postfix) with ESMTP id E938B13C4CA for ; Sun, 10 Jun 2007 14:24:06 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from localhost (tyd3.sub.tydfam.jp [192.168.1.3]) by ns.tydfam.jp (8.14.1/8.14.1) with ESMTP id l5AE0SsM011562; Sun, 10 Jun 2007 23:00:28 +0900 (JST) (envelope-from ken@tydfam.jp) Date: Sun, 10 Jun 2007 23:00:50 +0900 (JST) Message-Id: <20070610.230050.108736276.ken@tydfam.jp> To: phk@phk.freebsd.dk From: Ken Yamada In-Reply-To: <2057.1181459278@critter.freebsd.dk> References: <20070610031443.GA89186@misty.eyesbeyond.com> <2057.1181459278@critter.freebsd.dk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on ns.tydfam.jp Cc: java@freebsd.org Subject: Re: jdk15 buildlog on -current X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 14:24:12 -0000 One more info. My linux-sun-jdk1.5.0/bin/java sees libraries as follows; # ldd /usr/local/linux-sun-jdk1.5.0/bin/java /usr/local/linux-sun-jdk1.5.0/bin/java: libpthread.so.0 => /lib/obsolete/linuxthreads/libpthread.so.0 (0x48076000) libdl.so.2 => /lib/libdl.so.2 (0x480ca000) libc.so.6 => /lib/obsolete/linuxthreads/libc.so.6 (0x480ce000) /lib/ld-linux.so.2 (0x48057000) From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 14:38:55 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D456C16A421 for ; Sun, 10 Jun 2007 14:38:55 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from solow.pil.dk (relay.pil.dk [195.41.47.164]) by mx1.freebsd.org (Postfix) with ESMTP id 9617713C455 for ; Sun, 10 Jun 2007 14:38:55 +0000 (UTC) (envelope-from henrik@brixandersen.dk) Received: from tirith.brixandersen.dk (osgiliath.brixandersen.dk [87.53.223.189]) by solow.pil.dk (Postfix) with ESMTP id 29DC21CC239 for ; Sun, 10 Jun 2007 16:38:54 +0200 (CEST) Received: by tirith.brixandersen.dk (Postfix, from userid 1001) id 70744BA52; Sun, 10 Jun 2007 16:38:53 +0200 (CEST) Date: Sun, 10 Jun 2007 16:38:53 +0200 From: Henrik Brix Andersen To: freebsd-java@freebsd.org Message-ID: <20070610143853.GA21652@tirith.brixandersen.dk> Mail-Followup-To: freebsd-java@freebsd.org References: <20070609045241.GA80979@misty.eyesbeyond.com> <20070609100408.GA3609@tirith.brixandersen.dk> <20070609.213055.07646588.ken@tydfam.jp> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline In-Reply-To: <20070609.213055.07646588.ken@tydfam.jp> X-PGP-Key: http://www.brixandersen.dk/files/HenrikBrixAndersen.asc User-Agent: Mutt/1.5.15 (2007-04-06) Subject: Re: JDK 1.5.0 patchset 5 "Tantanoola" X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 14:38:55 -0000 --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 09, 2007 at 09:30:55PM +0900, Ken Yamada wrote: > What is the difference between yours and robbak@gmail.com's one? I find that a bit difficult to answer. I have not done anything special to make java/jdk15 compile. This is a Core Duo system with an SMP-enabled kernel (using SCHED_4BSD, in case that matters). > I have the same problem with -current as robbak@gmail.com > described plus some "cannot find symbol" errors as below; Do you have any old libs lying around which may confuse the build process? ('cd /usr/src; make check-old). Regards, Brix --=20 Henrik Brix Andersen --LZvS9be/3tNcYl/X Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (FreeBSD) Comment: GnuPG signed iD8DBQFGbAz8v+Q4flTiePgRAqqEAJ0QqFvppNqnH5x3ZCI4kVBN9B3qOQCgsZrG H0Sp5F9xVSyhpv01Y3hkttk= =jFtl -----END PGP SIGNATURE----- --LZvS9be/3tNcYl/X-- From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 14:43:04 2007 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AB6BD16A469 for ; Sun, 10 Jun 2007 14:43:04 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id 7255E13C448 for ; Sun, 10 Jun 2007 14:43:04 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.13.1/8.13.3) with ESMTP id l5AEh2Qj094276; Sun, 10 Jun 2007 07:43:02 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.13.1/8.13.3/Submit) id l5AEh1Gm094275; Sun, 10 Jun 2007 07:43:01 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sun, 10 Jun 2007 07:43:01 -0700 From: Greg Lewis To: Poul-Henning Kamp Message-ID: <20070610144301.GA94235@misty.eyesbeyond.com> References: <20070610031443.GA89186@misty.eyesbeyond.com> <2057.1181459278@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2057.1181459278@critter.freebsd.dk> User-Agent: Mutt/1.4.2.2i Cc: java@freebsd.org Subject: Re: jdk15 buildlog on -current X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 14:43:04 -0000 On Sun, Jun 10, 2007 at 07:07:58AM +0000, Poul-Henning Kamp wrote: > In message <20070610031443.GA89186@misty.eyesbeyond.com>, Greg Lewis writes: > >On Fri, Jun 08, 2007 at 07:00:28PM +0000, Poul-Henning Kamp wrote: > >> Still no jdk15 luck on -current: > >> > >> http://phk.freebsd.dk/misc/_.java_jdk15.gz > > > >So everyone who is seeing a failure is seeing one like this. That is, the > >new compiler can't compile Java code which it should be able to. However, > >all the failures are different and all the failures are indicative of a > >file not being able to be read or the like. > > > >Jung-uk Kim suggested trying this script on the filesystem being used. > >Maybe it will be able to demonstrate a reproducible a problem with file > >access. > > I'm running the test-script now, but I seriously doubt it has any chance > of finding problem, because buildworld would barf all over the place > if basic file visibility was hosed. > > Isn't a more likely explanation that it is a SMP race ? Quite possibly. You've got much more experience on -current than I have :). Does setting libkse to be the default threading library with libmap.conf make any difference (libthr is the default on -current at the moment IIRC)? -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 15:24:12 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6F58916A400 for ; Sun, 10 Jun 2007 15:24:12 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from ns.tydfam.jp (ns.tydfam.jp [61.197.228.42]) by mx1.freebsd.org (Postfix) with ESMTP id 124E213C46C for ; Sun, 10 Jun 2007 15:24:07 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from localhost (tyd3.sub.tydfam.jp [192.168.1.3]) by ns.tydfam.jp (8.14.1/8.14.1) with ESMTP id l5AF0VlQ011743; Mon, 11 Jun 2007 00:00:31 +0900 (JST) (envelope-from ken@tydfam.jp) Date: Mon, 11 Jun 2007 00:00:53 +0900 (JST) Message-Id: <20070611.000053.71082799.ken@tydfam.jp> To: henrik@brixandersen.dk From: Ken Yamada In-Reply-To: <20070610143853.GA21652@tirith.brixandersen.dk> References: <20070609100408.GA3609@tirith.brixandersen.dk> <20070609.213055.07646588.ken@tydfam.jp> <20070610143853.GA21652@tirith.brixandersen.dk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on ns.tydfam.jp Cc: freebsd-java@freebsd.org Subject: Re: JDK 1.5.0 patchset 5 "Tantanoola" X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 15:24:12 -0000 Thank you, Henrik for your suggestion. I have kept old libs, so I tried the compilation after doing '/usr/obj/usr/src/make.i386/make delete-old; /usr/obj/usr/src/make.i386/make delete-old-libs'. However, the result was the same - stopped at; ; ; ; Generating ../generated/jvmtifiles/jvmtiEnter.cpp /usr/local/linux-sun-jdk1.5.0/bin/java -classpath ../generated/jvmtifiles jvmtiGen -IN /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmti.xml -XSL /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmtiEnter.xsl -OUT ../generated/jvmtifiles/jvmtiEnter.cpp -PARAM interface jvmti with # ps -alx | grep java 0 38365 38336 0 8 0 3600 1360 wait I+ p2 0:00.00 /bin/sh -ec cd /usr/ports/java 0 39297 39296 6 8 0 4192 1272 wait I+ p2 0:00.01 gmake -f /usr/ports/java/jdk15 0 39969 39870 57 20 0 744724 44360 pause I+ p2 0:01.11 [java] 0 39970 39969 0 96 0 744724 44360 select S+ p2 0:00.00 [java] 0 39971 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39972 39970 1 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39973 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39974 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39975 39970 0 8 0 744724 44360 nanslp S+ p2 0:00.01 [java] 0 39976 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39977 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39978 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39979 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39980 39970 57 20 0 744724 44360 pause I+ p2 0:01.04 [java] 0 39981 39970 53 20 0 744724 44360 pause I+ p2 0:00.90 [java] 0 39982 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39983 39970 0 8 0 744724 44360 nanslp S+ p2 0:00.14 [java] From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 15:40:42 2007 Return-Path: X-Original-To: freebsd-java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1EC816A46E for ; Sun, 10 Jun 2007 15:40:42 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id A88C313C45A for ; Sun, 10 Jun 2007 15:40:42 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.13.1/8.13.3) with ESMTP id l5AFefgU094917 for ; Sun, 10 Jun 2007 08:40:41 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.13.1/8.13.3/Submit) id l5AFeftl094916 for freebsd-java@FreeBSD.org; Sun, 10 Jun 2007 08:40:41 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Sun, 10 Jun 2007 08:40:40 -0700 From: Greg Lewis To: freebsd-java@FreeBSD.org Message-ID: <20070610154040.GA94905@misty.eyesbeyond.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Cc: Subject: Please test the new 1.6.0 patchset X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 15:40:43 -0000 All, If you're not afraid to build the JDK from scratch without a port, please try the "current" (new) JDK 1.6 patchset (see http://www.eyesbeyond.com/freebsddom/java/jdk16.html). This is based on the 1.6.0 Update 1 Build b06 JRL source. Unless I get some showstopper reports I plan to release this as patchset 1 sometime next week. The raw patchset itself will have problems if you don't have the /usr/X11R6 symlink, but this will be fixed in the port. I haven't yet created the jdk16 port, which is why you'll have to build it from scratch ;). It should be reasonably similar to the current jdk15 port though. If the build is successful you should see something like this: > /usr/local/jdk1.6.0/bin/java -version java version "1.6.0_01-p1" Java(TM) SE Runtime Environment (build 1.6.0_01-p1-glewis_19_may_2007_14_14-b00) Java HotSpot(TM) Client VM (build 1.6.0_01-p1-glewis_19_may_2007_14_14-b00, mixed mode) (This is on i386 -- you'll see the Server VM on amd64). Note that I'll be out of town until Tuesday evening, so I may be unable to respond to any problems before then. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Sun Jun 10 18:44:48 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6412516A41F for ; Sun, 10 Jun 2007 18:44:48 +0000 (UTC) (envelope-from Thomas.Sparrevohn@btinternet.com) Received: from smtp808.mail.ukl.yahoo.com (smtp808.mail.ukl.yahoo.com [217.12.12.198]) by mx1.freebsd.org (Postfix) with SMTP id EB90413C4BE for ; Sun, 10 Jun 2007 18:44:47 +0000 (UTC) (envelope-from Thomas.Sparrevohn@btinternet.com) Received: (qmail 57046 invoked from network); 10 Jun 2007 18:18:07 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=btinternet.com; h=Received:X-YMail-OSG:From:To:Cc:References:In-Reply-To:Subject:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:Thread-Index:Content-Language; b=4oxSCaEtGx1NnzaLJpHcf+2sCuMSgXVQoqfHTXPp4rttrmAEW/64pVutu1c2Jb1VAGMZ9MnoOlwgfVRfLJ8kW+2K3VtZiYzIey7Q63M5Y/DIZcVnTp7RN77VUFldQJDV5NfyzQYWrYQLmQdnJSLVZqCmr3fTu6Z1KsQMqJsnWxo= ; Received: from unknown (HELO ThomasPC) (thomas.sparrevohn@btinternet.com@81.159.89.57 with login) by smtp808.mail.ukl.yahoo.com with SMTP; 10 Jun 2007 18:18:07 -0000 X-YMail-OSG: QEC2SsEVM1mLZdj4JsAolqjBPlmhZf4kQ_BOm6Rlj6qG7DsPn8Z966YVnZQWQ2cKcDz0W3dWjTA8uQ_sVBP2QxiSrfv2M_3LhYLB2Duu_nTvNPluKTlwQsxBVBI- From: "Thomas Sparrevohn" To: "'Ken Yamada'" , References: <20070609100408.GA3609@tirith.brixandersen.dk> <20070609.213055.07646588.ken@tydfam.jp> <20070610143853.GA21652@tirith.brixandersen.dk> <20070611.000053.71082799.ken@tydfam.jp> In-Reply-To: <20070611.000053.71082799.ken@tydfam.jp> Date: Sun, 10 Jun 2007 19:18:06 +0100 Message-ID: <018201c7ab8b$b19711a0$14c534e0$@Sparrevohn@btinternet.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 12.0 Thread-Index: Acerc7iZ2KzxjlP4SWK/xIKDVNSQqAAF9DKA Content-Language: en-gb Cc: freebsd-java@freebsd.org Subject: RE: JDK 1.5.0 patchset 5 "Tantanoola" X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 10 Jun 2007 18:44:48 -0000 I can confirm that I see the same behaviour with my machine just at another point in the compilation -----Original Message----- From: owner-freebsd-java@freebsd.org [mailto:owner-freebsd-java@freebsd.org] On Behalf Of Ken Yamada Sent: 10 June 2007 16:01 To: henrik@brixandersen.dk Cc: freebsd-java@freebsd.org Subject: Re: JDK 1.5.0 patchset 5 "Tantanoola" Thank you, Henrik for your suggestion. I have kept old libs, so I tried the compilation after doing '/usr/obj/usr/src/make.i386/make delete-old; /usr/obj/usr/src/make.i386/make delete-old-libs'. However, the result was the same - stopped at; ; ; ; Generating ../generated/jvmtifiles/jvmtiEnter.cpp /usr/local/linux-sun-jdk1.5.0/bin/java -classpath ../generated/jvmtifiles jvmtiGen -IN /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmti.xml -XSL /usr/ports/java/jdk15/work/hotspot/src/share/vm/prims/jvmtiEnter.xsl -OUT ../generated/jvmtifiles/jvmtiEnter.cpp -PARAM interface jvmti with # ps -alx | grep java 0 38365 38336 0 8 0 3600 1360 wait I+ p2 0:00.00 /bin/sh -ec cd /usr/ports/java 0 39297 39296 6 8 0 4192 1272 wait I+ p2 0:00.01 gmake -f /usr/ports/java/jdk15 0 39969 39870 57 20 0 744724 44360 pause I+ p2 0:01.11 [java] 0 39970 39969 0 96 0 744724 44360 select S+ p2 0:00.00 [java] 0 39971 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39972 39970 1 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39973 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39974 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39975 39970 0 8 0 744724 44360 nanslp S+ p2 0:00.01 [java] 0 39976 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39977 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39978 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39979 39970 0 20 0 744724 44360 pause I+ p2 0:00.01 [java] 0 39980 39970 57 20 0 744724 44360 pause I+ p2 0:01.04 [java] 0 39981 39970 53 20 0 744724 44360 pause I+ p2 0:00.90 [java] 0 39982 39970 0 20 0 744724 44360 pause I+ p2 0:00.00 [java] 0 39983 39970 0 8 0 744724 44360 nanslp S+ p2 0:00.14 [java] _______________________________________________ freebsd-java@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-java To unsubscribe, send any mail to "freebsd-java-unsubscribe@freebsd.org" From owner-freebsd-java@FreeBSD.ORG Mon Jun 11 10:46:30 2007 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB89616A46C for ; Mon, 11 Jun 2007 10:46:30 +0000 (UTC) (envelope-from hwh@gddsn.org.cn) Received: from gddsn.org.cn (gddsn.org.cn [218.19.164.145]) by mx1.freebsd.org (Postfix) with ESMTP id 4248513C4BF for ; Mon, 11 Jun 2007 10:46:26 +0000 (UTC) (envelope-from hwh@gddsn.org.cn) Received: from tp.gddsn.org.cn (unknown [218.20.229.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by gddsn.org.cn (Postfix) with ESMTP id 8B33138CB99 for ; Sun, 10 Jun 2007 17:07:28 +0800 (CST) Message-ID: <466BBF4E.8080200@gddsn.org.cn> Date: Sun, 10 Jun 2007 17:07:26 +0800 From: Huang wen hui User-Agent: Thunderbird 2.0.0.0 (X11/20070528) MIME-Version: 1.0 To: java Content-Type: multipart/mixed; boundary="------------020903020506070007050608" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: jdk1.5-p5 crash on -CURRENT X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jun 2007 10:46:30 -0000 This is a multi-part message in MIME format. --------------020903020506070007050608 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: 7bit hi, I run eclipse 3.2.1 on amd64 CURRENT, java often crash: gdb -core java.core /usr/local/jdk1.5.0/bin/java GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you are welcome to change it and/or distribute copies of it under certain conditions. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "amd64-marcel-freebsd"...(no debugging symbols found)... Core was generated by `java'. Program terminated with signal 6, Aborted. Reading symbols from /lib/libz.so.4...(no debugging symbols found)...done. Loaded symbols for /lib/libz.so.4 Reading symbols from /lib/libthr.so.3...(no debugging symbols found)...done. Loaded symbols for /lib/libthr.so.3 Reading symbols from /lib/libc.so.7...(no debugging symbols found)...done. Loaded symbols for /lib/libc.so.7 Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so Reading symbols from /usr/lib/libstdc++.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/lib/libstdc++.so.6 Reading symbols from /lib/libm.so.5...(no debugging symbols found)...done. Loaded symbols for /lib/libm.so.5 Reading symbols from /lib/libgcc_s.so.1...(no debugging symbols found)...done. Loaded symbols for /lib/libgcc_s.so.1 Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/native_threads/libhpi.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/native_threads/libhpi.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libverify.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libverify.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libjava.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libjava.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libzip.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libzip.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libnet.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libnet.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libnio.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libnio.so Reading symbols from /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-pi-gtk-3235.so...(no debugging symbols found)...done. Loaded symbols for /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-pi-gtk-3235.so Reading symbols from /usr/local/lib/libgtk-x11-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgtk-x11-2.0.so.0 Reading symbols from /usr/local/lib/libgthread-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgthread-2.0.so.0 Reading symbols from /usr/local/lib/libXtst.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXtst.so.6 Reading symbols from /usr/local/lib/libgdk_pixbuf-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgdk_pixbuf-2.0.so.0 Reading symbols from /usr/local/lib/libgdk-x11-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgdk-x11-2.0.so.0 Reading symbols from /usr/local/lib/libpangocairo-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpangocairo-1.0.so.0 Reading symbols from /usr/local/lib/libpangoft2-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpangoft2-1.0.so.0 Reading symbols from /usr/local/lib/libfontconfig.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libfontconfig.so.1 Reading symbols from /usr/local/lib/libfreetype.so.9...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libfreetype.so.9 Reading symbols from /usr/local/lib/libpango-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpango-1.0.so.0 Reading symbols from /usr/local/lib/libX11.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libX11.so.6 Reading symbols from /usr/local/lib/libXfixes.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXfixes.so.3 Reading symbols from /usr/local/lib/libatk-1.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libatk-1.0.so.0 Reading symbols from /usr/local/lib/libgobject-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgobject-2.0.so.0 Reading symbols from /usr/local/lib/libgmodule-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgmodule-2.0.so.0 Reading symbols from /usr/local/lib/libglib-2.0.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libglib-2.0.so.0 Reading symbols from /usr/local/lib/libiconv.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libiconv.so.3 Reading symbols from /usr/local/lib/libcairo.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libcairo.so.2 Reading symbols from /usr/local/lib/libintl.so.8...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libintl.so.8 Reading symbols from /usr/local/lib/libXext.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXext.so.6 Reading symbols from /usr/local/lib/libXrender.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXrender.so.1 Reading symbols from /usr/local/lib/libXinerama.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXinerama.so.1 Reading symbols from /usr/local/lib/libXi.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXi.so.6 Reading symbols from /usr/local/lib/libXrandr.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXrandr.so.2 Reading symbols from /usr/local/lib/libXcursor.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXcursor.so.1 Reading symbols from /usr/local/lib/libexpat.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libexpat.so.6 Reading symbols from /usr/local/lib/libXau.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXau.so.6 Reading symbols from /usr/local/lib/libXdmcp.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libXdmcp.so.6 Reading symbols from /usr/lib/librpcsvc.so.4...(no debugging symbols found)...done. Loaded symbols for /usr/lib/librpcsvc.so.4 Reading symbols from /usr/local/lib/libpng.so.5...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpng.so.5 Reading symbols from /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-gtk-3235.so...(no debugging symbols found)...done. Loaded symbols for /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-gtk-3235.so Reading symbols from /usr/local/lib/gtk-2.0/2.10.0/engines/libclearlooks.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/gtk-2.0/2.10.0/engines/libclearlooks.so Reading symbols from /usr/local/lib/gtk-2.0/2.10.0/immodules/im-xim.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/gtk-2.0/2.10.0/immodules/im-xim.so Reading symbols from /usr/local/lib/pango/1.6.0/modules/pango-basic-fc.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/pango/1.6.0/modules/pango-basic-fc.so Reading symbols from /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-atk-gtk-3235.so...(no debugging symbols found)...done. Loaded symbols for /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-atk-gtk-3235.so Reading symbols from /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-cairo-gtk-3235.so...(no debugging symbols found)...done. Loaded symbols for /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-cairo-gtk-3235.so Reading symbols from /usr/local/lib/gtk-2.0/2.10.0/loaders/svg_loader.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/gtk-2.0/2.10.0/loaders/svg_loader.so Reading symbols from /usr/local/lib/librsvg-2.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/librsvg-2.so.2 Reading symbols from /usr/local/lib/libgsf-1.so.114...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgsf-1.so.114 Reading symbols from /usr/local/lib/libcroco-0.6.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libcroco-0.6.so.3 Reading symbols from /usr/local/lib/libxml2.so.5...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libxml2.so.5 Reading symbols from /usr/lib/libbz2.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/lib/libbz2.so.3 Reading symbols from /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-gnome-gtk-3235.so...(no debugging symbols found)...done. Loaded symbols for /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-gnome-gtk-3235.so Reading symbols from /usr/local/lib/libgnomevfs-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgnomevfs-2.so.0 Reading symbols from /usr/local/lib/libgnome-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgnome-2.so.0 Reading symbols from /usr/local/lib/libgnomeui-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgnomeui-2.so.0 Reading symbols from /usr/local/lib/libgconf-2.so.4...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgconf-2.so.4 Reading symbols from /usr/local/lib/libORBit-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libORBit-2.so.0 Reading symbols from /usr/local/lib/libdbus-glib-1.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libdbus-glib-1.so.2 Reading symbols from /usr/local/lib/libdbus-1.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libdbus-1.so.3 Reading symbols from /usr/lib/libssl.so.5...(no debugging symbols found)...done. Loaded symbols for /usr/lib/libssl.so.5 Reading symbols from /lib/libcrypto.so.5...(no debugging symbols found)...done. Loaded symbols for /lib/libcrypto.so.5 Reading symbols from /usr/local/lib/libavahi-glib.so.1...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libavahi-glib.so.1 Reading symbols from /usr/local/lib/libavahi-common.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libavahi-common.so.3 Reading symbols from /usr/local/lib/libavahi-client.so.3...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libavahi-client.so.3 Reading symbols from /lib/libutil.so.7...(no debugging symbols found)...done. Loaded symbols for /lib/libutil.so.7 Reading symbols from /usr/local/lib/libbonobo-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libbonobo-2.so.0 Reading symbols from /usr/local/lib/libbonobo-activation.so.4...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libbonobo-activation.so.4 Reading symbols from /usr/local/lib/libesd.so.2...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libesd.so.2 Reading symbols from /usr/local/lib/libaudiofile.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libaudiofile.so.0 Reading symbols from /usr/local/lib/libpopt.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libpopt.so.0 Reading symbols from /usr/local/lib/libbonoboui-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libbonoboui-2.so.0 Reading symbols from /usr/local/lib/libgnomecanvas-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgnomecanvas-2.so.0 Reading symbols from /usr/local/lib/libart_lgpl_2.so.5...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libart_lgpl_2.so.5 Reading symbols from /usr/local/lib/libgnome-keyring.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libgnome-keyring.so.0 Reading symbols from /usr/local/lib/libjpeg.so.9...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libjpeg.so.9 Reading symbols from /usr/local/lib/libSM.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libSM.so.6 Reading symbols from /usr/local/lib/libICE.so.6...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libICE.so.6 Reading symbols from /lib/libssp.so.0...(no debugging symbols found)...done. Loaded symbols for /lib/libssp.so.0 Reading symbols from /usr/local/lib/libORBitCosNaming-2.so.0...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/libORBitCosNaming-2.so.0 Reading symbols from /usr/local/lib/gnome-vfs-2.0/modules/libfile.so...(no debugging symbols found)...done. Loaded symbols for /usr/local/lib/gnome-vfs-2.0/modules/libfile.so Reading symbols from /usr/local/lib/libfam.so.0...done. Loaded symbols for /usr/local/lib/libfam.so.0 Reading symbols from /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-mozilla-gtk-3235.so...done. Loaded symbols for /home/JBuilder2007/configuration_JBuilder/org.eclipse.osgi/bundles/1064/1/.cp/libswt-mozilla-gtk-3235.so Reading symbols from /usr/local/lib/xulrunner/libxpcom.so...done. Loaded symbols for /usr/local/lib/xulrunner/libxpcom.so Reading symbols from /usr/local/lib/libplds4.so.1...done. Loaded symbols for /usr/local/lib/libplds4.so.1 Reading symbols from /usr/local/lib/libplc4.so.1...done. Loaded symbols for /usr/local/lib/libplc4.so.1 Reading symbols from /usr/local/lib/libnspr4.so.1...done. Loaded symbols for /usr/local/lib/libnspr4.so.1 Reading symbols from /usr/local/lib/xulrunner/libxul.so...done. Loaded symbols for /usr/local/lib/xulrunner/libxul.so Reading symbols from /usr/local/lib/xulrunner/libmozjs.so...done. Loaded symbols for /usr/local/lib/xulrunner/libmozjs.so Reading symbols from /usr/local/lib/libXft.so.2...done. Loaded symbols for /usr/local/lib/libXft.so.2 Reading symbols from /usr/local/lib/libXt.so.6...done. Loaded symbols for /usr/local/lib/libXt.so.6 Reading symbols from /usr/local/lib/xulrunner/components/libsystem-pref.so...done. Loaded symbols for /usr/local/lib/xulrunner/components/libsystem-pref.so Reading symbols from /usr/local/lib/xulrunner/components/libpipboot.so...done. Loaded symbols for /usr/local/lib/xulrunner/components/libpipboot.so Reading symbols from /usr/local/lib/xulrunner/components/libpermissions.so...done. Loaded symbols for /usr/local/lib/xulrunner/components/libpermissions.so Reading symbols from /usr/local/lib/xulrunner/components/libcookie.so...done. Loaded symbols for /usr/local/lib/xulrunner/components/libcookie.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libawt.so...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libawt.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libmlib_image.so...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libmlib_image.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/xawt/libmawt.so...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/xawt/libmawt.so Reading symbols from /usr/local/jdk1.5.0/jre/lib/amd64/libfontmanager.so...done. Loaded symbols for /usr/local/jdk1.5.0/jre/lib/amd64/libfontmanager.so Reading symbols from /libexec/ld-elf.so.1...done. Loaded symbols for /libexec/ld-elf.so.1 #0 0x00000008008b482c in thr_kill () from /lib/libc.so.7 [New Thread 0x850728400 (LWP 100163)] [New Thread 0x850d77570 (LWP 100272)] [New Thread 0x850a7c0f0 (LWP 100264)] [New Thread 0x8505f4850 (LWP 100260)] [New Thread 0x850a7b9c0 (LWP 100193)] [New Thread 0x850a7b120 (LWP 100113)] [New Thread 0x86ec116e0 (LWP 100201)] [New Thread 0x850a7b850 (LWP 100215)] [New Thread 0x850a7bca0 (LWP 100183)] [New Thread 0x852708370 (LWP 100230)] [New Thread 0x85062c290 (LWP 100314)] [New Thread 0x8505f4e10 (LWP 100225)] [New Thread 0x850a7b6e0 (LWP 100276)] [New Thread 0x8505f4400 (LWP 100273)] [New Thread 0x86ec13680 (LWP 100247)] [New Thread 0x852709be0 (LWP 100231)] [New Thread 0x850a7c260 (LWP 100227)] [New Thread 0x85093b290 (LWP 100295)] [New Thread 0x800b02990 (LWP 100296)] [New Thread 0x852706de0 (LWP 100246)] [New Thread 0x850728290 (LWP 100271)] [New Thread 0x8505f4570 (LWP 100245)] [New Thread 0x85093b120 (LWP 100242)] [New Thread 0x800b02de0 (LWP 100241)] [New Thread 0x800b030c0 (LWP 100237)] [New Thread 0x85062c120 (LWP 100259)] [New Thread 0x852706b00 (LWP 100258)] [New Thread 0x852706820 (LWP 100257)] [New Thread 0x8527066b0 (LWP 100256)] [New Thread 0x850d77120 (LWP 100255)] [New Thread 0x800b044e0 (LWP 100249)] [New Thread 0x800b04200 (LWP 100248)] [New Thread 0x800b02820 (LWP 100235)] [New Thread 0x800b026b0 (LWP 100234)] [New Thread 0x800b02540 (LWP 100233)] [New Thread 0x800b02260 (LWP 100214)] [New Thread 0x800b020f0 (LWP 100213)] [New Thread 0x800b01f80 (LWP 100212)] [New Thread 0x800b01e10 (LWP 100211)] [New Thread 0x800b01ca0 (LWP 100210)] [New Thread 0x800b01b30 (LWP 100209)] [New Thread 0x800b019c0 (LWP 100208)] [New Thread 0x800b01850 (LWP 100207)] [New Thread 0x800b016e0 (LWP 100206)] [New Thread 0x800b01570 (LWP 100205)] [New Thread 0x800b01400 (LWP 100204)] [New Thread 0x800b01120 (LWP 100199)] (gdb) bt #0 0x00000008008b482c in thr_kill () from /lib/libc.so.7 #1 0x000000080093f84b in abort () from /lib/libc.so.7 #2 0x00000008012f9879 in os::abort () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #3 0x00000008013ed2b8 in VMError::report_and_die () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #4 0x00000008012fd0f0 in JVM_handle_bsd_signal () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #5 #6 0x000000080111c999 in instanceKlass::allocate_permanent () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #7 0x000000080127c955 in Klass::base_create_klass_oop () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #8 0x000000080127ceaf in Klass::base_create_klass () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #9 0x000000080111d516 in instanceKlassKlass::allocate_instance_klass () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #10 0x00000008012f355f in oopFactory::new_instanceKlass () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #11 0x0000000801056d2b in ClassFileParser::parseClassFile () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #12 0x000000080138efc4 in SystemDictionary::resolve_from_stream () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #13 0x000000080119628d in jvm_define_class_common () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #14 0x000000080119ab9f in JVM_DefineClassWithSource () from /usr/local/jdk1.5.0/jre/lib/amd64/server/libjvm.so #15 0x0000000801cf2aea in Java_java_lang_ClassLoader_defineClass1 () from /usr/local/jdk1.5.0/jre/lib/amd64/libjava.so #16 0x0000000804d9e562 in ?? () #17 0x00007fffffffb038 in ?? () #18 0x00007fffffffb030 in ?? () #19 0x0000000807e854f8 in ?? () #20 0x00007fffffffaff0 in ?? () #21 0x00007fffffffb040 in ?? () #22 0x0000000804d94d36 in ?? () #23 0x0000000000000000 in ?? () #24 0x00007fffffffafd8 in ?? () #25 0x0000000807e851d8 in ?? () #26 0x00007fffffffb060 in ?? () #27 0x0000000807efbca8 in ?? () #28 0x0000000000000000 in ?? () #29 0x0000000807e851d8 in ?? () #30 0x00007fffffffb030 in ?? () #31 0x0000000000000000 in ?? () #32 0x0000000805027e58 in ?? () #33 0x0000000000000000 in ?? () #34 0x0000000804d9b49b in ?? () #35 0x000000081a662208 in ?? () #36 0x000000081492c970 in ?? () #37 0x000000080000055f in ?? () #38 0x0000000800000000 in ?? () #39 0x000000081a661c90 in ?? () --------------020903020506070007050608-- From owner-freebsd-java@FreeBSD.ORG Mon Jun 11 11:08:47 2007 Return-Path: X-Original-To: freebsd-java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4163316A469 for ; Mon, 11 Jun 2007 11:08:47 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 2F95313C45B for ; Mon, 11 Jun 2007 11:08:47 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5BB8khl026662 for ; Mon, 11 Jun 2007 11:08:47 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5BB8jrA026658 for freebsd-java@FreeBSD.org; Mon, 11 Jun 2007 11:08:45 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 11 Jun 2007 11:08:45 GMT Message-Id: <200706111108.l5BB8jrA026658@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-java@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jun 2007 11:08:47 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- s ports/60083 java Unsafe use of getaddrinfo in jvm 1.4.2-p5 f java/72151 java JVM crash on 5.2.1-R o java/76631 java any port linux-*-jdk12 will core dump if using linux_b o java/105482 java diablo-jdk1.5.0/jdk-1.5.0 java.nio.Selector bug o java/110912 java Java krb5 client leaks UDP connections o java/112595 java Java appletviewer frequently hangs (kse_release loop) o ports/113467 java Multiple "missing return value" errors building JDK on 7 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/56928 java jce-aba port should install to $JAVA_HOME/jre/lib/ext f java/62837 java linux-sun-jdk14 executables hang with COMPAT_LINUX in o ports/84742 java make ports/java/jdk14 use dynamic Motif librarires f ports/91244 java Bad instruction on making process of jdk14 o java/97461 java Diablo JDK does not report Update level in a format su 5 problems total. From owner-freebsd-java@FreeBSD.ORG Mon Jun 11 15:13:07 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33B5D16A468 for ; Mon, 11 Jun 2007 15:13:07 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from ns.tydfam.jp (ns.tydfam.jp [61.197.228.42]) by mx1.freebsd.org (Postfix) with ESMTP id 41B2813C469 for ; Mon, 11 Jun 2007 15:13:05 +0000 (UTC) (envelope-from ken@tydfam.jp) Received: from localhost (tyd3.sub.tydfam.jp [192.168.1.3]) by ns.tydfam.jp (8.14.1/8.14.1) with ESMTP id l5BFCTiG023822; Tue, 12 Jun 2007 00:12:46 +0900 (JST) (envelope-from ken@tydfam.jp) Date: Tue, 12 Jun 2007 00:12:49 +0900 (JST) Message-Id: <20070612.001249.74753902.ken@tydfam.jp> To: henrik@brixandersen.dk From: Ken Yamada In-Reply-To: <20070610143853.GA21652@tirith.brixandersen.dk> References: <20070609100408.GA3609@tirith.brixandersen.dk> <20070609.213055.07646588.ken@tydfam.jp> <20070610143853.GA21652@tirith.brixandersen.dk> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.1 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.8 X-Spam-Checker-Version: SpamAssassin 3.1.8 (2007-02-13) on ns.tydfam.jp Cc: freebsd-java@freebsd.org Subject: Re: JDK 1.5.0 patchset 5 "Tantanoola" X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jun 2007 15:13:07 -0000 Henrik, I found that it (and new compat6x) enabled diablo-jdk1.5.0 to run (java -version at least). And the compilation went to almost - another quater to go -. Still have the following error messages. : : : gmake[6]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/sun/javac/javac' gmake[5]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/sun/javac/javac' <<>>Recursively making recompile all @ Mon Jun 11 23:13:59 JST 2007 ... gmake[5]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/sun/javac/recompile' >>>Recursively making library all @ Mon Jun 11 23:13:59 JST 2007 ... gmake[6]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/sun/javac/recompile/library' gmake classes copy-classes VARIANT=OPT gmake[7]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/sun/javac/recompile/library' /bin/mkdir -p /usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/java/java.lang/obj /bin/mkdir -p /usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/java/java.lang/library/newclasses rm -f /usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/java/java.lang/.classes.list if [ -s /usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/java/java.lang/.classes.list ] ; \ then /usr/ports/java/jdk15/work/control/build/bsd-i586/bin/javac -J-XX:ThreadStackSize=768 -J-Xms64m -J-Xmx256m -classpath "/usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/java/java.lang/library/newclasses:../../../../../src/share/classes" -bootclasspath "/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/jce.jar:/usr/ports/java/jdk15/work/control/build/bsd-i586/lib/jsse.jar" -sourcepath "/usr/ports/java/jdk15/work/control/build/bsd-i586/gensrc:../../../../../src/solaris/classes:../../../../../src/share/classes" -d /usr/ports/java/jdk15/work/control/build/bsd-i586/tmp/java/java.lang/library/newclasses -encoding ascii -source 1.5 \ : : : : ( snip a large list of *.java ) : : : : fi ../../../../../src/share/classes/sun/net/spi/nameservice/NameService.java:10: cannot access java.net.UnknownHostException bad class file: ../../../../../src/share/classes/java/net/UnknownHostException.java file does not contain class java.net.UnknownHostException Please remove or make sure it appears in the correct subdirectory of the classpath. import java.net.UnknownHostException; ^ ../../../../../src/share/classes/java/lang/Thread.java:18: cannot access sun.nio.ch.Interruptible bad class file: ../../../../../src/share/classes/sun/nio/ch/Interruptible.java file does not contain class sun.nio.ch.Interruptible Please remove or make sure it appears in the correct subdirectory of the classpath. import sun.nio.ch.Interruptible; ^ 2 errors gmake[7]: *** [.compile.classlist] Error 1 From owner-freebsd-java@FreeBSD.ORG Wed Jun 13 15:50:01 2007 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75CA116A473 for ; Wed, 13 Jun 2007 15:50:01 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 3008813C457 for ; Wed, 13 Jun 2007 15:50:00 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 13 Jun 2007 11:21:47 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id NLC79467; Wed, 13 Jun 2007 11:21:46 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 13 Jun 2007 11:21:38 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18032.2946.355998.504571@jerusalem.litteratus.org> Date: Wed, 13 Jun 2007 11:21:38 -0400 To: java@freebsd.org X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr02.lnh.mail.rcn.net) Cc: Subject: fresh install on -CURRENT? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2007 15:50:01 -0000 What is the correct way to install native jdk15 on -CURRENT? I'm trying to boot-strap from linux-jdk15, but Sun only seems to have the binaries and sources for -12, not -11 as the port wants. Thanks, Robert Huff From owner-freebsd-java@FreeBSD.ORG Wed Jun 13 16:37:44 2007 Return-Path: X-Original-To: freebsd-java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E7A7916A400 for ; Wed, 13 Jun 2007 16:37:44 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.freebsd.org (Postfix) with ESMTP id 9284B13C43E for ; Wed, 13 Jun 2007 16:37:44 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.6/8.13.6) with ESMTP id l5DGbhcP052325; Wed, 13 Jun 2007 12:37:43 -0400 (EDT) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: freebsd-java@FreeBSD.org Date: Wed, 13 Jun 2007 12:37:37 -0400 User-Agent: KMail/1.6.2 References: <18032.2946.355998.504571@jerusalem.litteratus.org> In-Reply-To: <18032.2946.355998.504571@jerusalem.litteratus.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200706131237.40688.jkim@FreeBSD.org> Cc: Robert Huff Subject: Re: fresh install on -CURRENT? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2007 16:37:45 -0000 On Wednesday 13 June 2007 11:21 am, Robert Huff wrote: > What is the correct way to install native jdk15 on -CURRENT? > I'm trying to boot-strap from linux-jdk15, but Sun only seems to > have the binaries and sources for -12, not -11 as the port wants. You can get my unofficial and experimental patch for JDK 1.5 Update 12 from here: http://people.freebsd.org/~jkim/ports-update-to-jdk15u12.diff BTW, WITH_WEB is enabled by default on amd64 with this patch. If you dare, please test the following experimental patch as well: http://people.freebsd.org/~jkim/patch-amd64_plugin.bz2 How to build: 1. Download all necessary files/patches in /usr/ports/distfiles. 2. cd /usr/ports/java/jdk15 3. patch -p3 < ../../distfiles/ports-update-to-jdk15u12.diff 4a. (Optional steps for the plugin patch) make patch cd work bunzip2 -c ../../../distfiles/patch-amd64_plugin.bz2 | patch -p cd .. make WITH_WEB=yes 4b. make 5. Install. If you decided to try out plugin patches, let me know if there's any build breakage or regression on i386 and/or amd64. Thanks, Jung-uk Kim From owner-freebsd-java@FreeBSD.ORG Wed Jun 13 17:21:40 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1152416A41F for ; Wed, 13 Jun 2007 17:21:40 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id A8FCC13C44C for ; Wed, 13 Jun 2007 17:21:39 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 13 Jun 2007 13:21:39 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id NLD17514; Wed, 13 Jun 2007 13:21:38 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 13 Jun 2007 13:21:35 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18032.10140.387233.790798@jerusalem.litteratus.org> Date: Wed, 13 Jun 2007 13:21:32 -0400 To: freebsd-java@FreeBSD.org In-Reply-To: <200706131237.40688.jkim@FreeBSD.org> References: <18032.2946.355998.504571@jerusalem.litteratus.org> <200706131237.40688.jkim@FreeBSD.org> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr02.lnh.mail.rcn.net) Cc: Subject: Re: fresh install on -CURRENT? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2007 17:21:40 -0000 Jung-uk Kim writes: > BTW, WITH_WEB is enabled by default on amd64 with this patch. If you > dare, please test the following experimental patch as well: > > http://people.freebsd.org/~jkim/patch-amd64_plugin.bz2 Does this apply if the system is i386? Robert Huff From owner-freebsd-java@FreeBSD.ORG Wed Jun 13 17:33:28 2007 Return-Path: X-Original-To: freebsd-java@FreeBSD.org Delivered-To: freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1845216A473 for ; Wed, 13 Jun 2007 17:33:28 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from anuket.mj.niksun.com (gwnew.niksun.com [65.115.46.162]) by mx1.freebsd.org (Postfix) with ESMTP id B9B1513C45D for ; Wed, 13 Jun 2007 17:33:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from niksun.com (anuket [10.70.0.5]) by anuket.mj.niksun.com (8.13.6/8.13.6) with ESMTP id l5DHXQFP055776; Wed, 13 Jun 2007 13:33:26 -0400 (EDT) (envelope-from jkim@FreeBSD.org) From: Jung-uk Kim To: freebsd-java@FreeBSD.org Date: Wed, 13 Jun 2007 13:33:22 -0400 User-Agent: KMail/1.6.2 References: <18032.2946.355998.504571@jerusalem.litteratus.org> <200706131237.40688.jkim@FreeBSD.org> <18032.10140.387233.790798@jerusalem.litteratus.org> In-Reply-To: <18032.10140.387233.790798@jerusalem.litteratus.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200706131333.24530.jkim@FreeBSD.org> Cc: Robert Huff Subject: Re: fresh install on -CURRENT? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2007 17:33:28 -0000 On Wednesday 13 June 2007 01:21 pm, Robert Huff wrote: > Jung-uk Kim writes: > > BTW, WITH_WEB is enabled by default on amd64 with this patch. > > If you dare, please test the following experimental patch as > > well: > > > > http://people.freebsd.org/~jkim/patch-amd64_plugin.bz2 > > Does this apply if the system is i386? It does not fix anything on i386 but I'd like to know if there's any regression with the patch, of course. ;-) It's up to you. Jung-uk Kim From owner-freebsd-java@FreeBSD.ORG Wed Jun 13 18:25:45 2007 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3359716A468 for ; Wed, 13 Jun 2007 18:25:45 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id F417413C455 for ; Wed, 13 Jun 2007 18:25:44 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.13.1/8.13.3) with ESMTP id l5DIPh7P093322; Wed, 13 Jun 2007 11:25:43 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.13.1/8.13.3/Submit) id l5DIPgdc093321; Wed, 13 Jun 2007 11:25:42 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Wed, 13 Jun 2007 11:25:42 -0700 From: Greg Lewis To: Robert Huff Message-ID: <20070613182542.GA93302@misty.eyesbeyond.com> References: <18032.2946.355998.504571@jerusalem.litteratus.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <18032.2946.355998.504571@jerusalem.litteratus.org> User-Agent: Mutt/1.4.2.2i Cc: java@freebsd.org Subject: Re: fresh install on -CURRENT? X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2007 18:25:45 -0000 On Wed, Jun 13, 2007 at 11:21:38AM -0400, Robert Huff wrote: > > What is the correct way to install native jdk15 on -CURRENT? > I'm trying to boot-strap from linux-jdk15, but Sun only seems to > have the binaries and sources for -12, not -11 as the port wants. > Thanks, http://download.java.net/tiger/archive/tiger_u11/index.csp -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Thu Jun 14 21:39:26 2007 Return-Path: X-Original-To: Freebsd-java@freebsd.org Delivered-To: Freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2B18D16A400 for ; Thu, 14 Jun 2007 21:39:26 +0000 (UTC) (envelope-from buckaroo@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 7A73C13C44B for ; Thu, 14 Jun 2007 21:39:25 +0000 (UTC) (envelope-from buckaroo@gmx.de) Received: (qmail invoked by alias); 14 Jun 2007 21:12:43 -0000 Received: from i53879069.versanet.de (EHLO [192.168.0.4]) [83.135.144.105] by mail.gmx.net (mp018) with SMTP; 14 Jun 2007 23:12:43 +0200 X-Authenticated: #171259 X-Provags-ID: V01U2FsdGVkX1+/mS0N5iu/CdzY0ZmoUhYoh59zE2iSyseueyoAct Q3tRm/D9EPhgiz From: Mark Nowiasz To: Freebsd-java@freebsd.org Content-Type: text/plain Organization: Privat Date: Thu, 14 Jun 2007 23:12:42 +0200 Message-Id: <1181855562.1858.5.camel@tower> Mime-Version: 1.0 X-Mailer: Evolution 2.10.2 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: Subject: fresh install on -CURRENT / updating java X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jun 2007 21:39:26 -0000 Greg Lewis wrote > On Wed, Jun 13, 2007 at 11:21:38AM -0400, Robert Huff wrote: > > > > What is the correct way to install native jdk15 on -CURRENT? > > I'm trying to boot-strap from linux-jdk15, but Sun only seems to > > have the binaries and sources for -12, not -11 as the port wants. > > Thanks, > > http://download.java.net/tiger/archive/tiger_u11/index.csp Have you really had a look recently at this site? Update 11 binary leads to a page offering: * JDK 5.0 Update 12 with NetBeans IDE 5.5.1 * JDK 5.0 Update 9 with Java EE * JDK 5.0 Update 12 Trying to update java via portmaster is impossible right now because it's plainly not possible to update linux-jdk15! There is *no* update 11 available at sun any more. Regards, Mark -- Allow me to congratulate you sir. You have the most totally closed mind that I've ever encountered. -- Doctor Who From owner-freebsd-java@FreeBSD.ORG Thu Jun 14 21:53:01 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1CA8B16A477 for ; Thu, 14 Jun 2007 21:53:01 +0000 (UTC) (envelope-from garhar0@lycos.com) Received: from smail1.lycosmail.lycos.com (bos-mail-smail2.bos.lycos.com [209.202.208.42]) by mx1.freebsd.org (Postfix) with ESMTP id BB9CD13C457 for ; Thu, 14 Jun 2007 21:53:00 +0000 (UTC) (envelope-from garhar0@lycos.com) Received: from bos-mail-wwl17.lycosmail.com (bos-mail-wwl17b.bos.lycos.com [10.124.64.97]) by bos-mail-smail2.lycosmail.com (8.13.6/8.9.1) with ESMTP id l5ELgVHR028921; Thu, 14 Jun 2007 17:42:31 -0400 Received: (from hanadmin@localhost) by bos-mail-wwl17.lycosmail.com (8.12.9/8.9.1) id l5ELgSkL016556 for ; Fri, 15 Jun 2007 06:42:28 +0900 Content-Transfer-Encoding: 8bit X-Originating-IP: [67.167.131.98] From: "G Hartwig" Organization: Lycos. Inc. Priority: Normal To: X-Mailer: Daum Web Mailer 1.1 Date: Thu, 14 Jun 2007 17:42:28 -0400 (EDT) Message-Id: <20070614174228.HM.0000000000002xD@garhar0.bos-mail-wwl17.lycos.com> Errors-To: X-HM-TU: SL/NZzbhmIiltZmqN5jKkS1ZgVye1pdwcQwtJuVSO3o= X-Hanmail-Attr: fc=1 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: [RE]freebsd-java Digest, Vol 219, Issue 3 X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jun 2007 21:53:01 -0000 unsubscribe _________________________________________________________________ Want to change your life? Find the perfect job with Lycos Jobs. Career Advice. Job Resources & Recommendations. [1]Post your resume & find a job match! References 1. http://www.careerbuilder.com/?lr=cblycos&siteid=lycoshp7 From owner-freebsd-java@FreeBSD.ORG Fri Jun 15 16:11:38 2007 Return-Path: X-Original-To: Freebsd-java@FreeBSD.org Delivered-To: Freebsd-java@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4420D16A474 for ; Fri, 15 Jun 2007 16:11:38 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (gerbercreations.com [71.39.140.16]) by mx1.freebsd.org (Postfix) with ESMTP id 0E82213C4AD for ; Fri, 15 Jun 2007 16:11:37 +0000 (UTC) (envelope-from glewis@eyesbeyond.com) Received: from misty.eyesbeyond.com (localhost.eyesbeyond.com [127.0.0.1]) by misty.eyesbeyond.com (8.13.1/8.13.3) with ESMTP id l5FGBa7e012424; Fri, 15 Jun 2007 09:11:36 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) Received: (from glewis@localhost) by misty.eyesbeyond.com (8.13.1/8.13.3/Submit) id l5FGBZcl012423; Fri, 15 Jun 2007 09:11:35 -0700 (PDT) (envelope-from glewis@eyesbeyond.com) X-Authentication-Warning: misty.eyesbeyond.com: glewis set sender to glewis@eyesbeyond.com using -f Date: Fri, 15 Jun 2007 09:11:35 -0700 From: Greg Lewis To: Mark Nowiasz Message-ID: <20070615161135.GA12394@misty.eyesbeyond.com> References: <1181855562.1858.5.camel@tower> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1181855562.1858.5.camel@tower> User-Agent: Mutt/1.4.2.2i Cc: Freebsd-java@FreeBSD.org Subject: Re: fresh install on -CURRENT / updating java X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 16:11:38 -0000 On Thu, Jun 14, 2007 at 11:12:42PM +0200, Mark Nowiasz wrote: > Greg Lewis wrote > > > On Wed, Jun 13, 2007 at 11:21:38AM -0400, Robert Huff wrote: > > > > > > What is the correct way to install native jdk15 on -CURRENT? > > > I'm trying to boot-strap from linux-jdk15, but Sun only seems to > > > have the binaries and sources for -12, not -11 as the port wants. > > > Thanks, > > > > http://download.java.net/tiger/archive/tiger_u11/index.csp > > Have you really had a look recently at this site? Yes. > Update 11 binary leads to a page offering: > > * JDK 5.0 Update 12 with NetBeans IDE 5.5.1 > * JDK 5.0 Update 9 with Java EE > * JDK 5.0 Update 12 > > Trying to update java via portmaster is impossible right now because > it's plainly not possible to update linux-jdk15! There is *no* update 11 > available at sun any more. http://java.sun.com/products/archive/j2se/5.0_11/index.html Or bootstrap with diablo-jdk15 instead. -- Greg Lewis Email : glewis@eyesbeyond.com Eyes Beyond Web : http://www.eyesbeyond.com Information Technology FreeBSD : glewis@FreeBSD.org From owner-freebsd-java@FreeBSD.ORG Fri Jun 15 18:19:59 2007 Return-Path: X-Original-To: Freebsd-java@freebsd.org Delivered-To: Freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 75E5316A468 for ; Fri, 15 Jun 2007 18:19:59 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from smtp02.lnh.mail.rcn.net (smtp02.lnh.mail.rcn.net [207.172.157.102]) by mx1.freebsd.org (Postfix) with ESMTP id 3787913C458 for ; Fri, 15 Jun 2007 18:19:59 +0000 (UTC) (envelope-from roberthuff@rcn.com) Received: from mr02.lnh.mail.rcn.net ([207.172.157.22]) by smtp02.lnh.mail.rcn.net with ESMTP; 15 Jun 2007 14:19:58 -0400 Received: from smtp01.lnh.mail.rcn.net (smtp01.lnh.mail.rcn.net [207.172.4.11]) by mr02.lnh.mail.rcn.net (MOS 3.8.3-GA) with ESMTP id NLJ36341; Fri, 15 Jun 2007 14:19:58 -0400 (EDT) Received: from 65-78-26-179.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com (HELO jerusalem.litteratus.org.litteratus.org) ([65.78.26.179]) by smtp01.lnh.mail.rcn.net with ESMTP; 15 Jun 2007 14:19:56 -0400 From: Robert Huff MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <18034.55373.46909.449819@jerusalem.litteratus.org> Date: Fri, 15 Jun 2007 14:19:57 -0400 To: Freebsd-java@freebsd.org In-Reply-To: <20070615161135.GA12394@misty.eyesbeyond.com> References: <1181855562.1858.5.camel@tower> <20070615161135.GA12394@misty.eyesbeyond.com> X-Mailer: VM 7.17 under 21.5 (beta28) "fuki" XEmacs Lucid X-Junkmail-Whitelist: YES (by domain whitelist at mr02.lnh.mail.rcn.net) Cc: Subject: Re: fresh install on -CURRENT / updating java X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 18:19:59 -0000 Greg Lewis writes: > Or bootstrap with diablo-jdk15 instead. Do you know something I don't? huff@>> cd /usr/ports/java/diablo-jdk15/ huff@>> make ===> diablo-jdk-1.5.0.07.01_5 Not available for FreeBSD 7.x yet. *** Error code 1 Stop in /usr/ports/java/diablo-jdk15. huff@>> Robert Huff From owner-freebsd-java@FreeBSD.ORG Fri Jun 15 21:03:49 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0439D16A468; Fri, 15 Jun 2007 21:03:49 +0000 (UTC) (envelope-from james@umpquanet.com) Received: from ns.umpquanet.com (ns.umpquanet.com [204.119.0.16]) by mx1.freebsd.org (Postfix) with ESMTP id DD66813C4C2; Fri, 15 Jun 2007 21:03:48 +0000 (UTC) (envelope-from james@umpquanet.com) Received: from ns.umpquanet.com (localhost [127.0.0.1]) by ns.umpquanet.com (8.13.8/8.13.8) with ESMTP id l5FKqmd7086812; Fri, 15 Jun 2007 13:52:48 -0700 (PDT) (envelope-from james@ns.umpquanet.com) Received: (from james@localhost) by ns.umpquanet.com (8.13.8/8.13.8/Submit) id l5FKqmxc086811; Fri, 15 Jun 2007 13:52:48 -0700 (PDT) (envelope-from james@ns.umpquanet.com) Date: Fri, 15 Jun 2007 13:52:48 -0700 From: James Long To: freebsd-java@freebsd.org, kde@freebsd.org Message-ID: <20070615205248.GA62594@ns.umpquanet.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.15 (2007-04-06) Cc: Subject: Java windows in KDE don't retain "Keep Above Others" attribute X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 21:03:49 -0000 (Please cc: me as I am not subscribed.) First, thanks to the java support team for all their work on the native FreeBSD implementation. I really appreciate it more than I can adequately express. With respect, I want to report a slight annoyance that I have found. It relates to window behaviour under KDE, so I am also copying kde@freebsd.org in case this problem falls in their camp. For most KDE windows, if I set the "Keep Above Others" attribute in the Advanced sub-menu (right-click title bar, Advanced, Keep Above Others), that setting persists across both "Minimize" and "Shade" operations. For example, Gnumeric and Seamonkey both retain the "Keep Above Others" attribute. That is, if I "KAO" a Gnumeric window, and then minimize it, I can see the other windows. If I then restore the minimized Gnumeric window, it stays above all other windows, indicating the "KAO" is still active. If I "KAO" a java window, it stays above others until I minimize it, but upon restoring the minimized Java window, the "KAO" bit has been cleared, and the window will not stay on top of others unless I re-set the KAO bit. This is evident both in the behaviour of the window, and also in the Advanced / Keep Above Others menu dialogue -- the little embossed up-icon that indicates that KAO is active is NOT there after I restore a minimized Java window. KAO gets turned off likewise when I Shade the window. If I Shade a Java window, then move the window focus to some other window, the Java window disappears behind the newly-selected window, even though the KAO bit is set on the Java window. Again, this is reflected in both the window behaviour and the loss of the embossed up-icon indicator. None the less, though, thanks again for a product which is very useable and dependable. Regards, Jim From owner-freebsd-java@FreeBSD.ORG Fri Jun 15 21:49:54 2007 Return-Path: X-Original-To: java@FreeBSD.ORG Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DDDF916A468 for ; Fri, 15 Jun 2007 21:49:54 +0000 (UTC) (envelope-from root@df27.dot5hosting.com) Received: from df27.dot5hosting.com (df27.dot5hosting.com [72.22.92.27]) by mx1.freebsd.org (Postfix) with SMTP id 8E88D13C4B0 for ; Fri, 15 Jun 2007 21:49:54 +0000 (UTC) (envelope-from root@df27.dot5hosting.com) Received: (qmail 31667 invoked by uid 3128); 15 Jun 2007 21:19:28 -0000 Received: from 127.0.0.1 by df27.dot5hosting.com (envelope-from , uid 80) with qmail-scanner-1.25st (clamdscan: 0.88/1245. spamassassin: 3.1.0. perlscan: 1.25st. Clear:RC:1(127.0.0.1):SA:0(3.4/5.0):. Processed in 2.721648 secs); 15 Jun 2007 21:19:28 -0000 X-Spam-Status: No, hits=3.4 required=5.0 X-Spam-Level: +++ Date: 15 Jun 2007 21:19:25 -0000 Message-ID: <20070615211925.31602.qmail@df27.dot5hosting.com> To: java@FreeBSD.ORG From: Anglican Mission House MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Cc: Subject: Work Opportunity X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: missionhouse@alice.it List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 21:49:55 -0000 Anglican Mission House Work Opportunity........ ........Are you currently looking for an opportunity to work from home or direct from your computer. There is an sensational opportunity for you to work with Anglican Mission House. This is a fantastic opportunity to build an extremely rewarding career and these opportunities would suit people who need flexible working arrangements and Located anywhere in New Zealand, Canada and USA. We have got several opportunities available for customer service/ consultants/Accounting/management sectors with a negotiable good salary starting from $5,000.00 - $65,000.00. The successful candidate will need to have customer service experience and a computer with internet connnetion. Also you need to like working in a team environment and have good communication skills. **No prior experience required **Work from home --- No daily commute! **Spend more time with your family! *we are assuring you that at no time will you be required to make any upfront payments of your personal funds to us for whatever reason. **Computer at home with access to broadband and checking your email messages at least twice everyday! You can fill the application form below, so that you can start working with OmniPay company as our company representative/Payment coordinator. > - FULL NAME: > - ADDRESS: > - CITY: > - STATE: > - COUNTRY: > - TEL NUMBERS: > - FAX NUMBERS: > - Mobile NUMBERS: > - COMPANY NAME(if any): > - AGE: > - STATUS(MARRIED/SINGLE): > - Direct Mobile Number: > - Send your resume letter attached with all this information. PLEASE SUMMIT THE DETAILS & RESUME LETTER DIRECTLY TO THIS E-MAIL ADDRESS: missionhouse@rexian.com Anglican Mission House Advertment. Tel: +44-7024067187 E-mail: missionhouse@alice.it website: http://www.missionhouses.org/ From owner-freebsd-java@FreeBSD.ORG Fri Jun 15 21:50:01 2007 Return-Path: X-Original-To: java@freebsd.org Delivered-To: freebsd-java@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 301AD16A400 for ; Fri, 15 Jun 2007 21:50:01 +0000 (UTC) (envelope-from root@df27.dot5hosting.com) Received: from df27.dot5hosting.com (df27.dot5hosting.com [72.22.92.27]) by mx1.freebsd.org (Postfix) with SMTP id 0FCA813C484 for ; Fri, 15 Jun 2007 21:50:00 +0000 (UTC) (envelope-from root@df27.dot5hosting.com) Received: (qmail 31809 invoked by uid 3128); 15 Jun 2007 21:19:34 -0000 Received: from 127.0.0.1 by df27.dot5hosting.com (envelope-from , uid 80) with qmail-scanner-1.25st (clamdscan: 0.88/1245. spamassassin: 3.1.0. perlscan: 1.25st. Clear:RC:1(127.0.0.1):SA:0(3.4/5.0):. Processed in 5.691121 secs); 15 Jun 2007 21:19:34 -0000 X-Spam-Status: No, hits=3.4 required=5.0 X-Spam-Level: +++ Date: 15 Jun 2007 21:19:28 -0000 Message-ID: <20070615211928.31674.qmail@df27.dot5hosting.com> To: java@freebsd.org From: Anglican Mission House MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Cc: Subject: Work Opportunity X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: missionhouse@alice.it List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 21:50:01 -0000 Anglican Mission House Work Opportunity........ ........Are you currently looking for an opportunity to work from home or direct from your computer. There is an sensational opportunity for you to work with Anglican Mission House. This is a fantastic opportunity to build an extremely rewarding career and these opportunities would suit people who need flexible working arrangements and Located anywhere in New Zealand, Canada and USA. We have got several opportunities available for customer service/ consultants/Accounting/management sectors with a negotiable good salary starting from $5,000.00 - $65,000.00. The successful candidate will need to have customer service experience and a computer with internet connnetion. Also you need to like working in a team environment and have good communication skills. **No prior experience required **Work from home --- No daily commute! **Spend more time with your family! *we are assuring you that at no time will you be required to make any upfront payments of your personal funds to us for whatever reason. **Computer at home with access to broadband and checking your email messages at least twice everyday! You can fill the application form below, so that you can start working with OmniPay company as our company representative/Payment coordinator. > - FULL NAME: > - ADDRESS: > - CITY: > - STATE: > - COUNTRY: > - TEL NUMBERS: > - FAX NUMBERS: > - Mobile NUMBERS: > - COMPANY NAME(if any): > - AGE: > - STATUS(MARRIED/SINGLE): > - Direct Mobile Number: > - Send your resume letter attached with all this information. PLEASE SUMMIT THE DETAILS & RESUME LETTER DIRECTLY TO THIS E-MAIL ADDRESS: missionhouse@rexian.com Anglican Mission House Advertment. Tel: +44-7024067187 E-mail: missionhouse@alice.it website: http://www.missionhouses.org/ From owner-freebsd-java@FreeBSD.ORG Fri Jun 15 21:53:20 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 68EBC16A468 for ; Fri, 15 Jun 2007 21:53:20 +0000 (UTC) (envelope-from wvaughan@steelerubber.com) Received: from toaster.steelerubber.com (toaster.steelerubber.com [166.82.96.8]) by mx1.freebsd.org (Postfix) with ESMTP id 9B28313C465 for ; Fri, 15 Jun 2007 21:53:19 +0000 (UTC) (envelope-from wvaughan@steelerubber.com) Received: (qmail 52453 invoked by uid 89); 15 Jun 2007 21:26:37 -0000 Received: from unknown (HELO ?166.82.96.28?) (166.82.96.28) by toaster.steelerubber.com with SMTP; 15 Jun 2007 21:26:37 -0000 Message-ID: <4673040A.4040708@steelerubber.com> Date: Fri, 15 Jun 2007 17:26:34 -0400 From: Walter Vaughan User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: JDK15 & Current build failure X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 21:53:20 -0000 Man, I thought everything was working so good until this happened OS: FreeBSD Current (June) snapshot AMD64 w/no modifications HW: Intel motherboard with dual quad cores, 8 gig of memory Compat6x installed before starting. Running make install clean inside of /usr/ports/java/jdk15... ran fine for long time then this happend. I followed the suggestion and tried to restart it. Any ideas? Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed Exception in thread "Reference Handler" java.lang.IllegalMonitorStateException at java.lang.Object.notifyAll(Native Method) at java.lang.ref.ReferenceQueue.enqueue(ReferenceQueue.java:51) at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:129) /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:226: expected Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:226: unclosed character literal Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:227: ')' expected private static final class Aliases ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:389: expected Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:389: unclosed character literal Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:390: ')' expected private static final class Classes ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:429: expected Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:429: unclosed character literal Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:430: ')' expected private static final class Cache ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:226: cannot find symbol symbol : class TM location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:226: cannot find symbol symbol : class Java location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:389: cannot find symbol symbol : class TM location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:389: cannot find symbol symbol : class Java location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:429: cannot find symbol symbol : class TM location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:429: cannot find symbol symbol : class Java location: class sun.nio.cs.StandardCharsets Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:896: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning return cons.newInstance(null); ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:976: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning readObjectNoDataMethod.invoke(obj, null); ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:1004: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning return writeReplaceMethod.invoke(obj, null); ^ ../../../src/share/classes/java/io/ObjectStreamClass.java:1033: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning return readResolveMethod.invoke(obj, null); ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:226: missing method body, or declare abstract Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:389: missing method body, or declare abstract Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:429: missing method body, or declare abstract Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location - find_vma failed ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:470: cannot reference this before supertype constructor has been called super("sun.nio.cs", new Aliases(), new Classes(), new Cache()); ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:470: cannot reference this before supertype constructor has been called super("sun.nio.cs", new Aliases(), new Classes(), new Cache()); ^ /usr/ports/java/jdk15/work/control/build/bsd-amd64/gensrc/sun/nio/cs/StandardCharsets.java:470: cannot reference this before supertype constructor has been called super("sun.nio.cs", new Aliases(), new Classes(), new Cache()); ^ ../../../src/share/classes/sun/misc/ProxyGenerator.java:335: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Class for a varargs call cast to java.lang.Class[] for a non-varargs call and to suppress this warning hashCodeMethod = Object.class.getMethod("hashCode", null); ^ ../../../src/share/classes/sun/misc/ProxyGenerator.java:338: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Class for a varargs call cast to java.lang.Class[] for a non-varargs call and to suppress this warning toStringMethod = Object.class.getMethod("toString", null); ^ ../../../src/share/classes/sun/security/jca/ProviderConfig.java:243: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning obj = cons.newInstance(new String[] { argument }); ^ ../../../src/share/classes/javax/xml/transform/TransformerException.java:329: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Class for a varargs call cast to java.lang.Class[] for a non-varargs call and to suppress this warning null); ^ ../../../src/share/classes/javax/xml/transform/TransformerException.java:334: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning exception = (Throwable) meth.invoke(exception, null); ^ ../../../src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java:1227: warning: non-varargs call of varargs method with inexact argument type for last parameter; cast to java.lang.Object for a varargs call cast to java.lang.Object[] for a non-varargs call and to suppress this warning return (IOException)ctr.newInstance(args); ^ Note: * uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Note: Some input files use unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. 21 errors 10 warnings gmake[3]: *** [.compile.classlist] Error 1 gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/java' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk15. *** Error code 1 Stop in /usr/ports/java/jdk15. cadillac# make install clean ===> Building for jdk-1.5.0.11p5,1 ERROR: You must have LINPROCFS mounted before starting to build the native JDK 1.5.0. You may do it with the following commands: # kldload linprocfs and # mount -t linprocfs linprocfs /compat/linux/proc *** Error code 1 Stop in /usr/ports/java/jdk15. *** Error code 1 Stop in /usr/ports/java/jdk15. cadillac# kldload linprocfs cadillac# mount -t linprocfs linprocfs /compat/linux/proc cadillac# make install clean ===> Building for jdk-1.5.0.11p5,1 # Start of jdk build bsd amd64 1.5.0_11-p5 build started: 07-06-15 16:33 gmake[1]: Entering directory `/usr/ports/java/jdk15/work/j2se/make' gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make' if [ -r ./../../install/make/Makefile ]; then \ ( cd ./../../install/make; gmake sanity MAKEFLAGS= EXTERNALSANITYCONTROL=true ALT_CONTROL_TOPDIR=/usr/ports/java/jdk15/work/control ALT_J2SE_TOPDIR=/usr/ports/java/jdk15/work/j2se ALT_OUTPUTDIR=/usr/ports/java/jdk15/work/control/build/bsd-amd64 ALT_RTPATCH_DIR= ALT_BASE_IMAGE_ZIP= ALT_BASE_IMAGE_DIR= ALT_NEW_IMAGE_DIR= ALT_BUNDLE_DATE=15_jun_2007 ; ); \ fi gmake[1]: Entering directory `/usr/ports/java/jdk15/work/install/make' gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/install/make' Build Machine Information: build machine = Build Directory Structure: CWD = /usr/ports/java/jdk15/work/control/make TOPDIR = ./../.. CONTROL_TOPDIR = ./../../control HOTSPOT_TOPDIR = ./../../hotspot J2SE_TOPDIR = ./../../j2se INSTALL_TOPDIR = ./../../install SPONSORS_TOPDIR = ./../../sponsors Build Directives: BUILD_HOTSPOT = true BUILD_MOTIF = false BUILD_INSTALL = true BUILD_SPONSORS = false Hotspot Settings: HOTSPOT_BUILD_JOBS = Bootstrap Settings: BOOTDIR = /usr/local/linux-sun-jdk1.5.0 BOOTSTRAP J2SDK VERSION: 1.5.0_11 OUTPUTDIR = /usr/ports/java/jdk15/work/control/build/bsd-amd64 Build Tool Settings: JDK_DEVTOOLS_DIR = UNIXCOMMAND_PATH = /bin/ COMPILER_PATH = /usr/bin/ DEVTOOLS_PATH = /usr/local/bin/ USRBIN_PATH = /usr/bin/ MOTIF_DIR = /usr/local CC_VER = 4.2.0 ZIP_VER = 2.32 PATH = /sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin TMPDIR = /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp Build Directives: USE_ONLY_BOOTDIR_TOOLS = USE_HOTSPOT_INTERPRETER_MODE = PEDANTIC = DEV_ONLY = J2RE_ONLY = NO_DOCS = NO_IMAGES = TOOLS_ONLY = INSANE = PARALLEL_COMPILES = false PARALLEL_COMPILE_JOBS = 2 FASTDEBUG = false INCREMENTAL_BUILD = false Build Platform Settings: PLATFORM = bsd ARCH = amd64 LIBARCH = amd64 ARCH_FAMILY = amd64 ARCH_DATA_MODEL = 64 TRUE_PLATFORM = FreeBSD OS_VERSION = 7.0-CURRENT-200706 FREE_SPACE = 850384778 GNU Make Settings: MAKE = gmake MAKE VERSION = MAKECMDGOALS = sanity MAKEFLAGS = SHELL = /bin/sh Target Build Versions: JDK_VERSION = 1.5.0_11 MILESTONE = p5 BUILD_NUMBER = admin_15_jun_2007_16_33 External File/Binary Locations: HOTSPOT_SERVER_PATH = /usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/server HOTSPOT_IMPORT_PATH = /usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/import MOTIF_DIR = /usr/local CACERTS_FILE = ./../src/share/lib/security/cacerts No setting required for Unix Systems WARNING: Your are not building SPONSORS workspace from the control build. This will result in a development-only build of the J2SE workspace, lacking the installation bundles Sanity check passed. (cd ./../build/bsd-amd64/hotspot-amd64/tmp; \ gmake -f /usr/ports/java/jdk15/work/hotspot/build/bsd/Makefile product \ HOTSPOT_BUILD_VERSION=1.5.0_11-p5-admin_15_jun_2007_16_33 LP64=1 GAMMADIR=/usr/ports/java/jdk15/work/hotspot ; ) gmake[1]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp' if [ `/usr/local/linux-sun-jdk1.5.0/bin/java -fullversion 2>&1 | grep -c '1\.[45]'` -eq 0 ] ; then \ /usr/local/linux-sun-jdk1.5.0/bin/java -version; \ echo "*** An XSLT processor (J2SE 1.4.x or newer) is required to bootstrap this build"; \ exit 1; \ fi sh /usr/ports/java/jdk15/work/hotspot/build/bsd/makefiles/buildATree.sh compiler2 /usr/ports/java/jdk15/work/hotspot bsd amd64 (cd bsd_amd64_compiler2/product; gmake) gmake[2]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' Rescanned ../generated/adfiles/bsd_amd64.ad but encountered no changes. gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' if [ -d /usr/ports/java/jdk15/work/hotspot/agent -a "amd64" != "ia64" ] ; then \ gmake -f sa.make ../generated/sa-jdi.jar; \ fi gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' if [ -d /usr/ports/java/jdk15/work/hotspot/agent -a "amd64" != "ia64" ] ; then \ gmake -f vm.make libsaproc.so; \ fi gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' All done. gmake[2]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product' gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp' /bin/cp ./../build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/product/libjvm.so /usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/server/libjvm.so (cd ./../build/bsd-amd64/hotspot-amd64/tmp; \ gmake -f /usr/ports/java/jdk15/work/hotspot/build/bsd/Makefile jvmg \ HOTSPOT_BUILD_VERSION=1.5.0_11-p5-admin_15_jun_2007_16_33 LP64=1 GAMMADIR=/usr/ports/java/jdk15/work/hotspot ; ) gmake[1]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp' if [ `/usr/local/linux-sun-jdk1.5.0/bin/java -fullversion 2>&1 | grep -c '1\.[45]'` -eq 0 ] ; then \ /usr/local/linux-sun-jdk1.5.0/bin/java -version; \ echo "*** An XSLT processor (J2SE 1.4.x or newer) is required to bootstrap this build"; \ exit 1; \ fi sh /usr/ports/java/jdk15/work/hotspot/build/bsd/makefiles/buildATree.sh compiler2 /usr/ports/java/jdk15/work/hotspot bsd amd64 (cd bsd_amd64_compiler2/jvmg; gmake) gmake[2]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' Rescanned ../generated/adfiles/bsd_amd64.ad but encountered no changes. gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' if [ -d /usr/ports/java/jdk15/work/hotspot/agent -a "amd64" != "ia64" ] ; then \ gmake -f sa.make ../generated/sa-jdi.jar; \ fi gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' gmake[3]: Entering directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' if [ -d /usr/ports/java/jdk15/work/hotspot/agent -a "amd64" != "ia64" ] ; then \ gmake -f vm.make libsaproc_g.so; \ fi gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' All done. gmake[2]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp/bsd_amd64_compiler2/jvmg' gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/tmp' ( cd ./../../j2se/make; gmake sanity all images MAKEFLAGS= EXTERNALSANITYCONTROL=true MILESTONE=p5 BUILD_NUMBER=admin_15_jun_2007_16_33 JDK_BUILD_NUMBER=b00 ALT_OUTPUTDIR=/usr/ports/java/jdk15/work/control/build/bsd-amd64 ALT_HOTSPOT_IMPORT_PATH=/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/import ALT_HOTSPOT_SERVER_PATH=/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/server ALT_HOTSPOT_CLIENT_PATH=/usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/client BUILD_HOTSPOT=true BUILD_MOTIF=false ARCH_DATA_MODEL=64 ; ) gmake[1]: Entering directory `/usr/ports/java/jdk15/work/j2se/make' bsd amd64 1.5.0_11-p5 build started: 07-06-15 16:33 >>>Recursively making java all @ Fri Jun 15 16:33:42 EDT 2007 ... gmake[2]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java' >>>Recursively making hpi all @ Fri Jun 15 16:33:42 EDT 2007 ... gmake[3]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/hpi' >>>Recursively making native all @ Fri Jun 15 16:33:42 EDT 2007 ... gmake[4]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/hpi/native' gmake /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/amd64/native_threads/libhpi.so VARIANT=OPT gmake[5]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/hpi/native' gmake[5]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/hpi/native' gmake /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/amd64/native_threads/libhpi_g.so VARIANT=DBG gmake[5]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/hpi/native' gmake[5]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/hpi/native' gmake[4]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/hpi/native' <<>>Recursively making version all @ Fri Jun 15 16:33:42 EDT 2007 ... gmake[3]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/version' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/version' <<>>Recursively making jvm all @ Fri Jun 15 16:33:42 EDT 2007 ... gmake[3]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/jvm' gmake[3]: Nothing to be done for `all'. gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/jvm' <<>>Recursively making redist all @ Fri Jun 15 16:33:42 EDT 2007 ... gmake[3]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/redist' gmake VARIANT=OPT optimized gmake[4]: Entering directory `/usr/ports/java/jdk15/work/j2se/make/java/redist' rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/amd64/server/libjvm.so /bin/cp /usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/server/libjvm.so /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/amd64/server/libjvm.so rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/amd64/server/Xusage.txt /bin/cp /usr/ports/java/jdk15/work/control/build/bsd-amd64/hotspot-amd64/server/Xusage.txt /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/amd64/server/Xusage.txt rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/jce.jar /bin/cp ../../tools/crypto/jce/jce.jar /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/jce.jar echo -e /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/jce.jar >> /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp/java/.installed.files rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/ext/sunjce_provider.jar /bin/cp ../../tools/crypto/jce/sunjce_provider.jar /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/ext/sunjce_provider.jar echo -e /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/ext/sunjce_provider.jar >> /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp/java/.installed.files rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/security/US_export_policy.jar /bin/cp ../../tools/crypto/jce/US_export_policy.jar /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/security/US_export_policy.jar echo -e /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/security/US_export_policy.jar >> /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp/java/.installed.files rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/security/local_policy.jar /bin/cp ../../tools/crypto/jce/local_policy.jar /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/security/local_policy.jar echo -e /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/security/local_policy.jar >> /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp/java/.installed.files rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/jsse.jar /bin/cp ../../tools/crypto/jsse/jsse.jar /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/jsse.jar echo -e /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/jsse.jar >> /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp/java/.installed.files rm -f -r /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes/sun/security/jgss/spi /bin/cp ../../tools/crypto/jgss/jgss_kerberos.jar /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes cd /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes; /usr/local/linux-sun-jdk1.5.0/bin/jar xf jgss_kerberos.jar sun/security/jgss/spi cd /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes; rm -f jgss_kerberos.jar /usr/local/linux-sun-jdk1.5.0/bin/jar tf ../../tools/crypto/jgss/jgss_kerberos.jar sun/security/jgss/spi \ >> /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp/java/.installed.files rm -f -r /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes/sun/security/krb5 /bin/cp ../../tools/crypto/jgss/jgss_kerberos.jar /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes cd /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes; /usr/local/linux-sun-jdk1.5.0/bin/jar xf jgss_kerberos.jar sun/security/krb5 cd /usr/ports/java/jdk15/work/control/build/bsd-amd64/classes; rm -f jgss_kerberos.jar /usr/local/linux-sun-jdk1.5.0/bin/jar tf ../../tools/crypto/jgss/jgss_kerberos.jar sun/security/krb5 \ >> /usr/ports/java/jdk15/work/control/build/bsd-amd64/tmp/java/.installed.files rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/classlist /usr/local/linux-sun-jdk1.5.0/bin/javac -d /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib ../../tools/sharing/AddJsum.java # # An unexpected error has been detected by HotSpot Virtual Machine: # # Internal Error (53484152454432554E54494D450E43505001AD), pid=29651, tid=16384 # # Java VM: Java HotSpot(TM) Server VM (1.5.0_11-b03 mixed mode) # An error report file with more information is saved as hs_err_pid29651.log # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # gmake[4]: *** [/usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/classlist] Abort trap: 6 (core dumped) gmake[4]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/redist' gmake[3]: *** [optimized] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/redist' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk15. *** Error code 1 Stop in /usr/ports/java/jdk15. cadillac# pkg_info | grep jd linux-sun-jdk-1.5.0.11,2 Sun Java Development Kit 1.5 for Linux cadillac# /usr/local/linux-sun-jdk1.5.0/bin/java -version java version "1.5.0_11" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_11-b03) Java HotSpot(TM) Server VM (build 1.5.0_11-b03, mixed mode) cadillac# find . -print | grep 1.log ./work/j2se/make/java/redist/hs_err_pid29651.log cadillac# more ./work/j2se/make/java/redist/hs_err_pid29651.log # # An unexpected error has been detected by HotSpot Virtual Machine: # # Internal Error (53484152454432554E54494D450E43505001AD), pid=29651, tid=16384 # # Java VM: Java HotSpot(TM) Server VM (1.5.0_11-b03 mixed mode) --------------- T H R E A D --------------- Current thread (0x0805bd90): JavaThread "main" [_thread_in_Java, id=29651] Stack: [0xffe00000,0xfffff000), sp=0xffffa53c, free space=2025k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) V [libjvm.so+0x510343] V [libjvm.so+0x1c81ef] V [libjvm.so+0x49de64] V [libjvm.so+0x437996] V [libjvm.so+0x434ba4] C [libpthread.so.0+0xc5f8] --------------- P R O C E S S --------------- Java Threads: ( => current thread ) 0x73100720 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=29668] 0x08145778 JavaThread "CompilerThread1" daemon [_thread_blocked, id=29667] 0x08144740 JavaThread "CompilerThread0" daemon [_thread_blocked, id=29666] 0x081436d8 JavaThread "AdapterThread" daemon [_thread_blocked, id=29665] 0x08142868 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=29664] 0x08139710 JavaThread "Finalizer" daemon [_thread_blocked, id=29663] 0x081380b0 JavaThread "Reference Handler" daemon [_thread_blocked, id=29662] =>0x0805bd90 JavaThread "main" [_thread_in_Java, id=29651] Other Threads: 0x08135c18 VMThread [id=29661] 0x73101c10 WatcherThread [id=29669] VM state:not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap PSYoungGen total 3584K, used 3128K [0x6bae0000, 0x6c1e0000, 0x72ca0000) eden space 3072K, 85% used [0x6bae0000,0x6bd721c0,0x6bde0000) from space 512K, 96% used [0x6bde0000,0x6be5c168,0x6be60000) to space 512K, 0% used [0x6c160000,0x6c160000,0x6c1e0000) PSOldGen total 7296K, used 908K [0x32ca0000, 0x333c0000, 0x6bae0000) object space 7296K, 12% used [0x32ca0000,0x32d83080,0x333c0000) PSPermGen total 16384K, used 3207K [0x2eca0000, 0x2fca0000, 0x32ca0000) object space 16384K, 19% used [0x2eca0000,0x2efc1cb0,0x2fca0000) Dynamic libraries: 08048000-08056000 r-xp 00010000 VM Arguments: jvm_args: -Denv.class.path= -Dapplication.home=/usr/local/linux-sun-jdk1.5.0 -Xms8m -Xss4m -ea:com.sun.tools... java_command: com.sun.tools.javac.Main -d /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib ../../tools/sharing/AddJsum.java Launcher Type: SUN_STANDARD Environment Variables: JAVA_HOME= CLASSPATH= PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin LD_LIBRARY_PATH=/usr/local/linux-sun-jdk1.5.0/jre/lib/i386/server:/usr/local/linux-sun-jdk1.5.0/jre/lib/i386:/usr/local/linux-sun-jdk1.5.0/jre/../lib/i386: SHELL=/bin/sh HOSTTYPE=FreeBSD OSTYPE=FreeBSD ARCH=amd64 MACHTYPE=unknown Signal Handlers: SIGSEGV: [libjvm.so+0x510d50], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGBUS: [libjvm.so+0x510d50], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGFPE: [libjvm.so+0x434b80], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGPIPE: [libjvm.so+0x434b80], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGILL: [libjvm.so+0x434b80], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGUSR1: SIG_DFL, sa_mask[0]=0x00000200, sa_flags=0x10000000 SIGUSR2: [libjvm.so+0x436fd0], sa_mask[0]=0x80000000, sa_flags=0x10000004 SIGHUP: [libjvm.so+0x436a00], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGINT: [libjvm.so+0x436a00], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGQUIT: [libjvm.so+0x436a00], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 SIGTERM: [libjvm.so+0x436a00], sa_mask[0]=0xdffb7eff, sa_flags=0x10000004 --------------- S Y S T E M --------------- OS:Fedora Core release 4 (Stentz) uname:Linux 2.4.2 FreeBSD 7.0-CURRENT-200706 #0: Thu Jun 7 21:38:42 UTC 2007 i686 libc:glibc 2.3.6 linuxthreads-0.10 (floating stack) rlimit: STACK 2044k, CORE infinity, NPROC 5547, NOFILE 11095, AS infinity load average:0.15 0.21 0.53 CPU:total 8 (cores per cpu 4, threads per core 1) family 6 model 15 stepping 7, cmov, cx8, fxsr, mmx, sse, sse2 Memory: 4k page, physical 8370580k(3929484k free), swap 0k(0k free) vm_info: Java HotSpot(TM) Server VM (1.5.0_11-b03) for linux-x86, built on Dec 15 2006 01:12:32 by java_re with gcc 3.2.1-7a (J2SE release) cadillac# == Walter From owner-freebsd-java@FreeBSD.ORG Fri Jun 15 22:23:59 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE10A16A41F for ; Fri, 15 Jun 2007 22:23:59 +0000 (UTC) (envelope-from freebsd@spatula.net) Received: from turing.morons.org (turing.morons.org [208.96.51.42]) by mx1.freebsd.org (Postfix) with ESMTP id CE0EA13C45E for ; Fri, 15 Jun 2007 22:23:59 +0000 (UTC) (envelope-from freebsd@spatula.net) Received: by turing.morons.org (Postfix, from userid 1001) id 4AC3A17030; Fri, 15 Jun 2007 14:58:00 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by turing.morons.org (Postfix) with ESMTP id 47A151702C; Fri, 15 Jun 2007 14:58:00 -0700 (PDT) Date: Fri, 15 Jun 2007 14:58:00 -0700 (PDT) From: Nick Johnson X-X-Sender: spatula@turing To: Walter Vaughan In-Reply-To: <4673040A.4040708@steelerubber.com> Message-ID: <20070615145702.O60945@turing> References: <4673040A.4040708@steelerubber.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-java@freebsd.org Subject: Re: JDK15 & Current build failure X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jun 2007 22:23:59 -0000 Do you have procfs installed and active? Google for " Can't detect initial thread stack location find_vma failed" and you'll find lots of interesting bits. Nick On Fri, 15 Jun 2007, Walter Vaughan wrote: > Man, I thought everything was working so good until this happened > OS: FreeBSD Current (June) snapshot AMD64 w/no modifications > HW: Intel motherboard with dual quad cores, 8 gig of memory > Compat6x installed before starting. > > Running make install clean inside of /usr/ports/java/jdk15... > ran fine for long time then this happend. I followed the suggestion and tried > to restart it. Any ideas? > > Java HotSpot(TM) Client VM warning: Can't detect initial thread stack location > - find_vma failed -- "Courage isn't just a matter of not being frightened, you know. It's being afraid and doing what you have to do anyway." Doctor Who - Planet of the Daleks This message has been brought to you by Nick Johnson 2.3b1 and the number 6. http://healerNick.com/ http://morons.org/ http://spatula.net/ From owner-freebsd-java@FreeBSD.ORG Sat Jun 16 14:55:09 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B48EF16A41F for ; Sat, 16 Jun 2007 14:55:09 +0000 (UTC) (envelope-from wvaughan@steelerubber.com) Received: from toaster.steelerubber.com (toaster.steelerubber.com [166.82.96.8]) by mx1.freebsd.org (Postfix) with ESMTP id 5EE7A13C4B9 for ; Sat, 16 Jun 2007 14:55:09 +0000 (UTC) (envelope-from wvaughan@steelerubber.com) Received: (qmail 95319 invoked by uid 89); 16 Jun 2007 14:55:08 -0000 Received: from unknown (HELO ?166.82.96.28?) (166.82.96.28) by toaster.steelerubber.com with SMTP; 16 Jun 2007 14:55:08 -0000 Message-ID: <4673F9C8.9090506@steelerubber.com> Date: Sat, 16 Jun 2007 10:55:04 -0400 From: Walter Vaughan User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-java@freebsd.org References: <4673040A.4040708@steelerubber.com> <20070615145702.O60945@turing> In-Reply-To: <20070615145702.O60945@turing> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: JDK15 & Current build failure X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2007 14:55:09 -0000 Nick Johnson wrote: > Do you have procfs installed and active? Yes I solved that in the log I posted >>Man, I thought everything was working so good until this happened >>OS: FreeBSD Current (June) snapshot AMD64 w/no modifications >>HW: Intel motherboard with dual quad cores, 8 gig of memory >>Compat6x installed before starting. >> >>Running make install clean inside of /usr/ports/java/jdk15... >>ran fine for long time then this happend. I followed the suggestion and tried >>to restart it. Any ideas? The interesting error was the second one in that log which repeats rm -f /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/classlist /usr/local/linux-sun-jdk1.5.0/bin/javac -d /usr/ports/java/jdk15/work/control/build/bsd-amd64/lib ../../tools/sharing/AddJsum.java # # An unexpected error has been detected by HotSpot Virtual Machine: # # Internal Error (53484152454432554E54494D450E43505001AD), pid=3050, tid=16384 # # Java VM: Java HotSpot(TM) Server VM (1.5.0_11-b03 mixed mode) # An error report file with more information is saved as hs_err_pid3050.log # # If you would like to submit a bug report, please visit: # http://java.sun.com/webapps/bugreport/crash.jsp # gmake[4]: *** [/usr/ports/java/jdk15/work/control/build/bsd-amd64/lib/classlist] Abort trap: 6 (core dumped) gmake[4]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/redist' gmake[3]: *** [optimized] Error 2 gmake[3]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java/redist' gmake[2]: *** [all] Error 1 gmake[2]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make/java' gmake[1]: *** [all] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk15/work/j2se/make' gmake: *** [j2se-build] Error 2 *** Error code 2 Stop in /usr/ports/java/jdk15. *** Error code 1 Stop in /usr/ports/java/jdk15. == Walter From owner-freebsd-java@FreeBSD.ORG Sat Jun 16 18:41:35 2007 Return-Path: X-Original-To: freebsd-java@freebsd.org Delivered-To: freebsd-java@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E61916A46B for ; Sat, 16 Jun 2007 18:41:35 +0000 (UTC) (envelope-from clcchu@hotmail.com) Received: from bay0-omc2-s3.bay0.hotmail.com (bay0-omc2-s3.bay0.hotmail.com [65.54.246.139]) by mx1.freebsd.org (Postfix) with ESMTP id 7BFC613C46E for ; Sat, 16 Jun 2007 18:41:35 +0000 (UTC) (envelope-from clcchu@hotmail.com) Received: from hotmail.com ([65.55.139.115]) by bay0-omc2-s3.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.2668); Sat, 16 Jun 2007 11:29:36 -0700 Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Sat, 16 Jun 2007 11:29:36 -0700 Message-ID: Received: from 65.55.139.123 by by134fd.bay134.hotmail.msn.com with HTTP; Sat, 16 Jun 2007 18:29:35 GMT X-Originating-IP: [61.93.45.16] X-Originating-Email: [clcchu@hotmail.com] X-Sender: clcchu@hotmail.com From: "Clarence Chu" To: freebsd-java@freebsd.org Date: Sun, 17 Jun 2007 02:29:35 +0800 Mime-Version: 1.0 Content-Type: text/plain; format=flowed X-OriginalArrivalTime: 16 Jun 2007 18:29:36.0011 (UTC) FILETIME=[4AA795B0:01C7B044] Subject: about building jdk-1.[45] on -current X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2007 18:41:35 -0000 hi there, there seems no problems at all on building jdk-1.[45] on -current: 1) get a jdk-1.[45] tbz on 6.* and pkg_add it 2) try running "java -version" on -current and watch for libs missing. 3) use /etc/libmap.conf to remap the missing libs to the ones on -current 4) for jdk-1.4.2, use symlinks to point gcc-4.2 binaries to gcc-3.4.6 ones why there are so much noises on building jdks on -current, that's all i'd done three weeks ago to make everything work. even eclipse-3.2.2 had been built using source=1.4 and target=1.4. and OOo-2.2.0 had been built too so as azureus-3, etc. it would be a nice to have ppc/sparc64 ports soon, don't you think so? Best wishes Clarence CHU _________________________________________________________________ Learn English via Shopping Game, FREE! http://www.linguaphonenet.com/BannerTrack.asp?EMSCode=MSN06-03ETFJ-0211E From owner-freebsd-java@FreeBSD.ORG Sat Jun 16 19:18:47 2007 Return-Path: X-Original-To: freebsd-java@hub.freebsd.org Delivered-To: freebsd-java@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0FCE16A41F; Sat, 16 Jun 2007 19:18:47 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.freebsd.org (Postfix) with ESMTP id 7670E13C457; Sat, 16 Jun 2007 19:18:47 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from freefall.freebsd.org (itetcu@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id l5GJIlUT003866; Sat, 16 Jun 2007 19:18:47 GMT (envelope-from itetcu@freefall.freebsd.org) Received: (from itetcu@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id l5GJIlvC003862; Sat, 16 Jun 2007 19:18:47 GMT (envelope-from itetcu) Date: Sat, 16 Jun 2007 19:18:47 GMT From: Ion-Mihai Tetcu Message-Id: <200706161918.l5GJIlvC003862@freefall.freebsd.org> To: itetcu@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-java@FreeBSD.org Cc: Subject: Re: ports/113751: java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12, 2 - java SIGSEGV and then wait forever X-BeenThere: freebsd-java@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting Java to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2007 19:18:47 -0000 Old Synopsis: linux-sun-jdk-1.5.0.12,2 - java SIGSEGV and then wait forever New Synopsis: java/linux-sun-jdk15: linux-sun-jdk-1.5.0.12,2 - java SIGSEGV and then wait forever Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-java Responsible-Changed-By: itetcu Responsible-Changed-When: Sat Jun 16 19:17:53 UTC 2007 Responsible-Changed-Why: Add CATEGORY/PORTNAME to Synonsis and assign to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=113751