blob: 4c717af3e196fbcf69b2cbf44ed0acb6b818b144 [file] [log] [blame]
andrewa38d0012018-08-06 00:25:33 -04001.. _running_vpp:
2
3.. toctree::
4
5Running VPP
6===========
7
8After build the VPP binaries, there a several to run the images you've built. These is useful when
9if you need to run VPP without installing the packages. For instance if you want to run VPP with GDB.
10
11Without GDB
12_________________________
13
14To run the VPP images, that you've build without GDB.
15
16Running the release image:
17
18.. code-block:: console
19
20 # make run-release
21 #
22
23With GDB
24_________________________
25
26With the following commands you can run VPP and then be dropped into the GDB prompt.
27
28Running the release image:
29
30.. code-block:: console
31
32 # make debug-release
33 (gdb)
34
35Running the debug image:
36
37.. code-block:: console
38
39 # make debug
40 (gdb)