Is it possible to debug an application over the network in IDE?
My limited knowledge about GDB gives me hope that this is possible... But how?
If remote debugging is not possible, then suggest a technology for searching for the method that caused the exception by its address obtained when backtracing stack.
The thing is that my application crashes when built in Release mode, that is, without debug information, and works fine when built with debugging information in Debug mode.
[2023-10-31 11:05:31.164 Error] Program exception!
[2023-10-31 11:05:31.164 Error] Stacktrace:
[2023-10-31 11:05:31.164 Error] Exception class: EZeroDivide
[2023-10-31 11:05:31.164 Error] Message: Floating point division by zero
[2023-10-31 11:05:31.164 Error] $000000010003BFF7
[2023-10-31 11:05:31.164 Error] $000000010003D098
[2023-10-31 11:05:31.164 Error] $000000010019A4CF
[2023-10-31 11:05:31.164 Error] $000000010019A40E
[2023-10-31 11:05:31.164 Error] $000000010012766F
[2023-10-31 11:05:31.164 Error] $00007FF8AEE2F1CE
[2023-10-31 11:05:31.164 Error] $00007FF8AEE2E1DB
[2023-10-31 11:05:31.164 Error] $0000000100128595
[2023-10-31 11:05:31.164 Error] $0000000100029612
[2023-10-31 11:05:31.164 Error] $0000000100029AE7
[2023-10-31 11:05:31.164 Error] $00000001000452C5
[2023-10-31 11:05:31.164 Error] $0000000100029AB6
[2023-10-31 11:05:31.164 Error] $00000001000031B3
[2023-10-31 11:05:31.164 Error] $0000000100003BB6
[2023-10-31 11:05:31.164 Error] $0000000100016730
[2023-10-31 11:05:31.164 Error] $0000000100003107
[2023-10-31 11:05:31.164 Error] $00007FF8B0117344
In very distant times, in Borland Pascal there was a menu item "
Find Error by address"...