Re: [kaffe] precompiling Klasses.jar

2002-06-05 Thread Dalibor Topic

Hi alexander,

--- Alexander Popov [EMAIL PROTECTED] wrote:
 Hi
 
 When I try to recompile the java sources I get the
 following error:
 
 [/software/jdk/KAFFE/CVS-current/libraries/javalib]#
 make Klasses
 /bin/sh ./rebuildLib
 Compiling classes ...
 Classpath: -classpath 

/software/jdk/KAFFE/CVS-current/libraries/javalib/lib:/darcy/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar
 javac:

/software/jdk/KAFFE/CVS-current/kaffe/kaffe/kaffe-bin
 -ms32M 
 -mx1024M at.dms.kjc.Main
 
 Could not initialize Kaffe.
 Your rt.jar version is 101.00, but this VM was
 compiled with version 1.06
 
 The current effective classpath is 

`.:/software/jdk/KAFFE/CVS-current/libraries/javalib/Klasses.jar:/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar'
 
 make: *** [lib/stamp] Error 255
 
 This is the CVS from 05.06.2002 (today)...
 Am I doing something wrong...

Could you check if my fix from
http://www.kaffe.org/pipermail/kaffe/2000-August/006784.html
applies ?

dalibor topic


__
Do You Yahoo!?
Yahoo! - Official partner of 2002 FIFA World Cup
http://fifaworldcup.yahoo.com

___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe



Re: [kaffe] precompiling Klasses.jar

2002-06-05 Thread Alexander Popov

I'll put some dumps in kaffe/kaffevm/baseClasses.c and I'll tell you 
what exactly happens later today...

Dalibor Topic wrote:
 Hi alexander,
 
 --- Alexander Popov [EMAIL PROTECTED] wrote:
 
Hi

When I try to recompile the java sources I get the
following error:

[/software/jdk/KAFFE/CVS-current/libraries/javalib]#
make Klasses
/bin/sh ./rebuildLib
Compiling classes ...
Classpath: -classpath 

 
 
/software/jdk/KAFFE/CVS-current/libraries/javalib/lib:/darcy/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar
 
javac:

 
 /software/jdk/KAFFE/CVS-current/kaffe/kaffe/kaffe-bin
 
-ms32M 
-mx1024M at.dms.kjc.Main

Could not initialize Kaffe.
Your rt.jar version is 101.00, but this VM was
compiled with version 1.06

The current effective classpath is 

 
 
`.:/software/jdk/KAFFE/CVS-current/libraries/javalib/Klasses.jar:/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar'
 
make: *** [lib/stamp] Error 255

This is the CVS from 05.06.2002 (today)...
Am I doing something wrong...
 
 
 Could you check if my fix from
 http://www.kaffe.org/pipermail/kaffe/2000-August/006784.html
 applies ?
 
 dalibor topic
 
 
 __
 Do You Yahoo!?
 Yahoo! - Official partner of 2002 FIFA World Cup
 http://fifaworldcup.yahoo.com
 
 ___
 kaffe mailing list
 [EMAIL PROTECTED]
 http://kaffe.org/cgi-bin/mailman/listinfo/kaffe
 
 


-- 
Alexander Popov
Team Leader RTOSJVM
ProSyst Bulgaria
[EMAIL PROTECTED]
[EMAIL PROTECTED]
mobile: +35987663193
icq: 29207350


___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe



Re: [kaffe] precompiling Klasses.jar

2002-06-05 Thread Alexander Popov

Sorry Dalibor, my mistake...

KAFFE_VERSION in java/lang/Cloneable.java is really the reason and 
should be changed as follows:

int KAFFE_VERSION = 1 * 1 + 1 * 100 + 0;

should be replaced with:

int KAFFE_VERSION = 1 * 100 + 6 * 1 + 0;

I'm attaching a patch for that ( should be applied in 
KAFFE_SRC/libraries/javalib )...

Regards

Dalibor Topic wrote:
 Hi alexander,
 
 --- Alexander Popov [EMAIL PROTECTED] wrote:
 
Hi

When I try to recompile the java sources I get the
following error:

[/software/jdk/KAFFE/CVS-current/libraries/javalib]#
make Klasses
/bin/sh ./rebuildLib
Compiling classes ...
Classpath: -classpath 

 
 
/software/jdk/KAFFE/CVS-current/libraries/javalib/lib:/darcy/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar
 
javac:

 
 /software/jdk/KAFFE/CVS-current/kaffe/kaffe/kaffe-bin
 
-ms32M 
-mx1024M at.dms.kjc.Main

Could not initialize Kaffe.
Your rt.jar version is 101.00, but this VM was
compiled with version 1.06

The current effective classpath is 

 
 
`.:/software/jdk/KAFFE/CVS-current/libraries/javalib/Klasses.jar:/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar'
 
make: *** [lib/stamp] Error 255

This is the CVS from 05.06.2002 (today)...
Am I doing something wrong...
 
 
 Could you check if my fix from
 http://www.kaffe.org/pipermail/kaffe/2000-August/006784.html
 applies ?
 
 dalibor topic
 
 
 __
 Do You Yahoo!?
 Yahoo! - Official partner of 2002 FIFA World Cup
 http://fifaworldcup.yahoo.com
 
 ___
 kaffe mailing list
 [EMAIL PROTECTED]
 http://kaffe.org/cgi-bin/mailman/listinfo/kaffe
 
 


-- 
Alexander Popov
Team Leader RTOSJVM
ProSyst Bulgaria
[EMAIL PROTECTED]
[EMAIL PROTECTED]
mobile: +35987663193
icq: 29207350


--- java/lang/Cloneable.javaWed Jun  5 14:23:49 2002
+++ java/lang/Cloneable.javaWed Jun  5 14:24:01 2002
@@ -20,3 +20,3 @@
 */
-int KAFFE_VERSION = 1 * 1 + 1 * 100 + 0;
+int KAFFE_VERSION = 1 * 100 + 6 * 1 + 0;
 }



Re: [kaffe] precompiling Klasses.jar

2002-06-05 Thread Jim Pick

Oops.  My fault.  I'll look at it once more...

Cheers,

 - Jim

On Wed, 2002-06-05 at 06:37, Alexander Popov wrote:
 Sorry Dalibor, my mistake...
 
 KAFFE_VERSION in java/lang/Cloneable.java is really the reason and 
 should be changed as follows:
 
 int KAFFE_VERSION = 1 * 1 + 1 * 100 + 0;
 
 should be replaced with:
 
 int KAFFE_VERSION = 1 * 100 + 6 * 1 + 0;
 
 I'm attaching a patch for that ( should be applied in 
 KAFFE_SRC/libraries/javalib )...
 
 Regards
 
 Dalibor Topic wrote:
  Hi alexander,
  
  --- Alexander Popov [EMAIL PROTECTED] wrote:
  
 Hi
 
 When I try to recompile the java sources I get the
 following error:
 
 [/software/jdk/KAFFE/CVS-current/libraries/javalib]#
 make Klasses
 /bin/sh ./rebuildLib
 Compiling classes ...
 Classpath: -classpath 
 
  
  
/software/jdk/KAFFE/CVS-current/libraries/javalib/lib:/darcy/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar
  
 javac:
 
  
  /software/jdk/KAFFE/CVS-current/kaffe/kaffe/kaffe-bin
  
 -ms32M 
 -mx1024M at.dms.kjc.Main
 
 Could not initialize Kaffe.
 Your rt.jar version is 101.00, but this VM was
 compiled with version 1.06
 
 The current effective classpath is 
 
  
  
`.:/software/jdk/KAFFE/CVS-current/libraries/javalib/Klasses.jar:/software/jdk/KAFFE/CVS-current/libraries/javalib/kjc.jar'
  
 make: *** [lib/stamp] Error 255
 
 This is the CVS from 05.06.2002 (today)...
 Am I doing something wrong...
  
  
  Could you check if my fix from
  http://www.kaffe.org/pipermail/kaffe/2000-August/006784.html
  applies ?
  
  dalibor topic
  
  
  __
  Do You Yahoo!?
  Yahoo! - Official partner of 2002 FIFA World Cup
  http://fifaworldcup.yahoo.com
  
  ___
  kaffe mailing list
  [EMAIL PROTECTED]
  http://kaffe.org/cgi-bin/mailman/listinfo/kaffe
  
  
 
 
 -- 
 Alexander Popov
 Team Leader RTOSJVM
 ProSyst Bulgaria
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 mobile: +35987663193
 icq: 29207350
 
 

 --- java/lang/Cloneable.java  Wed Jun  5 14:23:49 2002
 +++ java/lang/Cloneable.java  Wed Jun  5 14:24:01 2002
 @@ -20,3 +20,3 @@
*/
 -int KAFFE_VERSION = 1 * 1 + 1 * 100 + 0;
 +int KAFFE_VERSION = 1 * 100 + 6 * 1 + 0;
  }



___
kaffe mailing list
[EMAIL PROTECTED]
http://kaffe.org/cgi-bin/mailman/listinfo/kaffe