This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
83088a235c
zephyr
/
subsys
/
debug
/
Makefile
4 lines
83 B
Makefile
Raw
Normal View
History
Unescape
Escape
debug: move debug features from misc to subsys/debug Change-Id: I446be0202325cf3cead7ce3024ca2047e3f7660d Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2016-12-18 02:18:45 +08:00
ccflags-y
+=
-I
$(
srctree
)
/include/debug
debug: add target GDB server The GDB server implements a set of GDB commands, such as read/write memory, read/write registers, connect/detach, breakpoints, single-step, continue. It is not OS-aware, and thus provides a 'system-level' debugging environment, where the system stops when debugging (such as handling a breakpoint or single-stepping). It currently only works over a serial line, taking over the uart_console. If target code prints over the console, the GDB server intecepts them and does not send the characters directly over the serial line, but rather wraps them in a packet handled by the GDB client. Change-Id: Ic4b82e81b5a575831c01af7b476767234fbf74f7 Signed-off-by: Benjamin Walsh <benjamin.walsh@windriver.com>
2016-04-12 05:51:39 +08:00
debug: openocd: build openocd symbols using obj- openocd object was put in a library causing it to be stripped. We want those symbols in the final ELF to allow debugging with openocd, building those as objects like the rest of the kernel keeps the symbols in the kernel. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2017-08-10 20:35:17 +08:00
obj-$(CONFIG_OPENOCD_SUPPORT)
+=
openocd.o