aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorQuentin Boswank <qubos@outlook.de>2024-06-05 18:56:47 +0200
committerChris Packham <judge.packham@gmail.com>2024-06-17 13:36:49 +1200
commit067d7743b65e4e543d7938e82c4b0a5c0db9fb45 (patch)
tree7ce8a1591561a0f9eac2c20139bb0b920021b8fc /scripts
parent0c615353476c84f680551541b7e4f9453b7ee855 (diff)
downloadcrosstool-ng-067d7743b65e4e543d7938e82c4b0a5c0db9fb45.tar.gz
crosstool-ng-067d7743b65e4e543d7938e82c4b0a5c0db9fb45.tar.bz2
crosstool-ng-067d7743b65e4e543d7938e82c4b0a5c0db9fb45.zip
Optimize zstd we build
- multithreading enabled - release mode Signed-off-by: Quentin Boswank <qubos@outlook.de>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/companion_libs/070-zstd.sh16
1 files changed, 3 insertions, 13 deletions
diff --git a/scripts/build/companion_libs/070-zstd.sh b/scripts/build/companion_libs/070-zstd.sh
index bc334142..6beffb2e 100644
--- a/scripts/build/companion_libs/070-zstd.sh
+++ b/scripts/build/companion_libs/070-zstd.sh
@@ -81,19 +81,9 @@ do_zstd_backend() {
done
CT_DoLog EXTRA "Building zstd"
- CT_DoExecLog ALL make ${CT_JOBSFLAGS} -C "${CT_SRC_DIR}/zstd/lib" libzstd.a BUILD_DIR="${PWD}" CC="${host}-gcc" AS="${host}-as" CFLAGS="${cflags}" LDFLAGS="${ldflags}"
-
- # TODO: Has to be tested
-
- #if [ "${CT_COMPLIBS_CHECK}" = "y" ]; then
- # if [ "${host}" = "${CT_BUILD}" ]; then
- # CT_DoLog EXTRA "Checking zstd"
- # CT_DoExecLog ALL make ${CT_JOBSFLAGS} -s check
- # else
- # # Cannot run host binaries on build in a canadian cross
- # CT_DoLog EXTRA "Skipping check for zstd on the host"
- # fi
- #fi
+ 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}"
+
+ # There is no library only check in zstd
CT_DoLog EXTRA "Installing zstd"
CT_DoExecLog ALL make -C "${CT_SRC_DIR}/zstd/lib" install-static install-includes BUILD_DIR="${PWD}" PREFIX="$prefix"