Make it easy to change the number of CPUs
This commit is contained in:
parent
b0751a3e9b
commit
41c4bbb505
1 changed files with 4 additions and 1 deletions
5
Makefile
5
Makefile
|
@ -179,7 +179,10 @@ GDBPORT = $(shell expr `id -u` % 5000 + 25000)
|
||||||
QEMUGDB = $(shell if $(QEMU) -help | grep -q '^-gdb'; \
|
QEMUGDB = $(shell if $(QEMU) -help | grep -q '^-gdb'; \
|
||||||
then echo "-gdb tcp::$(GDBPORT)"; \
|
then echo "-gdb tcp::$(GDBPORT)"; \
|
||||||
else echo "-s -p $(GDBPORT)"; fi)
|
else echo "-s -p $(GDBPORT)"; fi)
|
||||||
QEMUOPTS = -smp 2 -hdb fs.img xv6.img
|
ifndef CPUS
|
||||||
|
CPUS := 2
|
||||||
|
endif
|
||||||
|
QEMUOPTS = -hdb fs.img xv6.img -smp $(CPUS)
|
||||||
|
|
||||||
qemu: fs.img xv6.img
|
qemu: fs.img xv6.img
|
||||||
$(QEMU) -serial mon:stdio $(QEMUOPTS)
|
$(QEMU) -serial mon:stdio $(QEMUOPTS)
|
||||||
|
|
Loading…
Reference in a new issue