summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDanny Holman <dholman@gymli.org>2024-06-21 21:38:43 -0500
committerDanny Holman <dholman@gymli.org>2024-06-21 21:38:43 -0500
commite068ccbec7d61101e5bd9156eb63f157cf6a9846 (patch)
tree6c5615a3ce8c792358fc7e116a52b8de6cc99596 /Makefile
parent4f94edd301573550ae01e51475ed7d6157f6d71e (diff)
Makefile: decrease test memory to 1GB
Decrease the amount of memory given to the testing VM to 1GB. This makes testing the memory systems a little faster during tight build cycles. Signed-off-by: Danny Holman <dholman@gymli.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index abab3f7..5525936 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ ARCH?=i386
CC:=i686-elf-gcc
VERSION:="$(shell git describe --abbrev=4 --dirty --always --tags)"
INCLUDE:=$(INCLUDE)
-CFLAGS:=$(CFLAGS) -Wall -Wextra -DVERSION=\"$(VERSION)\" -ggdb -fstack-protector-all -O0
+CFLAGS:=$(CFLAGS) -Wall -Wextra -DVERSION=\"$(VERSION)\" -ggdb -fstack-protector-all
LDFLAGS:=$(LDFLAGS)
LIBS:=$(LIBS)
ARCH:=$(ARCH)
@@ -102,9 +102,9 @@ install-disk: $(KERNEL)
mcopy -i a.img vmbox ::vmbox
run: $(KERNEL)
- qemu-system-i386 -kernel $(KERNEL) -serial stdio -m 3G -drive file=a.img,format=raw -append "root=/dev/sda init=/bin/sh"
+ qemu-system-i386 -kernel $(KERNEL) -serial stdio -m 1G -drive file=a.img,format=raw -append "root=/dev/sda init=/bin/sh"
debug: $(KERNEL)
- qemu-system-i386 -kernel $(KERNEL) -s -S -m 3G -drive file=a.img,format=raw -append "root=/dev/sda init=/bin/sh" &
+ qemu-system-i386 -kernel $(KERNEL) -s -S -m 1G -drive file=a.img,format=raw -append "root=/dev/sda init=/bin/sh" &
-include $(OBJS:.o=.d)