search for: usinglibrari

Displaying 10 results from an estimated 10 matches for "usinglibrari".

Did you mean: usinglibraries
2010 Jul 22
0
[LLVMdev] Is there a guide to LLVM's components?
David Piepgrass <dpiepgrass at mentoreng.com> writes: > One thing that helps me understand complex software is a dependency > graph. I found an LLVM dependency graph at > > https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_16/docs/UsingLibraries.html#dependencies > > but it's really messy and hard to follow. From that graph I made a > cleaner graph by hand (attached)... sorry about the fax-quality > scan. But I have some questions about it... > > > - How old is this graph? It is for the 1.6 release. Now...
2010 Jul 22
2
[LLVMdev] Is there a guide to LLVM's components?
One thing that helps me understand complex software is a dependency graph. I found an LLVM dependency graph at https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_16/docs/UsingLibraries.html#dependencies but it's really messy and hard to follow. From that graph I made a cleaner graph by hand (attached)... sorry about the fax-quality scan. But I have some questions about it... - How old is this graph? - Is anything missing? (e.g. only SPARC stuff is pres...
2007 Jun 30
1
[LLVMdev] How to call native functions from bytecode run in JIT?
Hi, > If I recall correctly, in Linux you get the message: > > PPCJITInfo.cpp:382: failed assertion `ResultPtr >= -(1 << 23) && > ResultPtr < (1 << 23) && "Relocation out of range!"' > > > Right? But on OS X you don't have this messsage? Not exactly. There seem to be two problems. Your patch fixes one of them: in OS X I
2006 Mar 10
0
[LLVMdev] Getting Started with LLVM
...just like with any other library. Also, -D__STDC_LIMIT_MACROS had to be added to the compiler options for some header to work correctly but that was pretty much it. The LLVM docs have this list of libraries and their interdependencies, in case you've missed it: http://llvm.cs.uiuc.edu/docs/UsingLibraries.html I asked a similar question here about a month ago and Chris answered: "make install is lightly tested, but should work.  Please report any problems you find." Personally, I've found LLVM to be a pleasure to work with. Its design is very powerful, which simplifies many thin...
2010 Jul 22
1
[LLVMdev] Is there a guide to LLVM's components?
> > I found an LLVM dependency graph at > > > > https://llvm.org/svn/llvm- > project/llvm/tags/RELEASE_16/docs/UsingLibraries.html#dependencies > > > > but it's really messy and hard to follow. From that graph I made a > > cleaner graph by hand (attached)... sorry about the fax-quality > > scan. But I have some questions about it... > > > > - How old is this graph? > I...
2009 Jan 04
1
[LLVMdev] link problem with llvm-pass
Dear John, thanks! I was irritated by the path of the header file/declaration. It is not like the definition in a subdirectory. Sorry my fault. Is there an overview where classes and link options are mapped to each other? Kind regards, Nico On Jan 4, 2009, at 4:07 PM, John Criswell wrote: > Dear Nico, > > I believe you need to add LLVMipa to the list of libraries to link >
2006 Mar 10
2
[LLVMdev] Getting Started with LLVM
Hello! I'm considering using LLVM for several different projects in the future, so I'm conducting a technical evaluation. So far, the APIs and the benchmark results look absolutely great. Things I really like: 1) LLVM is low-level enough to support most languages that run on standard hardware. 2) The JIT examples are really straightforward. 3) The documentation is remarkably good. 4)
2008 Feb 14
1
[LLVMdev] Bug Report - Broken versions of FC6-GCC.4.1.1 when complie llvm-2.2 source
2008 May 10
4
[LLVMdev] Preferring to use GCC instead of LLVM
Oh another thing, consider this question that some people will be asking: Why not use GCC to do what LLVM does, and skip the hassle of using LLVM entirely? ESPECIALLY considering that LLVM cannot be used without GCC. Even if you are using LLVM as a back-end only, for compiling LLVM bytecode only, GCC is still required to convert the "llc" output assembly .S file into a
2004 Dec 30
3
[LLVMdev] Primer with LLVM
Hi, everybody: I am a beginner with LLVM, in fact today was the first day that I use it. I have several questions about LLVM: Can I use LLVM to compile several files (bytecode), scripts (char*) and link them with external libraries generating *only* one executable (all in memory)? Can I invoke externals functions from a guest (LLVM generated) code which exist in the host code (the code that