Mikhail Kurinnoi
Mikhail Kurinnoi
> Is there a way to explicitly pass it certain PDBs? No, you can't do this, since this is process-related feature. We can't mark some executable managed code with JMC...
PDB file should be in same directory as DLL. In case CLI you could check output into terminal from debugger during DLL load (this output have info about is DLL...
Note, DLL file on disk should be DLL, since debugger will open this file with PE Reader and read CoreView section in order to get PDB file name (DLL have...
> Is there any reason why netcoredbg cannot use the pdb when loaded using LoadFromStream()? As I already explained in https://github.com/Samsung/netcoredbg/issues/91#issuecomment-1124715331 `Note, DLL file on disk should be DLL, since...
This require some time for investigation, but for now we don't have it. I have no idea for now how this could be implemented.
Not sure our debugger work with Context related feature at all, at least we don't have "Context" related stuff implemented (and never tested this case). BTW, I am not sure...
Hmm... ``` 2023-11-16 15:48:04 +0100 Sleep Entering DarkWake state due to 'Software Sleep pid=64781': Using AC (Charge:0%) 7 secs ``` not really sure this is debugger related at all, since...
``` /Users/gspreer/Hello/netcoredbg/src/debugger/waitpid.cpp:71:18: error: exception specification in declaration does not match previous declaration extern "C" pid_t waitpid(pid_t pid, int *status, int options) noexcept /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.1.sdk/usr/include/sys/wait.h:249:9: note: previous declaration is here pid_t waitpid(pid_t,...
Inside both logs I found lines: ``` {"seq":60, "event":"output","type":"event","body":{"category":"stderr","output":"Could not execute because the specified command or file was not found.\r\nPossible reasons for this include:\r\n * You misspelled a built-in dotnet...
https://github.com/dotnet/runtime/blob/135fec006e727a31763271984cd712f1659ccbd3/src/libraries/System.Private.CoreLib/src/System/Nullable.cs#L21-L75 Looks like fields was not initialized by constructor before real code execution during evaluation (properties getters calls). Is this case provide same issues: ``` internal class Variables { public...