search for: jsr166

Displaying 5 results from an estimated 5 matches for "jsr166".

Did you mean: fsr16
2009 Dec 08
2
[LLVMdev] How to run vmjc created .bc files?
...t find -lgc collect2: ld returned 1 exit status If I have class files that depends on other class files, will llcj be able to find those and compile them into the executable as well? Also, I have an addition to the Java standard library backported from Java 7, which is necessary for my project. JSR166: http://gee.cs.oswego.edu/dl/concurrency-interest/ Of course, I'm not sure JnJvm supports multiple cores, but this is more a proof of concept than anything. Should I just insert the necessary classes into glibj.zip and recompile libvmjc.so? Thanks, Michael nicolas geoffray wrote: > Hi...
2009 Dec 09
2
[LLVMdev] How to run vmjc created .bc files?
...ind those and compile them into the executable as well? > > > No, but you can create a big .jar file containing all the class files > you need. > > > Also, I have an addition to the Java standard library backported > from Java 7, which is necessary for my project. JSR166: > http://gee.cs.oswego.edu/dl/concurrency-interest/ > > > Add it to the big .jar file. > > > Of course, I'm not sure JnJvm supports multiple cores, but this is > more a proof of concept than anything. > > > OK, if it has native functions, chances...
2009 Dec 08
0
[LLVMdev] How to run vmjc created .bc files?
..., will llcj be able > to find those and compile them into the executable as well? > > No, but you can create a big .jar file containing all the class files you need. > Also, I have an addition to the Java standard library backported from Java > 7, which is necessary for my project. JSR166: > http://gee.cs.oswego.edu/dl/concurrency-interest/ > > Add it to the big .jar file. > Of course, I'm not sure JnJvm supports multiple cores, but this is more a > proof of concept than anything. > > OK, if it has native functions, chances are jnjvm does not implement the...
2009 Dec 08
0
[LLVMdev] How to run vmjc created .bc files?
Hi Michael, Currently, you can run vmjc created .bc files by statically linking them with all the .o needed files. For that, you can use the llcj tool, which works more or less like GCC's gcj tool. Note that you also need to create the libvmjc.so file, which contains the standard library in native form. Do a make in the tools/vmjc/libvmjc directory. Once this is done, update the
2009 Dec 06
2
[LLVMdev] How to run vmjc created .bc files?
Hi, What do I need to link with vmjc created .bc files to actually run the .bc file? I tried running with lli but only got: LLVM ERROR: Program used external function 'StartJnjvmWithoutJIT' which could not be resolved! Thanks, Michael