blob: c50008f6081ce2605fa19f37d25d8a7343a9a25e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# This script compiles the operating system toolchain(GCC, Binutils)
scriptdir="$(dirname "$0")"
cd "$scriptdir"
cd ..
# Install the headers from LibC
mkdir -p ./sysroot/usr/include/
cp -r ./userland/libc/include ./sysroot/usr/
cd ./toolchain/
./build-binutils.sh
./build-gcc.sh
|