-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathMakefile
55 lines (41 loc) · 1.03 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
arch ?= riscv64
target := $(arch)imac-unknown-none-elf
mode := debug
kernel := target/$(target)/$(mode)/riscv
bin := target/$(target)/$(mode)/kernel.bin
sysroot := $(shell rustc --print sysroot)
objdump := $(shell find $(sysroot) -name llvm-objdump) --arch-name=$(arch)
objcopy := $(shell find $(sysroot) -name llvm-objcopy)
BUILD_ARGS += --target $(target)
ifeq ($(mode), release)
BUILD_ARGS += --release
endif
ifeq ($(arch), riscv32)
START_ADDR := 0x80400000
else ifeq ($(arch), riscv64)
START_ADDR := 0x80200000
endif
.PHONY: kernel build clean qemu run env
build: $(bin)
env:
rustup component add llvm-tools-preview rustfmt
rustup target add $(target)
kernel:
cargo build $(BUILD_ARGS)
$(bin): kernel
$(objcopy) $(kernel) --strip-all -O binary $@
asm:
$(objdump) -d $(kernel) | less
sym:
$(objdump) -t $(kernel) | less
header:
$(objdump) -x $(kernel) | less
clean:
cargo clean
qemu: $(bin)
qemu-system-$(arch) \
-machine virt \
-nographic \
-bios default \
-device loader,file=$(bin),addr=$(START_ADDR)
run: build qemu