search for: runtimeinfo

Displaying 2 results from an estimated 2 matches for "runtimeinfo".

2008 Apr 17
0
[LLVMdev] Call Stacks
I see that you'll have a Stack Frame object with a Call Stack being accessible from a RuntimeInfo object. I'm having trouble finding out how to access this RuntimeInfo object or the Call Stack. What is the easiest way to do this? Thanks, Ben Mayne x245 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachment...
2008 Feb 01
0
[LLVMdev] Making dll's on MinGW.
...opy to `temp' all LLVM object files that you need on your project (LLVMX86.o, LLVMExecutionEngine.o and LLVMJIT.o for me). 4. cd to `temp'. 5. Execute this: for f in ../lib*.a ; do ar x $f ; done If you are working on the LLVM's debug install, do: rm Debugger.o ProgramInfo.o RuntimeInfo.o SourceFile.o SourceLanguage*.o 6. Then: g++ -shared --export-all-symbols -o LLVM.dll *.o -lpsapi -ldbghelp This may require several minutes and use approx. 0.5 GB. If you are working on LLVM's debug install, it is a good idea to name the dll LLVMd.dll or something to different...