> I try to debug my MSVC-application, consisting of an exe and several dlls. > When I start it in WineDBG it tells my that it can't find symbol information > for my files. why files ? the wine dlls or your own dlls ? if would be more helpful if you post all the information spat out by the debugger
> I tried having debug info in .pdb files as well as included in > the linked files but nothing worked. How can I give WineDBG the symbol > information? normally, winedbg searches for debug files either in - absolute names - relative to PATH, _NT_SYMBOL_PATH, _NT_ALT_SYMBOL_PATH environment variables you can try to run with -debugmsg +file to see what goes wrong > When it stops on an exception it prints me the stack trace, sometimes > even with function names but I strongly suspect that the shown info is > wrong now. function names can come from wine builtin DLLs and exported function names from native DLLs, so it may occur they are correct A+