[kaffe] [HELP] no return from pthread_cond_init()

2008-12-07 Thread Donald Gim
Hello, I'm trying to port Kaffe on a MIPS SoC. I'm using these libs with kaffe-1.1.9. - libtool-1.5.26 - zziplib-0.13.49 - classpath-0.97.2 - glib-2.15.4 After managing to build, I got this message. Can't modify /opt/local/jre/lib/mips/libkaffe-1.1.9.so's text section. Use GCC option

Re: [kaffe] help including correct sigcontext for arm port

2007-09-17 Thread Dalibor Topic
Dario Laverde wrote: hi all, I'm having trouble including the right sigcontext for my config/arm/darwin port (I used config/i386/darwin as my template). I've made the required change to access the correct stack pointer in: from #define STACK_POINTER(scp) ((scp)-esp) to #define

Re: [kaffe] help including correct sigcontext for arm port

2007-09-17 Thread Dario Laverde
I'm getting: signal.c:77: error: 'struct sigcontext' has no member named 'r14' I don't know which signal.h it's using (apparently not i386 or arm or ppc for that matter). thanks, Dario Dario Laverde wrote: hi all, I'm having trouble including the right sigcontext for my config/arm/darwin

Re: [kaffe] help including correct sigcontext for arm port

2007-09-17 Thread Dalibor Topic
Dario Laverde wrote: I'm getting: signal.c:77: error: 'struct sigcontext' has no member named 'r14' I don't know which signal.h it's using (apparently not i386 or arm or ppc for that matter). Try (scp)-sc_r14 instead. Looking at

[kaffe] help including correct sigcontext for arm port

2007-09-16 Thread Dario Laverde
hi all, I'm having trouble including the right sigcontext for my config/arm/darwin port (I used config/i386/darwin as my template). I've made the required change to access the correct stack pointer in: from #define STACK_POINTER(scp) ((scp)-esp) to #define STACK_POINTER(scp) ((scp)-r14) but I

[kaffe] help needed porting kaffe 1.1.7 to iPhone

2007-07-30 Thread Dario Laverde
I've got the toolchain working on my PPC OS X 10.4.10 and used the following to try to build kaffe: export PATH=/Developer/SDKs/iPhone/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin export KAFFEH=/usr/local/kaffebkp/bin/kaffeh export CC=arm-apple-darwin-cc export

Re: [kaffe] help needed porting kaffe 1.1.7 to iPhone

2007-07-30 Thread Dalibor Topic
Dario Laverde wrote: I've attached config.log and .arm-cc-specs (which is what arm-apple-darwin-cc uses for its flags). thanks for any pointers, Dario Hi Dario, looking at config.log, the issue seems to be: configure:2649: checking for C compiler default output file name configure:2652:

[kaffe] Help building Kaffe VM

2007-03-07 Thread Vela Spasova
Hi everybody, I am trying to run an application on Linux Kernel 2.6.19, gcc version 3.4.6 and glibc 2.3.6 with Kaffe 1.1.7. I am building the kaffe with following parameters: CURDIR=/home/spasova/project/java-vm/kaffe-1.1.7/bin export PKG_CONFIG_PATH=/opt/gnome/lib/pkgconfig/ mkdir -p

[kaffe] Help on Kaffe Garbage Collector

2007-02-19 Thread s1025121
Hello, we are two Italian student at Catania University. We are working on Kaffe Garbage Collector for a university work. We have to modify the garbage collector to make it be a copying collector. We know that we can't do a totally accurate garbage collector and that we can't move JVM internal

[kaffe] Help: Why I can't install kaffe on an embeded system with pxa270?

2006-05-09 Thread Jupiter
Hi, I can successfully configure and compile Kaffe 1.1.7, but it cant run HelloWorld. It complains Internal error: caught an unexpected exception, just like many people discussed in the mailing list. But i cant find the solution. Could anybody here tell me how to solve this problem? Im

[kaffe] help required

2005-05-09 Thread SIT_JVM
hi we are doing the project porting of kaffe on to embedded processor. for that we have to know which is the main code in the source.version of kaffe used is kaffe-1.1.4 . problems faced when tried to execute on the simulator. 1)In the simulator same named files in different folder are

[kaffe] help: run kaffe in mips-linux

2005-04-14 Thread Xiao Xiankuan
Hi, I just download kaffe 1.1.5. My linux kernel is 2.4.17. configure and make are all ok. but when i download the the files to the board and run: java HelloWorldApp the following error happened: Internal error: caught an unexpected exception. Please check your CLASSPATH and your installation.

[kaffe] help: run kaffe in mips-linux

2005-04-12 Thread Xiao Xiankuan
Hi, I just download kaffe 1.1.5. My linux kernel is 2.4.17. configure and make are all ok. but when i download the the files to the board and run: java HelloWorldApp the following error happened: Internal error: caught an unexpected exception. Please check your CLASSPATH and your installation.

[kaffe] help me in porting to arm

2004-10-01 Thread Kirankumar T
hi as part of a research work we are trying to port kaffe on ARM926EJ-s board so for this i have crossed compiled kaffe vmby gining the following options [EMAIL PROTECTED] kaffe-1.1.4]#./configure --host=arm-linux --with-jikes=yes --with-tools=arm-linux --enable-pure-java-math --with-awt=no

[kaffe] help needed for java exception encountered

2004-09-06 Thread Sze Huat
Hi there, i was running a jar file using kaffe (1.1.3-1) on an IPAQ with GPE (X-based) installed. but i hit an error. can any of the gurus here make out what the error means? the same command runs the jar file smoothly on a windows desktop. full java exception: $ java -cp wajei.jar WaJEi 240

[kaffe] help, can't find kaffeh file

2004-08-17 Thread
I'm installing kaffe into my embedded linux on an XScale board. First, I set the environment variables: export CC=arm-linux-gccexport AS=arm-linux-asexport LD=arm-linux-ldexport CPP='arm-linux-gcc -E'export AR=arm-linux-arexport NM=arm-linux-nmexport

[kaffe] help, a problem about kaffeh

2004-08-16 Thread
I'm installing kaffe into my embedded linux on an XScale board. first, I set the environment variables: export CC=arm-linux-gccexport AS=arm-linux-asexport LD=arm-linux-ldexport CPP='arm-linux-gcc -E'export AR=arm-linux-arexport NM=arm-linux-nmexport STRIP=arm-linux-stripexport

Re: [kaffe] help, can't find kaffeh file

2004-08-16 Thread Dalibor Topic
wrote: I'm installing kaffe into my embedded linux on an XScale board. First, I set the environment variables: export CC=arm-linux-gcc export AS=arm-linux-as export LD=arm-linux-ld export CPP='arm-linux-gcc -E' export AR=arm-linux-ar export NM=arm-linux-nm export STRIP=arm-linux-strip

[kaffe] Help: libkaffevm.so: undefined reference to `isinf', 'isnan'

2004-08-10 Thread D greene
libkaffevm.so: undefined reference to `isinf', 'isnan' with Kaffe 1.1.4 cross compiling to mips on a RH 8 system. thanks for any hints dgreene _ Is your PC infected? Get a FREE online computer virus scan from McAfee® Security.

[kaffe] Help. Need the output of kaffe -vmdebug JIT HelloWorld on ARM

2004-07-05 Thread Paul
Hello everyone, I'm porting Kaffe to a new architecture. An error occured when Kaffe processs class java/lang/String 8-13. I think the error is due to a wrong icode generated by translate() function. The first JITed function in kaffe is java/lang/String.clinit(()V). I need the

[kaffe] Help needed in buliding kaffe-1.1.4 for Xscale PXA with awt-x

2004-06-22 Thread asutosh gopinath
Hi Kero and members, I could not fine header on my ARM board. Could you please help me in building X11 for Xscale or from which site to download the necessary headers for ARM? Thanks regards Asutosh Find what you are looking for

Re: [kaffe] Help needed in buliding kaffe-1.1.4 for Xscale PXA with awt-x

2004-06-21 Thread Kero van Gelder
I think my ARM board has X because i can start it using startx and also run xterm. good! On by build I have arm toolchains. very good! Do i need to have X11 for arm on my build pc as well? If yes, then from where can i obtain it? I copied the header files from a skiff, I think. Though I

[kaffe] Help needed in buliding kaffe-1.1.4 for Xscale PXA with awt-x

2004-06-18 Thread asutosh gopinath
Hi, I want to build kaffe for my ARM PXA255 Xscale with awt-X. I think my ARM board has X because i can start it using startx and also run xterm. On by build I have arm toolchains. Do i need to have X11 for arm on my build pc as well? If yes, then from where can i obtain it? Can i use the X11

Re: [kaffe] Help Please

2004-01-02 Thread Dalibor Topic
Hi Raja, raja n wrote: Hai, I am getting following error while running my application on yopy.Application have written in Java.While touching the screen i am getting the following error.I am using ResourceBundle,awt,exec function.Error can reproducable.This is very important for me .Please

[kaffe] Help Please

2003-12-26 Thread raja n
Hai, Company name : Enventure tech(www.enventuretechnology.com) Mail Id : [EMAIL PROTECTED] I am getting following error while running my application on yopy.Application have written in Java.While touching the screen i am getting the following error.I am using ResourceBundle,awt,exec

Re: [kaffe] Help me !!! I porting the kaffe on mpis cpu, but I had error of execution

2003-12-12 Thread Dalibor Topic
Hi Atsushi, your patch looks good to me, so I'd like to check it in. But ... I don't know if Ito asked you about your clean-room status, so (since you've been actively developping patches for kaffe in the last few days), I'd like to know what your cleanroom status is before I apply further

Re: [kaffe] Help me !!! I porting the kaffe on mpis cpu, but I had error of execution

2003-12-12 Thread Ito Kazumitsu
Hi, Dalibor and Atsushi, : == Dalibor Topic [EMAIL PROTECTED] writes: : I don't know if Ito asked you about your clean-room status, so (since : you've been actively developping patches for kaffe in the last few : days), I'd like to know what your cleanroom status is before I apply : further

Re: [kaffe] help with make install

2003-12-10 Thread Dalibor Topic
Hi Ram, kalyan ram wrote: Hai When I change anything in kaffe.def file,I generally go to intrp directory and open the machine.c file and press a space and then at the top directory do the make install for recompiling the kaffe.When I just modify the kaffe.def file,there is no change. The

Re: [kaffe] help with make install

2003-12-10 Thread Dalibor Topic
Dalibor Topic wrote: Hi Ram, kalyan ram wrote: Hai When I change anything in kaffe.def file,I generally go to intrp directory and open the machine.c file and press a space and then at the top directory do the make install for recompiling the kaffe.When I just modify the kaffe.def file,there

[kaffe] help with make install

2003-12-09 Thread kalyan ram
Hai When I change anything in kaffe.def file,I generally go to intrp directory and open the machine.c file and press a space and then at the top directory do the make install for recompiling the kaffe.When I just modify the kaffe.def file,there is no change. Is there a better way to recompile

Re: [kaffe] help with running tomcat on kaffe

2003-12-04 Thread Dalibor Topic
Hi Ram, kalyan ram wrote: Hai I want to run tomcat on kaffe.In the previous mail,i got a fix for that but it is not working for me.i am working on the version of tomcat-4.1.29. I implemented the fix by adding the following code in conf/web.xml: init-param

[kaffe] help with running tomcat on kaffe

2003-12-02 Thread kalyan ram
Hai I want to run tomcat on kaffe.In the previous mail,i got a fix for that but it is not working for me.i am working on the version of tomcat-4.1.29. I implemented the fix by adding the following code in conf/web.xml: init-param param-namecompiler/param-name

[kaffe] Help required!!!!!!!!!!!!!!!!!!

2003-11-12 Thread Saifuddin Rangwala
Hello, I am trying to port kaffe-1.0.7 to linux-2.4.6 the architecture being arm-cs89712. I am using gcc-2.95.3 and uclibc-0.9.12 as the cross development tools. I have successfully compiled and installed kaffe as dynamically linked vm. But I think I need static vm,bin and lib on cs89712 When I

Re: [kaffe] Help me !!! I porting the kaffe on mpis cpu, but I had error of execution

2003-11-12 Thread Atsushi Nemoto
On Tue, 11 Nov 2003 10:18:01 +0100, Kevin D. Kissell [EMAIL PROTECTED] said: kevink Kaffe 1.1.0 will build as distributed but you must not build kevink it with the JIT, which was unfortunately still the default kevink MIPS build as of 1.1.0. When you configure, you need to kevink specify

Re: [kaffe] Help me !!! I porting the kaffe on mpis cpu, but I had error of execution

2003-11-11 Thread Kevin D. Kissell
--with-engine=intrp". Regards, Kevin K. - Original Message - From: To: [EMAIL PROTECTED] ; [EMAIL PROTECTED] ; Kaffe Mailing List Sent: Tuesday, October 07, 2003 4:21 AM Subject: [kaffe] Help me !!! I porting the kaffe on mpis cpu, but I ha

[kaffe] Help: jthread error

2003-07-04 Thread Tony Marl
Hi, I checked the kaffe around 5/30 and complied it with unix-jthread. But when I used it to run some of my java programs, there was an error: kaffe-bin: jthread.c:1191: jthread_disable_stop: Assertion `currentJThread-stopCounter 0' failed. I found the error came from

Re: [kaffe] Help: jthread error

2003-07-04 Thread Dalibor Topic
--- Tony Marl [EMAIL PROTECTED] wrote: Hi, I checked the kaffe around 5/30 and complied it with unix-jthread. But when I used it to run some of my java programs, there was an error: kaffe-bin: jthread.c:1191: jthread_disable_stop: Assertion `currentJThread-stopCounter 0' failed. before

[kaffe] Help : Connecting Oracle database

2003-06-12 Thread swapnil joshi
Hii, I am trying to connect Oracle 8i database using Kaffe on OpenBSD 3.2 operating system.My Kaffe version is 1.0.6.I am using jdbc thin Driver for database connection (classes111.zip from otn.oracle.com). I am using following code for testing :

[kaffe] Help: Oracle Database Connectivity using Kaffe on OpenBSD 3.2

2003-06-11 Thread swapnil_joshi
Hii, I am trying to connect Oracle 8i database using Kaffe on OpenBSD 3.2 operating system.My Kaffe version is 1.0.6.I am using jdbc thin Driver for database connection (classes111.zip from oracle). I am using following code for testing :

Re: [kaffe] help with -Xxprof

2003-05-31 Thread Timothy Stack
Hai Please give me step by step instruction on how to run the xprof..I am having really tough time configuring with xprof with the FAQ file provided. Get the CVS version, I'm pretty sure it works just fine. I would really appreciate the help... Thanks Ram tim

Re: [kaffe] help

2003-02-21 Thread Aidan Delaney
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey Zhu, Then I assume you should cross compile and move the resulting files to the board. I am assuming that you are new to embedded systems as people who aren't rarely grab rpm's, so a little explaination of what

Re: [kaffe] help

2003-02-21 Thread Dalibor Topic
Hi Aidan, --- Aidan Delaney [EMAIL PROTECTED] wrote: I guess my explanation was a little brief, and I liked your explanation of what cross compiling is. Would you like to write a FAQ.cross-compiling on how to cross compile kaffe for use on a different platform? I'd expect that to

[kaffe] help

2003-02-20 Thread zhu xueyin
dear Sr. i am a student in uni-duisburg. now i am doing my pre-master thesis. i want to install kaffe on our test board(intel XScale microarchitecture with the pxa250 arm-processor). because it has been installed with arm-linux, i extracted the 'kaffe1.0.6-armv41.rpm' on my normal pc(with

Re: [kaffe] help

2003-02-20 Thread Dalibor Topic
Hi Zhu, --- zhu xueyin [EMAIL PROTECTED] wrote: dear Sr. i am a student in uni-duisburg. now i am doing my pre-master thesis. i want to install kaffe on our test board(intel XScale microarchitecture with the pxa250 arm-processor). If you are using kaffe on arm-linux, you can get the

Re: [kaffe] help in tracing the kaffe source code

2003-02-20 Thread Dalibor Topic
Hi Ram, --- Ram [EMAIL PROTECTED] wrote: Hello I am trying to understand how Kaffe JVM source code works.I am visualizing something like:Kaffe is written in c.Once we give this code,the java class files...what happens?How the execution moves from one point to another?There are two

[kaffe] Help with Heap Allocation Functions

2003-02-08 Thread Tony Wyatt
Greetings, fellow kaffe drinkers. I am trying to make kaffe 1.0.7 run on the m68k, under AmigaOS 3.9. It is supposed to run, but doesn't, for a number of reasons. I guess the Amiga configuration has been left untested for some time. I am configuring/compiling/testing it in a Geek Gadgets

Re: [kaffe] Help with Heap Allocation Functions

2003-02-03 Thread Dalibor Topic
Hy Tony, --- Tony Wyatt [EMAIL PROTECTED] wrote: Greetings, fellow kaffe drinkers. G'day to down under from cold Germany. I am trying to make kaffe 1.0.7 run on the m68k, under AmigaOS 3.9. It is supposed to run, but doesn't, for a number of reasons. I guess the Amiga configuration has

[kaffe] Help with Heap Allocation Functions

2003-02-02 Thread Tony Wyatt
Greetings, fellow kaffe drinkers. I am trying to make kaffe 1.0.7 run on the m68k, under AmigaOS 3.9. It is supposed to run, but doesn't, for a number of reasons. I guess the Amiga configuration has been left untested for some time. I am configuring/compiling/testing it in a Geek Gadgets

RE: [kaffe] Help regarding kaffe-mozilla-oji plugin

2002-05-29 Thread Dalibor Topic
Hi Eugene, --- Byrne, Eugene [EMAIL PROTECTED] wrote: How do I unsubscribe? Try the mailman web interface at: http://www.kaffe.org/cgi-bin/mailman/listinfo/kaffe cheers, dalibor topic __ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA

RE: [kaffe] Help regarding kaffe-mozilla-oji plugin

2002-05-28 Thread Byrne, Eugene
How do I unsubscribe? -Original Message- From: Jim Pick [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 28, 2002 10:25 AM To: Prakash Betageri Cc: [EMAIL PROTECTED] Subject: Re: [kaffe] Help regarding kaffe-mozilla-oji plugin Sorry about that, I needed to chmod +r the files (I guess