-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
This bug is 295014; its info was CC'd to 272295. Thanks for the info! The bug # in the subject line has been corrected.
- -------- Original Message -------- Subject: Bug#295014: gcFree Assertion at gc-incremental.c:1300 - "Attempt to explicitly free nonfixed object" Resent-Date: Sun, 13 Feb 2005 14:18:06 UTC, Sun, 13 Feb 2005 09:26:23 -0500 Resent-From: Wolfgang Baer <[EMAIL PROTECTED]> Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Debian Java Maintainers <[EMAIL PROTECTED]> Date: Sun, 13 Feb 2005 14:58:02 +0100 From: Wolfgang Baer <[EMAIL PROTECTED]> Reply-To: Wolfgang Baer <[EMAIL PROTECTED]>, [EMAIL PROTECTED] To: [EMAIL PROTECTED] References: <[EMAIL PROTECTED]>
Barry Hawkins wrote: | Package: kaffe | Version: 1.1.4.PRECVS7-1 | Severity: normal | | uname -a: | Linux case 2.6.10 #1 Tue Dec 28 10:49:53 EST 2004 ppc GNU/Linux | | A javacc task that ran successfully under kaffe-1.1.4.PRECVS6-1 is now | failing under kaffe-1.1.4.PRECVS7-1. The kaffe install in question uses | the pthreads package, not jthreads. The javacc task is part of the | build for the lucene source package. A trimmed transcript of the build | attempt is attached at the end of the message. |
uname -a: Linux 2.6.10 #1 Mon Jan 24 17:21:44 CET 2005 i686 GNU/Linux
I realized the same error for kaffe-1.1.4.PRECVS7-1 yesterday trying to build rhino with kaffe/jikes. In my case it happenes due to an recursive ant call inside the build.xml - when I removed the ant call by replacing the call with the actuall target xml code it worked.
This is just a workaround but maybe also a hint for finding the error. To make clear what I meant with recusive ant call this is my workaround patch for rhino:
- --- build.xml.orig 2004-03-25 14:54:36.000000000 +0000 +++ build.xml 2005-02-12 14:15:14.000000000 +0000 @@ -47,8 +47,23 @@ ~ </target>
~ <target name="compile" depends="init"> - - <ant dir="src" target="compile"/> - - <ant dir="toolsrc" target="compile"/> + <!-- Workaround for the rekursive <ant> invocations + which fail with kaffe - not yet clear why --> + <!-- build src dir --> + <javac srcdir="src" destdir="${classes}" + includes="org/**/*.java" deprecation="on" debug="${debug}"> + </javac> + <copy todir="${classes}"> + <fileset dir="src" includes="org/**/*.properties" /> + </copy> + <!-- build toolsrc dir --> + <javac srcdir="toolsrc" destdir="${classes}" + includes="org/**/*.java" excludes="**/debugger/*" + deprecation="on" debug="${debug}"> + </javac> + <copy todir="${classes}"> + <fileset dir="toolsrc" includes="org/**/*.properties" /> + </copy> ~ </target>
~ <target name="copy-source" depends="init">
Regards,
Wolfgang
- -- Barry Hawkins All Things Computed site: www.alltc.com weblog: www.yepthatsme.com
Registered Linux User #368650 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCD4Bm7bZ6kUftWZwRAgUuAJwLt1Xw/QuAh++ntBW0+nZA55WXmgCfeuUS +kk+K7H/gx2qONzwr8TEcBM= =5ef1 -----END PGP SIGNATURE-----
-- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]