summaryrefslogtreecommitdiff
path: root/Base/home/anon/little/Makefile
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/home/anon/little/Makefile
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/home/anon/little/Makefile')
-rw-r--r--Base/home/anon/little/Makefile1
1 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)