Displaying 4 results from an estimated 4 matches for "exactluy".
Did you mean:
exactlly
2004 Nov 07
2
[LLVMdev] LLVM for JIT only use
...uild a representation of the LLVM instruction sequence or tree.
Z. the garbage collection I'm coding for my toy language.
So I really can't figure why is the LVM-GCC parser needed here!
For me the runtime stuff of LLVM is the stuff I need to JIT (without C
parsing) - but I am wrong! what exactluy is the "runtime" and why does
it require llvm-gcc (I thought that LLVM is not a bootstrapped
language: the compiler is not written in LLVM...)
Second trivial question: only I "make tools-only" how can I install
the stuff (in the standard /usr/local/ prefix)? Does "sudo mak...
2004 Nov 07
0
[LLVMdev] LLVM for JIT only use
On Sun, Nov 07, 2004 at 10:33:09PM +0100, Basile STARYNKEVITCH wrote:
> I want to try to use LLVM only for JIT only use (generating code in
> memory for x86 and, when available PowerPC [32bits])
Cool! FYI, the PowerPC JIT needs work to make it operational, but the
x86 JIT is good to go.
> How do I ./configure to avoid being asked about llvmgcc, which, in my
> very partial
2004 Nov 07
2
[LLVMdev] LLVM for JIT only use
Dear All,
I downloaded the latest CVS of llvm
I want to try to use LLVM only for JIT only use (generating code in
memory for x86 and, when available PowerPC [32bits])
How do I ./configure to avoid being asked about llvmgcc, which, in my
very partial understanding, is only used to parse C code... If I
understand correctly what Chris Lattner emailed me, LLVM uses only GCC
frontend for C & C++
2004 Nov 07
0
[LLVMdev] LLVM for JIT only use
...e one important thing that the runtime/ directory provies is the
crtend.o that is linked to any C/C++ program that LLVM-GCC compiles, but
again, that is of no relevance to your project.
> For me the runtime stuff of LLVM is the stuff I need to JIT (without C
> parsing) - but I am wrong! what exactluy is the "runtime" and why does
> it require llvm-gcc (I thought that LLVM is not a bootstrapped
> language: the compiler is not written in LLVM...)
In your list, (1) is llvm/lib/VMCore and a few others, (2) you provide.
We just have a different terminology.
Bottom line: you don'...