|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript electronics |
digitalmars.D.debugger - Ddbg UTF-8 problem?
Hi! Sorry if this has come up already, I've searched the NG but didn't find anything. I'm new to Ddbg, so I've probably made something wrong, but ... anyway, let's see. Here's what happens: Ddbg 0.10 beta - D Debugger Copyright (c) 2007 Jascha Wetzel see http://ddbg.mainia.de/doc.html for documentation Loading symbols from wb.exe ->r ntdll.dll loaded at 0x7c910000 KERNEL32.dll loaded at 0x7c800000 USER32.dll loaded at 0x7e360000 GDI32.dll loaded at 0x77ef0000 4invalid UTF-8 sequence -> That UTF-8 thing seems to mess up Ddbg somehow, it just doesn't work. Is there anything I can do about it? -Mike Aug 02 2007
Mike wrote:Loading symbols from wb.exe ->r ntdll.dll loaded at 0x7c910000 KERNEL32.dll loaded at 0x7c800000 USER32.dll loaded at 0x7e360000 GDI32.dll loaded at 0x77ef0000 4invalid UTF-8 sequence -> That UTF-8 thing seems to mess up Ddbg somehow, it just doesn't work. Is there anything I can do about it? Aug 02 2007
Jascha Wetzel <[firstname] mainia.de> Wrote:there has been an issue where some dll names caused that to happen. for the case given at that time, it was fixed, though. i'd like to reproduce this problem to see what's going on. could you send me whatever i need to do so? besides that, you can try to issue another 'r' after that message. Aug 02 2007
Mike wrote:Hi! Sorry if this has come up already, I've searched the NG but didn't find anything. I'm new to Ddbg, so I've probably made something wrong, but ... anyway, let's see. Here's what happens: Ddbg 0.10 beta - D Debugger Copyright (c) 2007 Jascha Wetzel see http://ddbg.mainia.de/doc.html for documentation Loading symbols from wb.exe ->r ntdll.dll loaded at 0x7c910000 KERNEL32.dll loaded at 0x7c800000 USER32.dll loaded at 0x7e360000 GDI32.dll loaded at 0x77ef0000 4invalid UTF-8 sequence -> That UTF-8 thing seems to mess up Ddbg somehow, it just doesn't work. Is there anything I can do about it? -Mike Aug 02 2007
dickl Wrote:I've seen the UTF problem with fixed length strings (writefln has the same problem). Initializing them to 0 before using fixes the problem . Aug 02 2007
|