Home
last modified time | relevance | path

Searched +full:libzstd +full:- +full:nomt (Results 1 – 7 of 7) sorted by relevance

/external/zstd/lib/
DMakefile5 # This source code is licensed under both the BSD-style license (found in the
8 # You may select, at your option, one of the above-listed licenses.
12 lib-release:
20 # Input variables for libzstd.mk
31 include libzstd.mk
57 # Note: by default, the static library is built single-threaded and dynamic library is built
58 # multi-threaded. It is possible to force multi or single threaded builds by appending
59 # -mt or -nomt to the build target (like lib-mt for multi-threaded, lib-nomt for single-threaded).
62 CPPFLAGS_DYNLIB += -DZSTD_MULTITHREAD # dynamic library build defaults to multi-threaded
63 LDFLAGS_DYNLIB += -pthread
[all …]
D.gitignore2 libzstd.pc
3 libzstd-nomt
DREADME.md4 The __lib__ directory is split into several sub-directories,
10 …ventions](https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html#Makefile-Conventi…
12 - `make` : generates both static and dynamic libraries
13 - `make install` : install libraries and headers in target system directories
15 `libzstd` default scope is pretty large, including compression, decompression, dictionary builder,
22 …by default the dynamic library is multithreaded and static library is single-threaded (for compati…
25 - set build macro `ZSTD_MULTITHREAD` (`-DZSTD_MULTITHREAD` for `gcc`)
26 - for POSIX systems : compile with pthread (`-pthread` compilation flag for `gcc`)
29 - Force enable multithreading on both dynamic and static libraries by appending `-mt` to the target…
30 - Force disable multithreading on both dynamic and static libraries by appending `-nomt` to the tar…
[all …]
/external/zstd/.github/workflows/
Dcommit.yml5 - dev
6 permissions: read-all
8 short-tests-0:
9 runs-on: ubuntu-latest
12 image: fbopensource/zstd-circleci-primary:0.0.1
13 options: --entrypoint /bin/bash
15 - uses: actions/checkout@v4
16 - name: Install Dependencies
18 sudo apt-get update
19 sudo apt-get install libcurl4-gnutls-dev
[all …]
/external/zstd/programs/
DMakefile5 # This source code is licensed under both the BSD-style license (found in the
8 # You may select, at your option, one of the above-listed licenses.
10 # zstd : Command Line Utility, supporting gzip-like arguments
11 # zstd32 : Same as zstd, but forced to compile in 32-bits mode
12 # zstd-nolegacy : zstd without support of decompression of legacy versions
13 # zstd-small : minimal zstd without dictionary builder and benchmark
14 # zstd-compress : compressor-only version of zstd
15 # zstd-decompress : decompressor-only version of zstd
19 zstd-release:
22 include $(LIBZSTD_MK_DIR)/libzstd.mk
[all …]
/external/zstd/.circleci/
Dconfig.yml5 short-tests-0:
9 - image: fbopensource/zstd-circleci-primary:0.0.1
11 - checkout
12 - run:
15 ./tests/test-license.py
16 cc -v
17 CFLAGS="-O0 -Werror -pedantic" make allmost; make clean
20 make -j regressiontest; make clean
24 short-tests-1:
26 - image: fbopensource/zstd-circleci-primary:0.0.1
[all …]
/external/zstd/
DCHANGELOG6 lib: reduce binary size with selective built-time exclusion, by @felixhandte
11 lib: fix zdict prototype mismatch in static_only mode, by @ldv-alt
12 lib: fix several bugs in magicless-format decoding, by @embg
13 cli: add common compressed file types to `--exclude-compressed`` by @daniellerozenblit
14 cli: fix mixing `-c` and `-o` commands with `--rm`, by @Cyan4973
15 cli: fix erroneous exclusion of hidden files with `--output-dir-mirror` by @felixhandte
20 …rovements by @terrelln, @sighingnow, @gjasny, @JohanMabille, @Saverio976, @gruenich, @teo-tsirpanis
22 build: fix cross-compiling for AArch64 with lld by @jcelerier
31 port: risc-v support validation in CI, by @Cyan4973
34 port: HP-UX compatibility, by @likema
[all …]