Hello, Can LLVM generate debugging information for a Windows target? If not, can you think of any simple alternatives? Best Regards, Jon
Hello> Can LLVM generate debugging information for a Windows target?Yes. LLVM generates DWARF debugging information. I haven't checked its status recently, but it worked some time ago (on mingw32). Note that, however, you cannot mix stabs debug format and DWARF (I saw, e.g. pretty weird results from gdb in that case), that means you will need either use new mingw32 gcc (4.2+) or rebuild runtime, etc to use DWARF. -- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
>> Can LLVM generate debugging information for a Windows target? > Yes. LLVM generates DWARF debugging information. I haven't checked its > status recently, but it worked some time ago (on mingw32). Note that, > however, you cannot mix stabs debug format and DWARF (I saw, e.g. > pretty weird results from gdb in that case), that means you will need > either use new mingw32 gcc (4.2+) or rebuild runtime, etc to use > DWARF.Ok, is there a tutorial on how to emit assembly and machine code? I'm using the code in llc as a starting point, but I'm running into lots of problems. Best Regards, Jon> > -- > With best regards, Anton Korobeynikov > Faculty of Mathematics and Mechanics, Saint Petersburg State University > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev >
Reasonably Related Threads
- [LLVMdev] Debugging Information for Windows
- [LLVMdev] Debugging Information for Windows
- [LLVMdev] Still can't get source-level debugging to work
- [LLVMdev] Still can't get source-level debugging to work
- [LLVMdev] Still can't get source-level debugging to work