summaryrefslogtreecommitdiff
path: root/Base
diff options
context:
space:
mode:
authorItamar <itamar8910@gmail.com>2020-04-25 00:01:19 +0300
committerAndreas Kling <kling@serenityos.org>2020-04-25 13:16:46 +0200
commit74f41d5f98fd854fe5564997361555f82a646751 (patch)
tree3c60161be92f7115dde8d9d745134b15c977ecfe /Base
parent393560d8a2de4b507497786f3203e0c0cebb13c2 (diff)
downloadserenity-74f41d5f98fd854fe5564997361555f82a646751.zip
HackStudio: Add cpp debugger
The HackStudio debugger integrates with LibDebug to provide source-level debugging. The user can set breakpoints at various positions in the source code, and then run the program in debug mode. When the program is stopped, the current execution position is displayed, and the user can insert/remove breakpoints, continue execution, or single step the program.
Diffstat (limited to 'Base')
-rw-r--r--Base/home/anon/little/Makefile1
-rw-r--r--Base/res/icons/16x16/play-debug.pngbin0 -> 671 bytes
-rw-r--r--Base/res/icons/16x16/single-step.pngbin0 -> 279 bytes
3 files changed, 1 insertions, 0 deletions
diff --git a/Base/home/anon/little/Makefile b/Base/home/anon/little/Makefile
index 137ef0065e..7c29668846 100644
--- a/Base/home/anon/little/Makefile
+++ b/Base/home/anon/little/Makefile
@@ -1,5 +1,6 @@
PROGRAM = little
OBJS = main.o
+CXXFLAGS = -g
all: $(PROGRAM)
diff --git a/Base/res/icons/16x16/play-debug.png b/Base/res/icons/16x16/play-debug.png
new file mode 100644
index 0000000000..3de78d4c35
--- /dev/null
+++ b/Base/res/icons/16x16/play-debug.png
Binary files differ
diff --git a/Base/res/icons/16x16/single-step.png b/Base/res/icons/16x16/single-step.png
new file mode 100644
index 0000000000..3de1fc9689
--- /dev/null
+++ b/Base/res/icons/16x16/single-step.png
Binary files differ