blob: 11534d023eaa61418fb679c082bb3bea84c56d38 (
plain) (
blame)
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
|
.DEFAULT_GOAL := build
.SILENT: cross build test
DIR := $(shell pwd)/cross
export PREFIX := $(DIR)/opt
export TARGET := i686-elf
export PATH := $(PREFIX)/bin:$(PATH)
clean:
@-rm -rf ./build ./iso
@echo "Cleaned build directory"
build: clean
@set -e; \
echo "Building..."; \
mkdir ./build/; \
# Assemble ASM files
nasm -f elf ./src/kernel/boot.asm -o ./build/boot.o || exit; \
# Make all C files
find ./src/kernel/ ./src/userspace/ ./src/mlibc/ -name \*.c >./build/tmp; \
while read -r line; do \
stripped=$$(echo "$${line}" | sed -r 's/\//_/g'); \
stripped=$${stripped#??????}; \
stripped=$${stripped%%?}o; \
i686-elf-gcc -c ./"$${line}" -o ./build/"$${stripped}" -I ./src -std=gnu99 -ffreestanding -O3 -Wall -Wextra -Wno-unused-parameter || exit; \
done <./build/tmp; \
rm ./build/tmp; \
i686-elf-gcc -T ./src/kernel/linker.ld -I ./src -o ./build/melvix.bin -std=gnu99 -ffreestanding -O2 -nostdlib ./build/*.o || exit; \
# Create ISO
mkdir -p ./iso/boot/; \
mv ./build/melvix.bin ./iso/boot/kernel.bin; \
nasm ./src/bootloader/cd.asm -f bin -o ./iso/boot/cd.bin || exit; \
nasm ./src/bootloader/hdd1.asm -f bin -o ./iso/boot/hdd1.bin || exit; \
nasm ./src/bootloader/hdd2.asm -f bin -o ./iso/boot/hdd2.bin || exit; \
genisoimage -quiet -input-charset utf-8 -no-emul-boot -b boot/cd.bin -o ./build/melvix.iso ./iso;
cross:
@set -e; \
[ -d "./cross/" ] && echo "Please remove ./cross/ and try again" && exit; \
mkdir cross || exit; \
cd cross || exit; \
DIR=$$(pwd); \
mkdir "$${DIR}/src" && cd "$${DIR}/src" || exit; \
echo "Downloading..."; \
curl -sSL "https://ftp.gnu.org/gnu/binutils/binutils-2.32.tar.xz" | tar xJ; \
curl -sSL "https://ftp.gnu.org/gnu/gcc/gcc-9.2.0/gcc-9.2.0.tar.xz" | tar xJ; \
mkdir -p "$${DIR}/opt/bin"; \
export PREFIX="$${DIR}/opt"; \
export TARGET=i686-elf; \
export PATH="$$PREFIX/bin:$$PATH"; \
mkdir "$${DIR}/src/build-binutils" && cd "$${DIR}/src/build-binutils" || exit; \
../binutils-2.32/configure --target="$$TARGET" --prefix="$$PREFIX" --with-sysroot --disable-nls --disable-werror; \
make; \
make install; \
mkdir "$${DIR}/src/build-gcc" && cd "$${DIR}/src/build-gcc" || exit; \
../gcc-9.2.0/configure --target="$$TARGET" --prefix="$$PREFIX" --disable-nls --enable-languages=c,c++ --without-headers; \
make all-gcc; \
make all-target-libgcc; \
make install-gcc; \
make install-target-libgcc; \
cd "$${DIR}/.." || exit;
test: build debug
QEMU_OPTIONS := -no-reboot -vga std -smp $$(nproc) -serial stdio -rtc base=localtime -m 256M
debug:
@echo "Starting simulation..."
@head -c 10485760 /dev/zero > ./build/hdd10M.img
@echo "[SERIAL OUTPUT]"
@qemu-system-x86_64 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw
@echo "[END OF CONNECTION]"
@printf "\n"
@echo "[SERIAL OUTPUT]"
@qemu-system-x86_64 ${QEMU_OPTIONS} -drive file=./build/hdd10M.img,format=raw
@echo "[END OF CONNECTION]"
debugHDD:
@echo "Starting simulation..."
@echo "[SERIAL OUTPUT]"
@qemu-system-x86_64 ${QEMU_OPTIONS} -drive file=./build/hdd10M.img,format=raw
@echo "[END OF CONNECTION]"
bochs: build
@head -c 10485760 /dev/zero > ./build/hdd10M.img
@qemu-system-x86_64 ${QEMU_OPTIONS} -cdrom ./build/melvix.iso -drive file=./build/hdd10M.img,format=raw
@bochs -f bochs.txt
bochsHDD:
@bochs -f bochs.txt
.PHONY: build clean cross test debug debugHDD bochs bochsHDD
|