aboutsummaryrefslogtreecommitdiff
path: root/debug/Makefile
diff options
context:
space:
mode:
authorTim Newsome <tim@sifive.com>2017-09-29 13:20:30 -0700
committerTim Newsome <tim@sifive.com>2017-09-29 13:20:30 -0700
commit49fc83aa23045abee5d396ef5a9d96b80c03178d (patch)
treeed08e848af4aa837d690860b7e87fe3000b69891 /debug/Makefile
parentb9957ef9690dc83c684e113294b068fe676b468a (diff)
downloadriscv-tests-49fc83aa23045abee5d396ef5a9d96b80c03178d.zip
riscv-tests-49fc83aa23045abee5d396ef5a9d96b80c03178d.tar.gz
riscv-tests-49fc83aa23045abee5d396ef5a9d96b80c03178d.tar.bz2
Fix tests to work in multi-gdb mode.
The Gdb class now can handle connecting to more than one gdb. It enumerates the harts across all connections, and when asked to select a hart, it transparently sends future gdb commands to the correct instance. Multicore tests still have to be aware of some differences. The main one is that when executing 'c' in RTOS mode, all harts resume, while in multi-gdb mode only the current one resumes. Additionally, gdb doesn't set breakpoints until 'c' is issued, so the hart where breakpoints are set needs to be resumed before other harts might see them.
Diffstat (limited to 'debug/Makefile')
-rw-r--r--debug/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/Makefile b/debug/Makefile
index 33988dd..9f7cb2e 100644
--- a/debug/Makefile
+++ b/debug/Makefile
@@ -6,7 +6,7 @@ GDBSERVER_PY = $(src_dir)/gdbserver.py
default: spike$(XLEN)-2
-all: pylint spike32 spike64 spike32-2 spike64-2
+all: pylint spike32 spike32-2 spike32-2-rtos spike64 spike64-2 spike64-2-rtos
pylint:
pylint --rcfile=pylint.rc `git ls-files '*.py'`