summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2021-11-01 23:59:59 +0100
committerAleksa Vučković <aleksav013@gmail.com>2021-11-01 23:59:59 +0100
commit2a56405579be6dc341c503420e40cb30c5144a35 (patch)
tree6548a001ead2a2df6068e2157a1b15adbe174aff /Makefile
parent89f7f1b114c1bbea3ad62808bf3653e1d2337d1f (diff)
Temporary heap fix
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e99a6a6..64a07c6 100644
--- a/Makefile
+++ b/Makefile
@@ -8,6 +8,7 @@ MKDIR=mkdir -p
RM=rm -rf
CP=cp
QEMU=qemu-system-x86_64
+#QEMU_DEBUG=-d int -D qemu.log
SOURCE_DIR=src
BUILD_DIR=${CURDIR}/build
@@ -64,7 +65,7 @@ $(ISO): $(BINARY)
grub-mkrescue -o $(ISO) $(ISO_DIR)
run: compile
- $(QEMU) -kernel $(BINARY)
+ $(QEMU) -kernel $(BINARY) $(QEMU_DEBUG)
run-iso: compile $(ISO)
$(QEMU) -cdrom $(ISO)