Closed MuriMan closed 7 months ago
This is part of breakpoint setup response message, not warning itself. You can't turn it off.
Is it meant to happen?
Yes, this is normal output for this case (breakpoint setup before debuggee process start).
@MuriMan at the time point of breakpoint setup such symbol is not yet loaded, however it might be present in dlls loaded in future, so it's pending and checked on each library load. Logic here is the same as for gdb:
$ gdb --args ./corerun ./hw.dll
Reading symbols from ./corerun...
(gdb) b my_func
Function "my_func" not defined.
Make breakpoint pending on future shared library load? (y or [n]) y
Breakpoint 1 (my_func) pending.
(gdb)
understood
the warning is unnecessary, how to turn it off?