Displaying 3 results from an estimated 3 matches for "libprecompiled".
2014 Mar 31
2
[LLVMdev] vmkit build failure of lots of "undefined reference"
...uot;,
followed the instructions of "http://llvm.org/svn/llvm-project/vmkit/trunk/README.TXT", and built vmkit on ubuntu 13.10 x64 with sunjava 1.6.0_45 + llvm 3.3 + classpath 0.99 + gcc 4.8.1. Following is the information when I build vmkit:
/home/x/llvm/source/vmkit/Release+Asserts/lib/libPrecompiled.a(Precompiled-gc.o):(.data.rel+0xbe0):undefined reference to 'java_lang_System_bytes'
/home/x/llvm/source/vmkit/Release+Asserts/lib/libPrecompiled.a(Precompiled-gc.o):(.data.rel+0xcd0):undefined reference to 'java_lang_Cloneable_bytes'
/home/x/llvm/source/vmkit/Release+Asserts/l...
2014 Sep 09
2
[LLVMdev] VMKit is retired (but you can help if you want!)
...LLVMCodeGen
> -lLLVMMC -lLLVMCore -lLLVMSupport -rdynamic
> >
> > This links and executes, but here are my problems/hacks:
> > * `llc` generates an assembly file with symbols (e.g., ____Vstatic_buf()
> and friends) that conflict with one of the archives listed above
> (libPrecompiled.a, which I believe is necessary for java_lang_Object and
> others). I basically remove those symbols (sed '/_buf$/ s/globl/weak/'
> HelloWorld.class.s > HelloWorld.class.sed.s) before assembling. I don't
> know if this is a reasonable hack or if it's causing problems.
&...
2014 Sep 09
2
[LLVMdev] VMKit is retired (but you can help if you want!)
...e -lLLVMTransformUtils -lLLVMSelectionDAG -lLLVMCodeGen -lLLVMMC -lLLVMCore -lLLVMSupport -rdynamic
This links and executes, but here are my problems/hacks:
* `llc` generates an assembly file with symbols (e.g., ____Vstatic_buf() and friends) that conflict with one of the archives listed above (libPrecompiled.a, which I believe is necessary for java_lang_Object and others). I basically remove those symbols (sed '/_buf$/ s/globl/weak/' HelloWorld.class.s > HelloWorld.class.sed.s) before assembling. I don't know if this is a reasonable hack or if it's causing problems.
* I get the foll...