I debug a remote Linux process with GdbServer. And I want to put a breakpoint in some function.
The problem is that this process use ASLR so each time that process load in another address. I can watch in /proc/PID/maps the base address of the process and calculate where the function is located but this is tedious.
Is there a way to put break point with GDB in address the rebase? So the GDB will automatically calculate the rebase of the process?