aboutsummaryrefslogtreecommitdiff
path: root/build.sh
blob: d41c54f4b06fbb561c3eefd1c06ec8ae18513d62 (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
#!/usr/bin/env sh
# Builds the operating system image

# Install and source cross compiler if not already installed
. ./cross.sh

# Create build directories
rm -rf ./build/ ./iso/
mkdir ./build/

# Make source files
i686-elf-as ./src/boot.s -o ./build/boot.o

files=""
for line in $(find ./src -name \*.c); do
  stripped=$(echo "${line}" | sed -r 's/\//_/g')
  stripped=${stripped#??????}
  stripped=${stripped%%?}o
  i686-elf-gcc -c ./"${line}" -o ./build/"${stripped}" -std=gnu99 -ffreestanding -O2 -Wall -Wextra
  files="${files} ./build/${stripped}"
done

i686-elf-gcc -T ./src/linker.ld -o ./build/melvix.bin -ffreestanding -O2 -nostdlib ./build/boot.o $files -lgcc

# Testing
if grub-file --is-x86-multiboot ./build/melvix.bin; then
  echo Multiboot confirmed
else
  echo Melvix has errors and won\'t be able to multi boot!
  exit
fi

# Create ISO
mkdir -p ./iso/boot/grub
cp ./build/melvix.bin ./iso/boot/
cp ./src/grub.cfg ./iso/boot/grub/
grub-mkrescue -o ./build/melvix.iso ./iso/

# Run ISO
qemu-system-x86_64 -cdrom ./build/melvix.iso