2022-01-20 07:17:45 +03:00
|
|
|
#! /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"
|
|
|
|
|
2022-07-05 10:14:48 +03:00
|
|
|
[ -d cross-detect ] || git clone https://github.com/mintsuki/cross-detect.git
|
2022-06-30 08:48:42 +03:00
|
|
|
[ -d freestanding-headers ] || git clone https://github.com/mintsuki/freestanding-headers.git
|
2022-06-14 06:58:34 +03:00
|
|
|
[ -d limine-efi ] || git clone https://github.com/limine-bootloader/limine-efi.git
|
2022-01-16 08:09:36 +03:00
|
|
|
|
2022-08-26 21:35:10 +03:00
|
|
|
if ! [ -d libgcc-binaries ]; then
|
|
|
|
git clone https://github.com/mintsuki/libgcc-binaries.git
|
|
|
|
|
|
|
|
# Remove the libgcc files we don't need
|
|
|
|
libgcc_needed="i686 x86_64-no-red-zone aarch64"
|
|
|
|
for f in $libgcc_needed; do
|
|
|
|
mv libgcc-binaries/libgcc-$f.a libgcc-binaries/libgcc-$f.a.save
|
|
|
|
done
|
|
|
|
rm libgcc-binaries/*.a
|
|
|
|
for f in $libgcc_needed; do
|
|
|
|
mv libgcc-binaries/libgcc-$f.a.save libgcc-binaries/libgcc-$f.a
|
|
|
|
done
|
|
|
|
fi
|
2022-08-26 11:35:23 +03:00
|
|
|
|
2022-01-31 13:46:19 +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
|
2022-01-31 13:46:19 +03:00
|
|
|
|
2022-07-02 13:34:01 +03:00
|
|
|
autoreconf -fvi
|