diff options
author | Chris Packham <judge.packham@gmail.com> | 2024-09-05 13:54:58 +1200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2024-09-09 08:59:38 +1200 |
commit | 902fab451bdaf4a44f834becee3c3ba5a1894e05 (patch) | |
tree | 49e2610cfe4486631a4563c35452f6fb2351e43c /scripts | |
parent | 842253a7353e42a4e933b7204ca1e511a3bec9f1 (diff) | |
download | crosstool-ng-902fab451bdaf4a44f834becee3c3ba5a1894e05.tar.gz crosstool-ng-902fab451bdaf4a44f834becee3c3ba5a1894e05.tar.bz2 crosstool-ng-902fab451bdaf4a44f834becee3c3ba5a1894e05.zip |
companion_libs: zstd: Build nomt configuration
We have been building the multi threaded zstd target. This requires that
anything that links with lzstd also links with lpthread. On more recent
systems this is fine because lpthread is part of GNU libc so the
-pthread option is a no-op but on other systems this will cause GCC to
either fail to build or to silently disable zstd compression. By
building the libzstd.a-nomt-release we can be compatible with older GCC
versions and ensure that support for zstd is not silently dropped.
Fixes: #2198
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/build/companion_libs/070-zstd.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/companion_libs/070-zstd.sh b/scripts/build/companion_libs/070-zstd.sh index 6beffb2e..d8ef8c2e 100644 --- a/scripts/build/companion_libs/070-zstd.sh +++ b/scripts/build/companion_libs/070-zstd.sh @@ -81,7 +81,7 @@ do_zstd_backend() { done CT_DoLog EXTRA "Building zstd" - CT_DoExecLog ALL make ${CT_JOBSFLAGS} -C "${CT_SRC_DIR}/zstd/lib" libzstd.a-mt-release BUILD_DIR="${PWD}" CC="${host}-gcc" AS="${host}-as" CFLAGS="${cflags}" LDFLAGS="${ldflags}" + CT_DoExecLog ALL make ${CT_JOBSFLAGS} -C "${CT_SRC_DIR}/zstd/lib" libzstd.a-nomt-release BUILD_DIR="${PWD}" CC="${host}-gcc" AS="${host}-as" CFLAGS="${cflags}" LDFLAGS="${ldflags}" # There is no library only check in zstd |