2ba9dcf408
Change-Id: I3de038439bf0ab5755777c0f4930aec0514f5b63 Signed-off-by: John DeNisco <jdenisco@cisco.com>
49 lines
828 B
ReStructuredText
49 lines
828 B
ReStructuredText
.. _running_vpp:
|
|
|
|
.. toctree::
|
|
|
|
Running VPP
|
|
===========
|
|
|
|
After building the VPP binaries, you now have several images built.
|
|
These images are useful when you need to run VPP without installing the packages.
|
|
For instance if you want to run VPP with GDB.
|
|
|
|
Running Without GDB
|
|
_________________________
|
|
|
|
To run the VPP images that you've built without GDB, run the following commands:
|
|
|
|
Running the release image:
|
|
|
|
.. code-block:: console
|
|
|
|
# make run-release
|
|
#
|
|
|
|
Running the debug image:
|
|
|
|
.. code-block:: console
|
|
|
|
# make run
|
|
#
|
|
|
|
Running 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)
|