f0d56fbab2b64e6c9ac1ccb7d2fd2010e54569d8
[vpp.git] / docs / gettingstarted / developers / running_vpp.rst
1 .. _running_vpp:
2
3 .. toctree::
4
5 Running VPP
6 ===========
7
8 After build the VPP binaries, there a several to run the images you've built. These is useful when
9 if you need to run VPP without  installing the packages. For instance if you want to run VPP with GDB.
10
11 Without GDB
12 _________________________
13
14 To run the VPP images, that you've build without GDB.
15
16 Running the release image:
17
18 .. code-block:: console
19
20    # make run-release
21    #
22
23 Running the debug image:
24
25 .. code-block:: console
26
27    # make run
28    #
29
30 With GDB
31 _________________________
32
33 With the following commands you can run VPP and then be dropped into the GDB prompt.
34
35 Running the release image:
36
37 .. code-block:: console
38
39    # make debug-release
40    (gdb)
41
42 Running the debug image:
43
44 .. code-block:: console
45
46    # make debug
47    (gdb)