mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
Toolchain: Fix building binutils on macOS with --enable-shared
This commit is contained in:
parent
ac0b8caa42
commit
68d721f973
Notes:
sideshowbarker
2024-07-19 10:35:18 +09:00
Author: https://github.com/Pagghiu 🔰 Commit: https://github.com/SerenityOS/serenity/commit/68d721f973a Pull-request: https://github.com/SerenityOS/serenity/pull/947
1 changed files with 9 additions and 0 deletions
|
@ -102,6 +102,15 @@ pushd "$DIR/Build/"
|
|||
--with-sysroot="$SYSROOT" \
|
||||
--enable-shared \
|
||||
--disable-nls || exit 1
|
||||
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.
|
||||
make -j "$MAKEJOBS" || true
|
||||
pushd intl
|
||||
make all-yes
|
||||
popd
|
||||
fi
|
||||
make -j "$MAKEJOBS" || exit 1
|
||||
make install || exit 1
|
||||
popd
|
||||
|
|
Loading…
Reference in a new issue