Displaying 20 results from an estimated 500 matches similar to: "[LLVMdev] [patch] vmkit compiled using gcc"
2009 Apr 18
0
[LLVMdev] [patch] vmkit compiled using gcc
Applied thanks!
http://lists.cs.uiuc.edu/pipermail/vmkit-commits/2009-April/000815.html
Btw, what are the error messages for these?
> - char * res = strstr(haystack, needle);
> + char * res = (char *)strstr(haystack, needle);
> - char* ptr = strrchr(name, '/');
> + char* ptr = (char*)strrchr(name, '/');
Nicolas
Xerxes RĂ„nby wrote:
> I have tested compiling
2011 Aug 23
2
[LLVMdev] VMKit build error
I'm trying to build the SVN version of VMKit and I'm getting this error
while building.
I have llvm and clang built from SVN too.
Any help?
llvm[2]: Building Release+Asserts mmtk-vmkit.jar all
vmjc: JavaClass.cpp:442: j3::JavaObject *j3::Class::doNew(j3::Jnjvm *):
Assertion `this && "No class when allocating."' failed.
0 vmjc 0x0000000000e9c44f
1 vmjc
2011 Aug 23
2
[LLVMdev] VMKit build error
Hmm, disregard my previous comment (while you might still have issues
with 64bit, that's not what's primarily causing your issue)--your
particular error is when you don't point vmkit to the classpath
libraries properly.
Set it with the configure option
--with-gnu-classpath-glibj=/path/to/classpath-0.97.2/lib/glibj.zip
Good luck!
~Will
On Tue, Aug 23, 2011 at 5:49 PM, Will Dietz
2011 Aug 23
0
[LLVMdev] VMKit build error
Are you running on 64bit (your backtrace addresses suggest you are)?
I'm encountering the same error when trying to use VMKit on 64bit,
which I believe is an unsupported target.
~Will
On Tue, Aug 23, 2011 at 5:17 PM, Frederic Perez Ordeig
<fredericp at gmail.com> wrote:
> I'm trying to build the SVN version of VMKit and I'm getting this error
> while building.
> I
2014 Mar 07
2
[LLVMdev] Running VMKit's AOT Java Compiler
Hi,
I'm new to VMKit and I'm trying to use its AOT Java compiler but I'm
immediately getting an error message which I don't understand.
Everything was compiler as suggested in the Getting Started tutorial, using
GNU Classpath. I try to run:
llcj ../../tools/trainer/Release+Asserts/HelloWorld.class
and get the following output:
Can not materiale a function in AOT mode.0
2011 Aug 24
0
[LLVMdev] VMKit build error
Ah yes, thanks, this was one problem, now I hit another:
llvm[2]: Building Release+Asserts mmtk-vmkit.jar all
Thread 0x110000000 received a SIGSEGV: either the VM code or an external
native method is bogus. Aborting...
; 0x5cfeed (0x1100fe410) in _Z14sigsegvHandleriP7siginfoPv
; 0x2b889c232c60 in Unknown method
; 0x561499 (0x1100fe900) in _ZN2j310JavaObject7acquireEPS0_
; 0x55b464 (0x1100fe920)
2010 Jul 20
4
[LLVMdev] Fwd: Building VMKit
Hi Minas,
I tried recompiling Classpath with -fno-omit-frame-pointer, and now, instead
of printing an error message, j3 just segfaults in
"j3::JnjvmClassLoader::loadClassFromAsciiz(char const*, bool, bool) ()"
I ran llcj under strace and found that it is not even opening the input or
output files, but is otherwise running normally.
Updating to the latest SVN version (revision 108831)
2011 Oct 25
2
[LLVMdev] A bunch of errors while installing VMKit and compiling LLVM
Hi, Nicolas
Indeed, I did not have ant installed and installing it allowed me to
overcome the previous error. However the next one appeared. I have ran make
with ENABLE_OPTIMIZED=1 VERBOSE=1 and here is the output (the last part of
it)
make[2]: Entering directory `/home/svozniuk/llvm/vmkit/mmtk/java'
/usr/bin/ant -buildfile /home/svozniuk/llvm/vmkit/mmtk/java/build.xml
Buildfile:
2011 Oct 25
0
[LLVMdev] A bunch of errors while installing VMKit and compiling LLVM
Hi Sergii,
I think there is a problem in your configure command for VMKit. If you look
at what you provide for glibj:
--with-gnu-classpath-glibj="/home/svozniuk/llvm/classpath-0.97.2
I don't think it's right. You should change it to:
--with-gnu-classpath-glibj="/home/svozniuk/llvm/classpath-0.97.2/lib/glibj.zip
Also please make sure that you have created the links for the
2011 Oct 25
0
[LLVMdev] A bunch of errors while installing VMKit and compiling LLVM
Hi Sergii,
On Tue, Oct 25, 2011 at 1:15 PM, Vozniuk, Sergii <sergii.vozniuk at epfl.ch>wrote:
> Hi everyone
>
> I wasn't successful in running VMKit on my machine and I'm still struggling
> with doing it.
> Maybe someone had at least one of my problems and knows how to solve it
> (because it seems to me that I ran into every problem that could occur :) ).
>
2010 Jul 20
2
[LLVMdev] Fwd: Building VMKit
Hi Nicolas,
Thanks for all your help, but if 64-bit systems are still a big problem,
perhaps the VMKit AOT compiler is not the best solution to my problem. I'd
like to be able to support the major (if not all all) platforms that the
Avian JVM supports - x86 & x86_64 linux & windows, powerpc darwin and ARM.
Regards,
Joshua
On Tue, Jul 20, 2010 at 8:00 AM, nicolas geoffray <
2010 Jul 19
0
[LLVMdev] Fwd: Building VMKit
Hi Joshua,
> $ j3 Hello
> j3: JavaClass.cpp:480: j3::JavaObject* j3::Class::doNew(j3::Jnjvm*):
> Assertion `(this->isInitializing() ||
> classLoader->getCompiler()->isStaticCompiling()) && "Uninitialized class
> when allocating."' failed.
> Aborted
Regarding to j3 in 64 bit version, it should work now after we've
found crush reason,
both in
2010 Jul 20
0
[LLVMdev] Fwd: Building VMKit
Hi Joshua,
If you can get a running 32bit system, I'd suggest you do so, as you'll get
up to speed right away. I can't test VMKit on a 64bits machine, and I have
been aware that there are some compilation/execution problems. Besides, the
current GCs of VMKit do not work on 64bits (neither MMTk nor GCMmap2).
Nicolas
On Tue, Jul 20, 2010 at 3:56 PM, Joshua Warner <joshuawarner32 at
2010 Jul 19
1
[LLVMdev] Fwd: Building VMKit
Forgot to send to the mailing list...
---------- Forwarded message ----------
From: Joshua Warner <joshuawarner32 at gmail.com>
Date: Mon, Jul 19, 2010 at 10:19 AM
Subject: Re: [LLVMdev] Building VMKit
To: nicolas geoffray <nicolas.geoffray at gmail.com>
Thanks Nicolas, that worked great!
Now, I'm having trouble invoking the compiler properly:
$ llcj Hello.class -o=Hello.ll
$
2011 Oct 25
2
[LLVMdev] A bunch of errors while installing VMKit and compiling LLVM
Hi everyone
I wasn't successful in running VMKit on my machine and I'm still struggling
with doing it.
Maybe someone had at least one of my problems and knows how to solve it
(because it seems to me that I ran into every problem that could occur :) ).
Thanks in advance,
Sergii.
So here is the story:
I have a fresh installation of Ubuntu 11.04 64bit with all important
updates.
I'll
2010 Jul 20
0
[LLVMdev] Fwd: Building VMKit
Hi Joshua,
What plans did you have for GC? No GC at all or Avian JVM has its own GC
(and is it precise or not?)?
If you're not planning on using VMKit's GCs, then 64-bit system should not
be a big problem: the only problem that we have now is compiling GNU
Classpath, and most probably Avian JVM has its own version of the class
libraries?
Also, note that platform support will be strongly
2010 Jul 20
2
[LLVMdev] Fwd: Building VMKit
Hi Nicolas,
I plan on using the Avian GC (which is a precise, generational collector).
Eventually, I'd like to fully integrate all of the runtime services Avian
provides - even integrating the existing Avian JIT compiler, to allow for
partially-AOT builds.
Avian does indeed have it's own class library, but I would be very surprised
if VMKit could compile with them - they are sufficiently
2010 Jul 20
2
[LLVMdev] Fwd: Building VMKit
On Tue, Jul 20, 2010 at 9:52 AM, nicolas geoffray <
nicolas.geoffray at gmail.com> wrote:
> On Tue, Jul 20, 2010 at 5:35 PM, Joshua Warner <joshuawarner32 at gmail.com>wrote:
>
>> Hi Nicolas,
>>
>> I plan on using the Avian GC (which is a precise, generational
>> collector).
>>
>
> OK - Great!
>
>
>> Eventually, I'd like to
2010 Jul 20
0
[LLVMdev] Fwd: Building VMKit
On Tue, Jul 20, 2010 at 5:35 PM, Joshua Warner <joshuawarner32 at gmail.com>wrote:
> Hi Nicolas,
>
> I plan on using the Avian GC (which is a precise, generational collector).
>
OK - Great!
> Eventually, I'd like to fully integrate all of the runtime services Avian
> provides - even integrating the existing Avian JIT compiler, to allow for
> partially-AOT
2011 Mar 14
3
[LLVMdev] LLVM 2.9 RC1 Pre-release Tarballs
Hello Xerxes,
> llvm 2.9rc1 test on Dualcore ARM running Ubuntu Natty
What is the gcc used for the compilation? Can you try to do the -O0
build and see whether this changed the stuff?
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University