Add --enable-64-bit-bfd flag to binutils configure so that build does not fail on 32-bit hosts
diff --git a/toolchain/make_toolchain.sh b/toolchain/make_toolchain.sh
index f743d282..4da240bf 100755
--- a/toolchain/make_toolchain.sh
+++ b/toolchain/make_toolchain.sh
@@ -41,7 +41,7 @@ tar -xf ../gzip-$GZIPVERSION.tar.gz
mkdir build-binutils
cd build-binutils
-../binutils-$BINUTILSVERSION/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror
+../binutils-$BINUTILSVERSION/configure --target=$TARGET --prefix="$PREFIX" --with-sysroot --disable-nls --disable-werror --enable-64-bit-bfd
make
make install
cd ..
