search for: sub_jitobj

Displaying 3 results from an estimated 3 matches for "sub_jitobj".

Did you mean: sub_jitobjs
2006 Mar 18
1
[LLVMdev] llvm-config prototype (was: Getting Started with LLVM)
...e LLVM headers. --ldflags Linker flags. --libs <COMPONENT>... Libraries needed to link against LLVM components. Right now, the only useful component is the JIT: jit LLVM JIT compiler. I get this set of dependencies using: LLVMLIBS := JIT SUB_JITOBJS=$(LLVMUsedLibs) It's very easy to dump a Makefile variable to the llvm-config script, so the only obstacle to adding more configurations is modularizing the code which processes LLVMLIBS. > I would be quite happy to have a hard-coded list of library > dependencies, even if it mea...
2006 Mar 16
0
[LLVMdev] Getting Started with LLVM
On Wed, 15 Mar 2006, Eric Kidd wrote: > On Mar 14, 2006, at 2:22 PM, Chris Lattner wrote: >>> Gnome (and many other Unix projects with massively ugly dependencies) can >>> be linked trivially using a "foo-config" script. If LLVM had something >>> similar, it might save new LLVM developers several hours of digging >>> through manuals and
2006 Mar 15
2
[LLVMdev] Getting Started with LLVM
On Mar 14, 2006, at 2:22 PM, Chris Lattner wrote: >> Gnome (and many other Unix projects with massively ugly >> dependencies) can be linked trivially using a "foo-config" script. >> If LLVM had something similar, it might save new LLVM developers >> several hours of digging through manuals and Makefiles. > > This would be very very cool to have. OK!