rulimine/bootstrap

22 lines
786 B
Plaintext
Raw Normal View History

#! /bin/sh
2022-01-16 08:09:36 +03:00
set -ex
2022-01-22 05:10:25 +03:00
srcdir="$(dirname "$0")"
2022-01-16 08:09:36 +03:00
test -z "$srcdir" && srcdir=.
cd "$srcdir"
[ -d cross-detect ] || git clone https://github.com/mintsuki/cross-detect.git
[ -d freestanding-headers ] || git clone https://github.com/mintsuki/freestanding-headers.git
2022-06-21 09:47:48 +03:00
[ -d libgcc-binaries ] || git clone https://github.com/mintsuki/libgcc-binaries.git
[ -d limine-efi ] || git clone https://github.com/limine-bootloader/limine-efi.git
[ -f make_toolchain.sh ] || ( curl -o make_toolchain.sh https://gist.githubusercontent.com/mintsuki/50fca7022e09f241e40809168662493d/raw/c7eb3dd24100da888893dcee6e8d6b577613b577/make_toolchain.sh && chmod +x make_toolchain.sh )
2022-01-16 08:09:36 +03:00
automake_libdir="$(automake --print-libdir)"
mkdir -p build-aux
2022-02-02 18:24:13 +03:00
cp "${automake_libdir}/install-sh" build-aux
autoreconf -fvi