blob: f42fc40bfda74d6c8b2ae76f2818ef2699087ea2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Now that PEDA is installed it can be used with gdb(1).
Run the following command in the gdb prompt to load the plugin:
```
source %%LIBEXECDIR%%/%%UTILITY_NAME%%
```
In order to load PEDA automatically on gdb(1) launch add the line mentioned
above to ~/.gdbinit:
```
echo "source %%LIBEXECDIR%%/%%UTILITY_NAME%%" >> ~/.gdbinit
```
Keep in mind that PEDA requires at least GDB 7.0 to work.
|