aboutsummaryrefslogtreecommitdiffstats
path: root/docs/gettingstarted/developers/running_vpp.rst
blob: f0d56fbab2b64e6c9ac1ccb7d2fd2010e54569d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
.. _running_vpp:

.. toctree::

Running VPP
===========

After build the VPP binaries, there a several to run the images you've built. These is useful when
if you need to run VPP without  installing the packages. For instance if you want to run VPP with GDB.

Without GDB
_________________________

To run the VPP images, that you've build without GDB.

Running the release image:

.. code-block:: console

   # make run-release
   #

Running the debug image:

.. code-block:: console

   # make run
   #

With GDB
_________________________

With the following commands you can run VPP and then be dropped into the GDB prompt.

Running the release image:

.. code-block:: console

   # make debug-release
   (gdb)

Running the debug image:

.. code-block:: console

   # make debug
   (gdb)