mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-06 11:32:07 +00:00
Update build-toolchain.bash
the --no-ppc --no-carbon build was broken because it was looking for ppc tools. this allows it to at least get through the script.
This commit is contained in:
parent
58d8be11e1
commit
1e3f4b0031
@ -516,11 +516,12 @@ for arch in $ARCHS; do
|
||||
"$PREFIX/bin/${arch}-apple-macos-ar" cqs "$PREFIX/${arch}-apple-macos/lib/libretrocrt.a"
|
||||
fi
|
||||
done
|
||||
if [ ! -e "$PREFIX/powerpc-apple-macos/lib/libretrocrt-carbon.a" ]; then
|
||||
echo "Creating dummy libretrocrt-carbon.a for $arch..."
|
||||
"$PREFIX/bin/powerpc-apple-macos-ar" cqs "$PREFIX/powerpc-apple-macos/lib/libretrocrt-carbon.a"
|
||||
if [ $BUILD_PPC != false ]; then
|
||||
if [ ! -e "$PREFIX/powerpc-apple-macos/lib/libretrocrt-carbon.a" ]; then
|
||||
echo "Creating dummy libretrocrt-carbon.a for $arch..."
|
||||
"$PREFIX/bin/powerpc-apple-macos-ar" cqs "$PREFIX/powerpc-apple-macos/lib/libretrocrt-carbon.a"
|
||||
fi
|
||||
fi
|
||||
|
||||
# the real libretrocrt.a is built and installed by
|
||||
# `cmake --build build-target --target install` later
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user