mirror of
https://github.com/holub/mame
synced 2025-05-31 10:01:51 +03:00

* 3rdparty/zstd: Added Zstandard compression library version 1.5.5. * util/unzip.cpp: Added support for Zstandard compression (method 93). * util/chdcodec.cpp: Added support for Zstandard compression. * 3rdparty/flac: Always define NDEBUG to avoid log spam.
10 lines
293 B
Bash
Executable File
10 lines
293 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
GOLDEN_COMP_DIR="$ZSTD_REPO_DIR/tests/golden-compression/"
|
|
GOLDEN_DICT_DIR="$ZSTD_REPO_DIR/tests/golden-dictionaries/"
|
|
|
|
zstd -D "$GOLDEN_DICT_DIR/http-dict-missing-symbols" "$GOLDEN_COMP_DIR/http" -o http.zst
|
|
zstd -D "$GOLDEN_DICT_DIR/http-dict-missing-symbols" -t http.zst
|