powerpc: disable binutils/bfd plugin support, it causes problems

This commit is contained in:
Wolfgang Thaller 2019-01-02 00:19:19 +01:00
parent e92b60224d
commit f53e0a3c2b
2 changed files with 3 additions and 3 deletions

View File

@ -887,8 +887,8 @@ open_inarch (const char *archive_filename, const char *file)
bfd_set_error (bfd_error_no_error);
//if (target == NULL)
// target = plugin_target;
if (target == NULL)
target = plugin_target;
if (stat (archive_filename, &sbuf) != 0)
{

View File

@ -386,7 +386,7 @@ if [ $SKIP_THIRDPARTY != true ]; then
# Build binutils for PPC
mkdir -p binutils-build-ppc
cd binutils-build-ppc
$SRC/binutils/configure --target=powerpc-apple-macos --prefix=$PREFIX --disable-doc
$SRC/binutils/configure --disable-plugins --target=powerpc-apple-macos --prefix=$PREFIX --disable-doc
make -j8
make install
cd ..