-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
242 lines (195 loc) · 7.22 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
########################################################################################################################
# TomatOS
########################################################################################################################
# Nuke built-in rules and variables.
override MAKEFLAGS += -rR
KERNEL := tomatos
#-----------------------------------------------------------------------------------------------------------------------
# General Config
#-----------------------------------------------------------------------------------------------------------------------
# Are we compiling as debug or not
DEBUG ?= 0
ifeq ($(DEBUG),1)
OPTIMIZE ?= 0
else
OPTIMIZE ?= 1
endif
#-----------------------------------------------------------------------------------------------------------------------
# Directories
#-----------------------------------------------------------------------------------------------------------------------
BUILD_DIR := build
BIN_DIR := $(BUILD_DIR)/bin
OBJS_DIR := $(BUILD_DIR)/obj
#-----------------------------------------------------------------------------------------------------------------------
# Flags
#-----------------------------------------------------------------------------------------------------------------------
#
# Toolchain
#
CC := clang
AR := llvm-ar
LD := ld.lld
ifeq ($(DEBUG),1)
TDN_BIN_DIR := lib/TomatoDotNet/out/debug/bin
else
TDN_BIN_DIR := lib/TomatoDotNet/out/release/bin
endif
#
# Common compilation flags, also passed to the libraries
#
COMMON_CFLAGS := -target x86_64-pc-none-elf
COMMON_CFLAGS += -mgeneral-regs-only
COMMON_CFLAGS += -march=x86-64-v3
COMMON_CFLAGS += -fno-pie -fno-pic -ffreestanding -fno-builtin -static
COMMON_CFLAGS += -mcmodel=kernel -mno-red-zone
COMMON_CFLAGS += -nostdlib
COMMON_CFLAGS += -flto -g
COMMON_CFLAGS += -fno-omit-frame-pointer -fvisibility=hidden
COMMON_CFLAGS += -DUACPI_FORMATTED_LOGGING -DUACPI_OVERRIDE_LIBC
# Optimization flags
ifeq ($(OPTIMIZE),1)
COMMON_CFLAGS += -O3
else
COMMON_CFLAGS += -O0
endif
# Debug flags
ifeq ($(DEBUG),1)
COMMON_CFLAGS += -fsanitize=undefined
COMMON_CFLAGS += -fno-sanitize=alignment
endif
# Our compilation flags
CFLAGS := $(COMMON_CFLAGS)
CFLAGS += -Wall -Werror -std=gnu11
CFLAGS += -Wno-address-of-packed-member
CFLAGS += -Ikernel
CFLAGS += -DLIMINE_API_REVISION=2
# Debug flags
# ifeq ($(DEBUG),1)
CFLAGS += -Wno-unused-function -Wno-unused-label -Wno-unused-variable
# endif
# We are relying on frame pointers for proper stack unwinding
# in both managed and unmanaged environment
CFLAGS +=
CFLAGS += -Ilib/flanterm
CFLAGS += -Ilib/buddy_alloc -DBUDDY_HEADER
CFLAGS += -I$(BUILD_DIR)/limine
# Things required by TDN
CFLAGS += -fms-extensions -Wno-microsoft
CFLAGS += -Ilib/TomatoDotNet/include
CFLAGS += -Ilib/TomatoDotNet/libs/spidir/c-api/include
# uACPI
CFLAGS += -Ilib/uACPI/include
ifeq ($(DEBUG),1)
CFLAGS += -D__DEBUG__
endif
#
# Linker flags
#
LDFLAGS := -Tkernel/linker.ld -nostdlib -static
#-----------------------------------------------------------------------------------------------------------------------
# Stb printf
#-----------------------------------------------------------------------------------------------------------------------
CFLAGS += -DSTB_SPRINTF_NOFLOAT
#-----------------------------------------------------------------------------------------------------------------------
# Sources
#-----------------------------------------------------------------------------------------------------------------------
# Get list of source files
SRCS := $(shell find kernel -name '*.c')
# Add the flanterm code for early console
SRCS += lib/flanterm/flanterm.c
SRCS += lib/flanterm/backends/fb.c
# The objects/deps
OBJS := $(addprefix $(OBJS_DIR)/,$(SRCS:.c=.c.o))
DEPS := $(addprefix $(OBJS_DIR)/,$(SRCS:.c=.c.d))
# Link against TomatoDotNet
OBJS += $(TDN_BIN_DIR)/libtdn.a
OBJS += $(BIN_DIR)/libuacpi.a
# The C# DLLs we need
DLLS := $(BIN_DIR)/Tomato.Kernel.dll
DLLS += $(TDN_BIN_DIR)/System.Private.CoreLib.dll
# Default target.
.PHONY: all
all: $(BIN_DIR)/$(KERNEL).elf
# Get the header deps
-include $(DEPS)
# Link rules for the final kernel executable.
$(BIN_DIR)/$(KERNEL).elf: Makefile kernel/linker.ld $(OBJS)
@echo LD $@
@mkdir -p "$$(dirname $@)"
@$(LD) $(OBJS) $(LDFLAGS) -o $@
# Compilation rules for *.c files.
$(OBJS_DIR)/%.c.o: %.c Makefile $(BUILD_DIR)/limine/limine.h
@echo CC $@
@mkdir -p $(@D)
@$(CC) -MMD -MP $(CFLAGS) -c $< -o $@
.PHONY: clean
clean:
rm -rf $(OBJS_DIR) $(BIN_DIR)
$(MAKE) -C lib/TomatoDotNet clean
$(MAKE) -f makefiles/uacpi.mk clean
.PHONY: distclean
distclean: clean
rm -rf $(BUILD_DIR)
#-----------------------------------------------------------------------------------------------------------------------
# TomatoDotNet
#-----------------------------------------------------------------------------------------------------------------------
.PHONY: force
$(TDN_BIN_DIR)/libtdn.a: force
@echo MAKE $@
@$(MAKE) -C lib/TomatoDotNet \
CC="$(CC)" \
AR="$(AR)" \
LD="$(LD)" \
DEBUG="$(DEBUG)" \
CFLAGS="$(COMMON_CFLAGS)"
$(BIN_DIR)/libuacpi.a: force
@echo MAKE $@
@$(MAKE) -f makefiles/uacpi.mk \
CC="$(CC)" \
AR="$(AR)" \
LD="$(LD)" \
DEBUG="$(DEBUG)" \
CFLAGS="$(COMMON_CFLAGS) -Ikernel/acpi"
#-----------------------------------------------------------------------------------------------------------------------
# All the binaries
#-----------------------------------------------------------------------------------------------------------------------
$(BIN_DIR)/Tomato.Kernel.dll: ManagedKernel/Tomato.Kernel/bin/Debug/net8.0/Tomato.Kernel.dll
@mkdir -p $(@D)
cp $^ $@
ManagedKernel/Tomato.Kernel/bin/Debug/net8.0/Tomato.Kernel.dll: force
cd ManagedKernel/Tomato.Kernel && dotnet build --configuration Debug
#-----------------------------------------------------------------------------------------------------------------------
# Quick test
#-----------------------------------------------------------------------------------------------------------------------
$(BUILD_DIR)/limine/limine.h: $(BUILD_DIR)/limine
# Clone and build limine utils
$(BUILD_DIR)/limine:
mkdir -p $(@D)
cd $(BUILD_DIR) && git clone https://github.com/limine-bootloader/limine.git --branch=v8.x-binary --depth=1
$(MAKE) -C $(BUILD_DIR)/limine
# The name of the image we are building
IMAGE_NAME := $(BIN_DIR)/$(KERNEL)
# Build a limine image with both bios and uefi boot options
$(IMAGE_NAME).hdd: artifacts/limine.conf $(BUILD_DIR)/limine $(BIN_DIR)/$(KERNEL).elf $(DLLS)
mkdir -p $(@D)
rm -f $(IMAGE_NAME).hdd
dd if=/dev/zero bs=1M count=0 seek=64 of=$(IMAGE_NAME).hdd
sgdisk $(IMAGE_NAME).hdd -n 1:2048 -t 1:ef00
./$(BUILD_DIR)/limine/limine bios-install $(IMAGE_NAME).hdd
mformat -i $(IMAGE_NAME).hdd@@1M
mmd -i $(IMAGE_NAME).hdd@@1M ::/EFI ::/EFI/BOOT
mcopy -i $(IMAGE_NAME).hdd@@1M $(BIN_DIR)/$(KERNEL).elf artifacts/limine.conf $(BUILD_DIR)/limine/limine-bios.sys ::/
mcopy -i $(IMAGE_NAME).hdd@@1M $(DLLS) ::/
mcopy -i $(IMAGE_NAME).hdd@@1M $(BUILD_DIR)/limine/BOOTX64.EFI ::/EFI/BOOT
.PHONY: run
run: $(IMAGE_NAME).hdd
qemu-system-x86_64 \
--enable-kvm \
-cpu host,+invtsc,+tsc-deadline \
-machine q35 \
-smp 4 \
-s \
-hda $(IMAGE_NAME).hdd \
-debugcon stdio \
-no-reboot \
-no-shutdown