mirror of
https://github.com/holub/mame
synced 2025-05-15 02:18:16 +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.
11 lines
326 B
Bash
Executable File
11 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Test --[no-]compress-literals
|
|
zstd file --no-compress-literals -1 -c | zstd -t
|
|
zstd file --no-compress-literals -19 -c | zstd -t
|
|
zstd file --no-compress-literals --fast=1 -c | zstd -t
|
|
zstd file --compress-literals -1 -c | zstd -t
|
|
zstd file --compress-literals --fast=1 -c | zstd -t
|