diff --git a/BizHawk.Emulation.Cores/Waterbox/PeWrapper.cs b/BizHawk.Emulation.Cores/Waterbox/PeWrapper.cs index 3863642a96..2790ef4820 100644 --- a/BizHawk.Emulation.Cores/Waterbox/PeWrapper.cs +++ b/BizHawk.Emulation.Cores/Waterbox/PeWrapper.cs @@ -293,6 +293,12 @@ namespace BizHawk.Emulation.Cores.Waterbox s.Name, s.Size); } + Console.WriteLine("GDB Symbol Load:"); + Console.WriteLine("add-sym {0} {1} -s .data {2} -s .bss {3}", + ModuleName, + _sectionsByName[".text"].Start, + _sectionsByName[".data"].Start, + _sectionsByName[".bss"].Start); } public IntPtr Resolve(string entryPoint) diff --git a/output64/dll/libc.so b/output64/dll/libc.so index 5e7261e6d3..11f49df9d1 100644 Binary files a/output64/dll/libc.so and b/output64/dll/libc.so differ