diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2023-10-23 10:33:51 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2023-10-23 14:33:46 +0200 |
commit | 97d420a465c4920ee6acfb2a9899d996987c4215 (patch) | |
tree | f6670e26ed8ce583c4012aa0bcc31f8671da1408 | |
parent | 4f9a8d39d2e92fe20d60d5481ca52bd3a0de24e1 (diff) | |
download | bootstrappable-toolchain-97d420a465c4920ee6acfb2a9899d996987c4215.tar.gz |
Fix archiver bootstrap if libzstd is available
Reported by Leah Neukirchen <leah@vuxu.org> via Mastodon.
-rwxr-xr-x | etc/scripts/bootstrap-ar.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/scripts/bootstrap-ar.sh b/etc/scripts/bootstrap-ar.sh index 12cead4..609b0d1 100755 --- a/etc/scripts/bootstrap-ar.sh +++ b/etc/scripts/bootstrap-ar.sh @@ -31,7 +31,7 @@ SRCDIR=$1 echo '#error fail here' > dlfcn.h # configure and build object files for bfd, libiberty, zlib, and libsframe - ./configure --prefix=/ --disable-nls --enable-gprofng=no --disable-werror --enable-deterministic-archives + ./configure --prefix=/ --disable-nls --enable-gprofng=no --disable-werror --enable-deterministic-archives --without-zstd ${MAKE} MAKEINFO=true all-binutils || true export CFLAGS="${CFLAGS} -DDEFAULT_AR_DETERMINISTIC=1 -Dbin_dummy_emulation="bin_vanilla_emulation" -Iinclude -Ibfd " |