summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2022-05-30 09:13:24 +0200
committerAleksa Vučković <aleksav013@gmail.com>2022-05-30 23:07:20 +0200
commit602037ec658da6ab2f04f1c806bfccdcd8125f27 (patch)
tree42041f5f31bde2f5eedd544a7da346b83db8f5f9 /Makefile
parent37af80fa96b00ef9fb1abc1003db88ea1ed1a496 (diff)
idt now working on hardwarev1.0.1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 406447a..ae4f8af 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,9 @@ export CFLAGS=-std=gnu99 -O3 $(WARNINGS) -ffreestanding -fstack-protector-all
export MKDIR=mkdir -p
export RM=rm -rf
export CP=cp -r
-QEMU=qemu-system-i386
+QEMU=qemu-system-x86_64
+QEMU_FLAGS=-enable-kvm
+QEMU_DEBUG=
@@ -98,7 +100,7 @@ iso: compile
$(MAKE) $(ISO)
run: compile
- $(QEMU) -kernel $(BINARY) $(QEMU_DEBUG)
+ $(QEMU) $(QEMU_FLAGS) -kernel $(BINARY) $(QEMU_DEBUG)
run-iso: iso
- $(QEMU) -cdrom $(ISO)
+ $(QEMU) $(QEMU_FLAGS) -cdrom $(ISO)