2020-01-02 05:06:14 +03:00
|
|
|
#!/usr/bin/env bash
|
2019-05-15 21:05:18 +03:00
|
|
|
set -e
|
2019-11-02 19:34:54 +03:00
|
|
|
# This file will need to be run in bash, for now.
|
|
|
|
|
2020-03-07 19:38:16 +03:00
|
|
|
|
|
|
|
# === CONFIGURATION AND SETUP ===
|
|
|
|
|
2019-04-15 16:16:47 +03:00
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
|
2019-11-02 19:34:54 +03:00
|
|
|
echo "$DIR"
|
2019-04-15 17:34:41 +03:00
|
|
|
|
2019-12-18 00:42:42 +03:00
|
|
|
ARCH=${ARCH:-"i686"}
|
|
|
|
TARGET="$ARCH-pc-serenity"
|
2020-12-29 06:38:52 +03:00
|
|
|
PREFIX="$DIR/Local/$ARCH"
|
2020-05-06 18:40:06 +03:00
|
|
|
BUILD=$(realpath "$DIR/../Build")
|
|
|
|
SYSROOT="$BUILD/Root"
|
2019-04-15 16:16:47 +03:00
|
|
|
|
2020-03-22 07:25:17 +03:00
|
|
|
MAKE="make"
|
|
|
|
MD5SUM="md5sum"
|
|
|
|
NPROC="nproc"
|
2020-01-02 05:06:14 +03:00
|
|
|
|
2020-07-09 00:57:51 +03:00
|
|
|
if command -v ginstall &>/dev/null; then
|
|
|
|
INSTALL=ginstall
|
|
|
|
else
|
|
|
|
INSTALL=install
|
|
|
|
fi
|
|
|
|
|
2020-03-22 07:25:17 +03:00
|
|
|
if [ "$(uname -s)" = "OpenBSD" ]; then
|
2020-01-02 05:06:14 +03:00
|
|
|
MAKE=gmake
|
|
|
|
MD5SUM="md5 -q"
|
|
|
|
NPROC="sysctl -n hw.ncpuonline"
|
|
|
|
export CC=egcc
|
|
|
|
export CXX=eg++
|
|
|
|
export with_gmp=/usr/local
|
|
|
|
export LDFLAGS=-Wl,-z,notext
|
2020-03-22 07:25:17 +03:00
|
|
|
elif [ "$(uname -s)" = "FreeBSD" ]; then
|
2020-03-21 11:46:30 +03:00
|
|
|
MAKE=gmake
|
|
|
|
MD5SUM="md5 -q"
|
|
|
|
NPROC="sysctl -n hw.ncpu"
|
2020-10-17 23:25:13 +03:00
|
|
|
export with_gmp=/usr/local
|
|
|
|
export with_mpfr=/usr/local
|
2020-01-02 05:06:14 +03:00
|
|
|
fi
|
|
|
|
|
2020-04-27 11:03:27 +03:00
|
|
|
git_patch=
|
|
|
|
while [ "$1" != "" ]; do
|
|
|
|
case $1 in
|
|
|
|
--dev ) git_patch=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2019-11-02 19:34:54 +03:00
|
|
|
echo PREFIX is "$PREFIX"
|
|
|
|
echo SYSROOT is "$SYSROOT"
|
2019-05-08 16:50:24 +03:00
|
|
|
|
2019-04-15 16:16:47 +03:00
|
|
|
mkdir -p "$DIR/Tarballs"
|
2019-04-25 20:28:10 +03:00
|
|
|
|
2020-10-12 12:52:58 +03:00
|
|
|
BINUTILS_VERSION="2.35.1"
|
|
|
|
BINUTILS_MD5SUM="bca600eea3b8fc33ad3265c9c1eee8d4"
|
2019-12-18 00:42:42 +03:00
|
|
|
BINUTILS_NAME="binutils-$BINUTILS_VERSION"
|
|
|
|
BINUTILS_PKG="${BINUTILS_NAME}.tar.gz"
|
|
|
|
BINUTILS_BASE_URL="http://ftp.gnu.org/gnu/binutils"
|
|
|
|
|
2020-10-12 12:38:50 +03:00
|
|
|
GCC_VERSION="10.2.0"
|
|
|
|
GCC_MD5SUM="941a8674ea2eeb33f5c30ecf08124874"
|
2019-12-18 00:42:42 +03:00
|
|
|
GCC_NAME="gcc-$GCC_VERSION"
|
|
|
|
GCC_PKG="${GCC_NAME}.tar.gz"
|
|
|
|
GCC_BASE_URL="http://ftp.gnu.org/gnu/gcc"
|
|
|
|
|
2020-03-07 19:38:16 +03:00
|
|
|
|
|
|
|
# === CHECK CACHE AND REUSE ===
|
|
|
|
|
|
|
|
pushd "$DIR"
|
|
|
|
if [ "${TRY_USE_LOCAL_TOOLCHAIN}" = "y" ] ; then
|
2020-11-03 22:43:23 +03:00
|
|
|
# The actual logic had to be moved to .github/workflows/cmake.yml.
|
|
|
|
# Github Actions guarantees that Toolchain/Cache/ is empty on a cache
|
|
|
|
# miss, and non-empty on a cache hit.
|
|
|
|
# The following logic is correct *only* because of that.
|
|
|
|
|
|
|
|
mkdir -p Cache
|
|
|
|
echo "Cache (before):"
|
|
|
|
ls -l Cache
|
|
|
|
CACHED_TOOLCHAIN_ARCHIVE="Cache/ToolchainBinariesGithubActions.tar.gz"
|
|
|
|
if [ -r "${CACHED_TOOLCHAIN_ARCHIVE}" ] ; then
|
2020-10-19 21:03:15 +03:00
|
|
|
echo "Cache at ${CACHED_TOOLCHAIN_ARCHIVE} exists!"
|
2020-03-07 19:38:16 +03:00
|
|
|
echo "Extracting toolchain from cache:"
|
2020-10-19 21:03:15 +03:00
|
|
|
if tar xzf "${CACHED_TOOLCHAIN_ARCHIVE}" ; then
|
|
|
|
echo "Done 'building' the toolchain."
|
2020-11-03 22:43:23 +03:00
|
|
|
echo "Cache unchanged."
|
2020-10-19 21:03:15 +03:00
|
|
|
exit 0
|
|
|
|
else
|
2020-11-03 22:43:23 +03:00
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo "Could not extract cached toolchain archive."
|
|
|
|
echo "This means the cache is broken and *should be removed*!"
|
|
|
|
echo "As Github Actions cannot update a cache, this will unnecessarily"
|
|
|
|
echo "slow down all future builds for this hash, until someone"
|
|
|
|
echo "resets the cache."
|
|
|
|
echo
|
|
|
|
echo
|
|
|
|
echo
|
2020-10-19 21:03:15 +03:00
|
|
|
rm -f "${CACHED_TOOLCHAIN_ARCHIVE}"
|
|
|
|
fi
|
2020-03-07 19:38:16 +03:00
|
|
|
else
|
2020-10-19 21:03:15 +03:00
|
|
|
echo "Cache at ${CACHED_TOOLCHAIN_ARCHIVE} does not exist."
|
2020-03-07 19:38:16 +03:00
|
|
|
echo "Will rebuild toolchain from scratch, and save the result."
|
|
|
|
fi
|
2020-11-03 22:43:23 +03:00
|
|
|
echo "::group::Actually building Toolchain"
|
2020-03-07 19:38:16 +03:00
|
|
|
fi
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
|
|
# === DOWNLOAD AND PATCH ===
|
|
|
|
|
2019-04-15 16:16:47 +03:00
|
|
|
pushd "$DIR/Tarballs"
|
2020-01-02 05:06:14 +03:00
|
|
|
md5="$($MD5SUM $BINUTILS_PKG | cut -f1 -d' ')"
|
2019-05-08 16:50:24 +03:00
|
|
|
echo "bu md5='$md5'"
|
2019-12-18 00:42:42 +03:00
|
|
|
if [ ! -e $BINUTILS_PKG ] || [ "$md5" != ${BINUTILS_MD5SUM} ] ; then
|
|
|
|
rm -f $BINUTILS_PKG
|
2020-06-18 17:31:12 +03:00
|
|
|
curl -LO "$BINUTILS_BASE_URL/$BINUTILS_PKG"
|
2019-04-15 17:34:41 +03:00
|
|
|
else
|
|
|
|
echo "Skipped downloading binutils"
|
2019-04-15 16:16:47 +03:00
|
|
|
fi
|
|
|
|
|
2020-01-02 05:06:14 +03:00
|
|
|
md5="$($MD5SUM ${GCC_PKG} | cut -f1 -d' ')"
|
2019-05-08 16:50:24 +03:00
|
|
|
echo "gc md5='$md5'"
|
2019-12-18 00:42:42 +03:00
|
|
|
if [ ! -e $GCC_PKG ] || [ "$md5" != ${GCC_MD5SUM} ] ; then
|
|
|
|
rm -f $GCC_PKG
|
2020-06-18 17:31:12 +03:00
|
|
|
curl -LO "$GCC_BASE_URL/$GCC_NAME/$GCC_PKG"
|
2019-04-15 17:34:41 +03:00
|
|
|
else
|
|
|
|
echo "Skipped downloading gcc"
|
2019-04-15 16:16:47 +03:00
|
|
|
fi
|
|
|
|
|
2019-12-18 00:42:42 +03:00
|
|
|
if [ ! -d ${BINUTILS_NAME} ]; then
|
2019-04-15 17:34:41 +03:00
|
|
|
echo "Extracting binutils..."
|
2020-01-02 05:06:14 +03:00
|
|
|
tar -xzf ${BINUTILS_PKG}
|
2019-04-15 16:16:47 +03:00
|
|
|
|
2019-12-18 00:42:42 +03:00
|
|
|
pushd ${BINUTILS_NAME}
|
2020-04-27 11:03:27 +03:00
|
|
|
if [ "$git_patch" = "1" ]; then
|
|
|
|
git init > /dev/null
|
|
|
|
git add . > /dev/null
|
|
|
|
git commit -am "BASE" > /dev/null
|
|
|
|
git apply "$DIR"/Patches/binutils.patch > /dev/null
|
|
|
|
else
|
|
|
|
patch -p1 < "$DIR"/Patches/binutils.patch > /dev/null
|
|
|
|
fi
|
2019-04-15 16:16:47 +03:00
|
|
|
popd
|
2019-04-15 17:34:41 +03:00
|
|
|
else
|
|
|
|
echo "Skipped extracting binutils"
|
2019-04-15 16:16:47 +03:00
|
|
|
fi
|
|
|
|
|
2019-12-18 00:42:42 +03:00
|
|
|
if [ ! -d $GCC_NAME ]; then
|
2019-04-15 17:34:41 +03:00
|
|
|
echo "Extracting gcc..."
|
2020-01-02 05:06:14 +03:00
|
|
|
tar -xzf $GCC_PKG
|
2019-12-18 00:42:42 +03:00
|
|
|
pushd $GCC_NAME
|
2020-04-27 11:03:27 +03:00
|
|
|
if [ "$git_patch" = "1" ]; then
|
|
|
|
git init > /dev/null
|
|
|
|
git add . > /dev/null
|
|
|
|
git commit -am "BASE" > /dev/null
|
|
|
|
git apply "$DIR"/Patches/gcc.patch > /dev/null
|
|
|
|
else
|
2020-05-16 07:52:49 +03:00
|
|
|
patch -p1 < "$DIR/Patches/gcc.patch" > /dev/null
|
2020-04-27 11:03:27 +03:00
|
|
|
fi
|
2019-04-15 16:16:47 +03:00
|
|
|
popd
|
2019-04-15 17:34:41 +03:00
|
|
|
else
|
|
|
|
echo "Skipped extracting gcc"
|
2019-04-15 16:16:47 +03:00
|
|
|
fi
|
2019-12-25 17:21:23 +03:00
|
|
|
|
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
|
|
pushd "gcc-${GCC_VERSION}"
|
|
|
|
./contrib/download_prerequisites
|
|
|
|
popd
|
|
|
|
fi
|
|
|
|
|
2019-04-15 16:16:47 +03:00
|
|
|
popd
|
|
|
|
|
|
|
|
|
2020-03-07 19:38:16 +03:00
|
|
|
# === COMPILE AND INSTALL ===
|
|
|
|
|
|
|
|
mkdir -p "$PREFIX"
|
2020-12-29 06:38:52 +03:00
|
|
|
mkdir -p "$DIR/Build/$ARCH/binutils"
|
|
|
|
mkdir -p "$DIR/Build/$ARCH/gcc"
|
2019-04-15 16:16:47 +03:00
|
|
|
|
2019-05-15 21:08:23 +03:00
|
|
|
if [ -z "$MAKEJOBS" ]; then
|
2020-01-02 05:06:14 +03:00
|
|
|
MAKEJOBS=$($NPROC)
|
2019-05-15 21:08:23 +03:00
|
|
|
fi
|
|
|
|
|
2020-12-29 06:38:52 +03:00
|
|
|
pushd "$DIR/Build/$ARCH"
|
2019-04-15 16:16:47 +03:00
|
|
|
unset PKG_CONFIG_LIBDIR # Just in case
|
|
|
|
|
|
|
|
pushd binutils
|
2020-08-01 16:32:04 +03:00
|
|
|
echo "XXX configure binutils"
|
2020-10-12 12:52:58 +03:00
|
|
|
"$DIR"/Tarballs/$BINUTILS_NAME/configure --prefix="$PREFIX" \
|
|
|
|
--target="$TARGET" \
|
|
|
|
--with-sysroot="$SYSROOT" \
|
|
|
|
--enable-shared \
|
|
|
|
--disable-nls \
|
|
|
|
${TRY_USE_LOCAL_TOOLCHAIN:+"--quiet"} || exit 1
|
2019-12-28 19:53:14 +03:00
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
|
|
|
# under macOS generated makefiles are not resolving the "intl"
|
|
|
|
# dependency properly to allow linking its own copy of
|
|
|
|
# libintl when building with --enable-shared.
|
2020-01-02 05:06:14 +03:00
|
|
|
"$MAKE" -j "$MAKEJOBS" || true
|
2019-12-28 19:53:14 +03:00
|
|
|
pushd intl
|
2020-01-02 05:06:14 +03:00
|
|
|
"$MAKE" all-yes
|
2019-12-28 19:53:14 +03:00
|
|
|
popd
|
|
|
|
fi
|
2020-08-01 16:32:04 +03:00
|
|
|
echo "XXX build binutils"
|
2020-01-02 05:06:14 +03:00
|
|
|
"$MAKE" -j "$MAKEJOBS" || exit 1
|
|
|
|
"$MAKE" install || exit 1
|
2019-04-15 16:16:47 +03:00
|
|
|
popd
|
|
|
|
|
|
|
|
pushd gcc
|
2020-03-22 07:25:17 +03:00
|
|
|
if [ "$(uname -s)" = "OpenBSD" ]; then
|
|
|
|
perl -pi -e 's/-no-pie/-nopie/g' "$DIR/Tarballs/gcc-$GCC_VERSION/gcc/configure"
|
2020-01-02 05:06:14 +03:00
|
|
|
fi
|
|
|
|
|
2020-08-01 16:32:04 +03:00
|
|
|
echo "XXX configure gcc and libgcc"
|
2020-03-22 07:25:17 +03:00
|
|
|
"$DIR/Tarballs/gcc-$GCC_VERSION/configure" --prefix="$PREFIX" \
|
2019-11-11 22:07:44 +03:00
|
|
|
--target="$TARGET" \
|
|
|
|
--with-sysroot="$SYSROOT" \
|
|
|
|
--disable-nls \
|
|
|
|
--with-newlib \
|
2019-12-27 16:26:25 +03:00
|
|
|
--enable-shared \
|
2020-08-01 16:32:04 +03:00
|
|
|
--enable-languages=c,c++ \
|
2020-12-11 16:44:08 +03:00
|
|
|
--enable-default-pie \
|
2020-08-01 16:32:04 +03:00
|
|
|
${TRY_USE_LOCAL_TOOLCHAIN:+"--quiet"} || exit 1
|
2019-04-15 17:34:41 +03:00
|
|
|
|
2019-05-08 16:50:24 +03:00
|
|
|
echo "XXX build gcc and libgcc"
|
2020-01-02 05:06:14 +03:00
|
|
|
"$MAKE" -j "$MAKEJOBS" all-gcc all-target-libgcc || exit 1
|
2019-05-08 16:50:24 +03:00
|
|
|
echo "XXX install gcc and libgcc"
|
2020-01-02 05:06:14 +03:00
|
|
|
"$MAKE" install-gcc install-target-libgcc || exit 1
|
2019-04-17 18:29:45 +03:00
|
|
|
|
Travis: Toolchain only depends on headers, not impls
When libstdc++ was added in 4977fd22b874fb9d6d089665e36badd03bcde827, just calling
'make install' was the easiest way to install the headers. And the headers are all
that is needed for libstdc++ to determine the ABI. Since then, BuildIt.sh was
rewritten again and again, and somehow everyone just silently assumed that
libstdc++ also depends on libc.a and libm.a, because surely it does?
Turns out, it doesn't! This massively reduces the dependencies of libstdc++,
hopefully meaning that the Toolchain doesn't need to be rebuilt so often on Travis.
Furthermore, the old method of trying to determine the dependency tree with
bash/grep/etc. has finally broken anyways:
https://travis-ci.com/github/SerenityOS/serenity/builds/179805569#L567
In summary, this should eliminate most of the Toolchain rebuilds on Travis,
and therefore make Travis build blazingly fast! :^)
2020-08-15 02:11:58 +03:00
|
|
|
echo "XXX serenity libc and libm headers"
|
2020-05-20 15:23:30 +03:00
|
|
|
mkdir -p "$BUILD"
|
|
|
|
pushd "$BUILD"
|
Travis: Toolchain only depends on headers, not impls
When libstdc++ was added in 4977fd22b874fb9d6d089665e36badd03bcde827, just calling
'make install' was the easiest way to install the headers. And the headers are all
that is needed for libstdc++ to determine the ABI. Since then, BuildIt.sh was
rewritten again and again, and somehow everyone just silently assumed that
libstdc++ also depends on libc.a and libm.a, because surely it does?
Turns out, it doesn't! This massively reduces the dependencies of libstdc++,
hopefully meaning that the Toolchain doesn't need to be rebuilt so often on Travis.
Furthermore, the old method of trying to determine the dependency tree with
bash/grep/etc. has finally broken anyways:
https://travis-ci.com/github/SerenityOS/serenity/builds/179805569#L567
In summary, this should eliminate most of the Toolchain rebuilds on Travis,
and therefore make Travis build blazingly fast! :^)
2020-08-15 02:11:58 +03:00
|
|
|
mkdir -p Root/usr/include/
|
2020-05-20 15:23:30 +03:00
|
|
|
SRC_ROOT=$(realpath "$DIR"/..)
|
2021-01-12 14:17:30 +03:00
|
|
|
FILES=$(find "$SRC_ROOT"/Userland/Libraries/LibC "$SRC_ROOT"/Userland/Libraries/LibM -name '*.h' -print)
|
2020-07-09 00:57:51 +03:00
|
|
|
for header in $FILES; do
|
2021-01-12 14:17:30 +03:00
|
|
|
target=$(echo "$header" | sed -e "s@$SRC_ROOT/Userland/Libraries/LibC@@" -e "s@$SRC_ROOT/Userland/Libraries/LibM@@")
|
2020-07-09 00:57:51 +03:00
|
|
|
$INSTALL -D "$header" "Root/usr/include/$target"
|
2020-05-20 15:23:30 +03:00
|
|
|
done
|
|
|
|
unset SRC_ROOT
|
|
|
|
popd
|
|
|
|
|
2020-05-20 15:23:31 +03:00
|
|
|
echo "XXX build libstdc++"
|
2020-08-01 19:22:17 +03:00
|
|
|
"$MAKE" -j "$MAKEJOBS" all-target-libstdc++-v3 || exit 1
|
2020-05-20 15:23:31 +03:00
|
|
|
echo "XXX install libstdc++"
|
|
|
|
"$MAKE" install-target-libstdc++-v3 || exit 1
|
|
|
|
|
2020-03-22 07:25:17 +03:00
|
|
|
if [ "$(uname -s)" = "OpenBSD" ]; then
|
2020-12-29 06:38:52 +03:00
|
|
|
cd "$DIR/Local/libexec/gcc/$TARGET/$GCC_VERSION" && ln -sf liblto_plugin.so.0.0 liblto_plugin.so
|
2020-01-02 05:06:14 +03:00
|
|
|
fi
|
2020-05-06 18:40:06 +03:00
|
|
|
|
2019-04-15 16:16:47 +03:00
|
|
|
popd
|
2019-04-29 16:09:57 +03:00
|
|
|
popd
|
|
|
|
|
2020-03-07 19:38:16 +03:00
|
|
|
|
|
|
|
# == SAVE TO CACHE ==
|
|
|
|
|
|
|
|
pushd "$DIR"
|
|
|
|
if [ "${TRY_USE_LOCAL_TOOLCHAIN}" = "y" ] ; then
|
2020-11-03 22:43:23 +03:00
|
|
|
echo "::endgroup::"
|
|
|
|
echo "Building cache tar:"
|
|
|
|
|
|
|
|
rm -f "${CACHED_TOOLCHAIN_ARCHIVE}" # Just in case
|
|
|
|
|
2020-12-27 18:22:45 +03:00
|
|
|
# Stripping doesn't seem to work on macOS.
|
|
|
|
# However, this doesn't seem to be necessary on macOS, the uncompressed size is already about 210 MiB.
|
|
|
|
if [ "$(uname)" != "Darwin" ]; then
|
|
|
|
# We *most definitely* don't need debug symbols in the linker/compiler.
|
|
|
|
# This cuts the uncompressed size from 1.2 GiB per Toolchain down to about 190 MiB.
|
|
|
|
echo "Stripping executables ..."
|
|
|
|
echo "Before: $(du -sh Local)"
|
|
|
|
find Local/ -type f -executable ! -name '*.la' ! -name '*.sh' ! -name 'mk*' -exec strip {} +
|
|
|
|
echo "After: $(du -sh Local)"
|
|
|
|
fi
|
2020-11-03 22:43:23 +03:00
|
|
|
tar czf "${CACHED_TOOLCHAIN_ARCHIVE}" Local/
|
|
|
|
|
|
|
|
echo "Cache (after):"
|
|
|
|
ls -l Cache
|
2020-03-07 19:38:16 +03:00
|
|
|
fi
|
|
|
|
popd
|