aboutsummaryrefslogtreecommitdiff
path: root/include/00.build/Makefile
diff options
context:
space:
mode:
authorAleksa Vučković <aleksav013@gmail.com>2022-05-30 00:10:05 +0200
committerAleksa Vučković <aleksav013@gmail.com>2022-05-30 10:22:10 +0200
commitc45a7d924b10d9cc69a48896f7a6c99ecbf56493 (patch)
tree0fd94d340c8b9bb909b048b1ba33eea69c602464 /include/00.build/Makefile
parentfe14916f60fe94db918a238d5d26ce2b0ed70e7e (diff)
\small u \smallsizeHEADmaster
Diffstat (limited to 'include/00.build/Makefile')
-rw-r--r--include/00.build/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/00.build/Makefile b/include/00.build/Makefile
index 406447a..ae4f8af 100644
--- a/include/00.build/Makefile
+++ b/include/00.build/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)