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

Toolchain: Disable makeinfo for binutils

This is necessary to build on MacOS. As discussed in #15530, Serenity
no longer appears to build on MacOS Ventura. This attempts to fix that
by enforcing it at the command level.
This commit is contained in:
Christopher Wales 2022-11-04 23:25:26 +00:00 committed by Andrew Kaster
parent 5839ef2ed8
commit 266882937d

View file

@ -376,8 +376,8 @@ pushd "$DIR/Build/$ARCH"
popd popd
fi fi
echo "XXX build binutils" echo "XXX build binutils"
buildstep "binutils/build" "$MAKE" -j "$MAKEJOBS" || exit 1 buildstep "binutils/build" "$MAKE" MAKEINFO=true -j "$MAKEJOBS" || exit 1
buildstep "binutils/install" "$MAKE" install || exit 1 buildstep "binutils/install" "$MAKE" MAKEINFO=true install || exit 1
popd popd
echo "XXX serenity libc headers" echo "XXX serenity libc headers"