aboutsummaryrefslogtreecommitdiffstats
path: root/setup_sysroot.sh
blob: 5c48677ac222fc5afdcf3cab42c4a13d4b1f813c (plain) (blame)
1
2
3
4
5
6
7
8
9
# Copies include/ header files to sysroot/

# creates the needed sysroot folders if non existant
mkdir -p sysroot/usr/include
mkdir -p sysroot/usr/lib

# copies all needed header files for compiling
cp -r kernel/include/* sysroot/usr/include
cp -r libc/include/* sysroot/usr/include