2022-01-20 05:17:45 +01:00
|
|
|
#! /bin/sh
|
2022-01-16 06:09:36 +01:00
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
2022-01-22 03:10:25 +01:00
|
|
|
srcdir="$(dirname "$0")"
|
2022-01-16 06:09:36 +01:00
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
cd "$srcdir"
|
|
|
|
|
2022-02-15 06:18:57 +01:00
|
|
|
[ -d freestanding_headers ] || git clone https://github.com/mintsuki/freestanding_headers.git
|
2022-06-21 08:47:48 +02:00
|
|
|
[ -d libgcc-binaries ] || git clone https://github.com/mintsuki/libgcc-binaries.git
|
2022-06-14 05:58:34 +02:00
|
|
|
[ -d limine-efi ] || git clone https://github.com/limine-bootloader/limine-efi.git
|
2022-06-25 09:16:59 +02:00
|
|
|
[ -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 06:09:36 +01:00
|
|
|
|
2022-01-31 11:46:19 +01:00
|
|
|
automake_libdir="$(automake --print-libdir)"
|
|
|
|
|
|
|
|
mkdir -p build-aux
|
2022-02-02 16:24:13 +01:00
|
|
|
cp "${automake_libdir}/install-sh" build-aux
|
2022-01-31 11:46:19 +01:00
|
|
|
|
2022-01-16 06:09:36 +01:00
|
|
|
autoconf
|
2022-06-15 07:16:41 +02:00
|
|
|
( cd toolchain-detect && autoconf )
|