1234567891011121314151617181920212223242526272829303132333435 |
- DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
- TARGET=x86_64-pc-toaru
- PREFIX="$DIR/local"
- SYSROOT="$DIR/../base"
- cd $DIR
- mkdir -p $PREFIX/bin
- mkdir -p $DIR/build/binutils
- cd $DIR/build/binutils
- ../../binutils-gdb/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot="$SYSROOT" --disable-werror --enable-shared
- make -j8
- make install
- mkdir -p $DIR/build/gcc
- cd $DIR/build/gcc
- ../../gcc/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot="$SYSROOT" --enable-languages=c,c++ --enable-shared
- make -j8 all-gcc
- make install-gcc
- make -j8 all-target-libgcc # This will fail, but we don't care, we need some other targets in here to build libc
- make install-target-libgcc
- cd $DIR/../
- make base/lib/libc.so
- cd $DIR/build/gcc
- make -j8 all-target-libgcc
- make install-target-libgcc
- cd $DIR/../
- make base/lib/libm.so
- cd $DIR/build/gcc
- make -j8 all-target-libstdc++-v3
- make install-target-libstdc++-v3
|