mirror of
https://github.com/openvswitch/ovs
synced 2025-08-26 03:47:27 +00:00
It is some times useful to leverage the sandbox facility to experiment and explore the internals of ovs-vswitchd. Since GDB requires console access for user inputs, this patch launch an xterm for GDB, The main terminal continue to run the sub-shell as before. Exiting the sub-shell will also kill the ovs-vswitchd under GDB (but not GDB itself currently) Signed-off-by: Andy Zhou <azhou@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
13 lines
294 B
Makefile
13 lines
294 B
Makefile
docs += tutorial/Tutorial.md
|
|
EXTRA_DIST += \
|
|
tutorial/ovs-sandbox \
|
|
tutorial/t-setup \
|
|
tutorial/t-stage0 \
|
|
tutorial/t-stage1 \
|
|
tutorial/t-stage2 \
|
|
tutorial/t-stage3 \
|
|
tutorial/t-stage4
|
|
|
|
sandbox: all
|
|
cd $(srcdir)/tutorial && MAKE=$(MAKE) ./ovs-sandbox -b $(abs_builddir) $(SANDBOXFLAGS)
|