Displaying 2 results from an estimated 2 matches for "nscacheservice".
2006 Aug 17
2
[LLVMdev] help with link problems
...ly helped me find the
answers I needed. I'm slowly getting up to speed with LLVM. Now I
have 2 more questions.
1) I'm using LLVM 1.8a with llvm-gcc3. I'm trying to compile firefox
(with regular gcc and make) while using LLVM to automatically
instrument one source file (specifically, nsCacheService.cpp in the
netwerk/cache module). I've written an LLVM pass to add a fprintf()
timestamp at every function exit. So I go through the steps as
outlined in the FAQ to turn C++ code into C: 1) llvm-g++ on the source
file to produce LLVM bytecode; 2) run my pass on bytecode; 3) use llc
to produce...
2006 Aug 23
0
[LLVMdev] help with link problems
...swers I needed. I'm slowly getting up to speed with LLVM. Now I
> have 2 more questions.
>
> 1) I'm using LLVM 1.8a with llvm-gcc3. I'm trying to compile firefox
> (with regular gcc and make) while using LLVM to automatically
> instrument one source file (specifically, nsCacheService.cpp in the
> netwerk/cache module). I've written an LLVM pass to add a fprintf()
> timestamp at every function exit. So I go through the steps as
> outlined in the FAQ to turn C++ code into C: 1) llvm-g++ on the source
> file to produce LLVM bytecode; 2) run my pass on bytecode; 3...