Displaying 2 results from an estimated 2 matches for "libgcj8".
Did you mean:
libgcj
2008 Mar 26
0
[LLVMdev] Say hi to VMKit: JVM/LLVM, CLI/LLVM
...ote:
> Very nice Torok! I applied most of the patch. A few comments:
>
Thanks!
> 1) What is your jni.h file? I can't compile the Jni.cpp file with your
> changes.
>
Ouch, did they change 'const'-ness between gcj versions?
I was using gcj-4.2.3, and jni.h is from libgcj8-dev.
> 2) ISO C++ does not support %jd. x86_64 does not know about %lld?
>
It does, but gcc gives a warning, if I use %lld I get a warning on
x86_64, if I %ld I get a warning on x86-32.
int64_t is long int on x86-64. However sizeof(long int) == sizeof(long
long int), so I don't know...
2008 Mar 26
3
[LLVMdev] Say hi to VMKit: JVM/LLVM, CLI/LLVM
Very nice Torok! I applied most of the patch. A few comments:
1) What is your jni.h file? I can't compile the Jni.cpp file with your
changes.
2) ISO C++ does not support %jd. x86_64 does not know about %lld?
Thanks!
Nicolas
Török Edwin wrote:
> Nicolas Geoffray wrote:
>
>> Hi everyone,
>>
>> I've just checked in a JVM and a CLI for LLVM (called JnJVM and N3).