1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 00:27:35 +00:00

Toolchain: Upgrade to Binutils 2.35.1

This commit is contained in:
Andreas Kling 2020-10-12 11:52:58 +02:00
parent 75d5f436bc
commit 583bfa04e2

View file

@ -58,8 +58,8 @@ echo SYSROOT is "$SYSROOT"
mkdir -p "$DIR/Tarballs" mkdir -p "$DIR/Tarballs"
BINUTILS_VERSION="2.33.1" BINUTILS_VERSION="2.35.1"
BINUTILS_MD5SUM="1a6b16bcc926e312633fcc3fae14ba0a" BINUTILS_MD5SUM="bca600eea3b8fc33ad3265c9c1eee8d4"
BINUTILS_NAME="binutils-$BINUTILS_VERSION" BINUTILS_NAME="binutils-$BINUTILS_VERSION"
BINUTILS_PKG="${BINUTILS_NAME}.tar.gz" BINUTILS_PKG="${BINUTILS_NAME}.tar.gz"
BINUTILS_BASE_URL="http://ftp.gnu.org/gnu/binutils" BINUTILS_BASE_URL="http://ftp.gnu.org/gnu/binutils"
@ -206,12 +206,12 @@ pushd "$DIR/Build/"
pushd binutils pushd binutils
echo "XXX configure binutils" echo "XXX configure binutils"
"$DIR"/Tarballs/binutils-2.33.1/configure --prefix="$PREFIX" \ "$DIR"/Tarballs/$BINUTILS_NAME/configure --prefix="$PREFIX" \
--target="$TARGET" \ --target="$TARGET" \
--with-sysroot="$SYSROOT" \ --with-sysroot="$SYSROOT" \
--enable-shared \ --enable-shared \
--disable-nls \ --disable-nls \
${TRY_USE_LOCAL_TOOLCHAIN:+"--quiet"} || exit 1 ${TRY_USE_LOCAL_TOOLCHAIN:+"--quiet"} || exit 1
if [ "$(uname)" = "Darwin" ]; then if [ "$(uname)" = "Darwin" ]; then
# under macOS generated makefiles are not resolving the "intl" # under macOS generated makefiles are not resolving the "intl"
# dependency properly to allow linking its own copy of # dependency properly to allow linking its own copy of