mirror of
https://github.com/holub/mame
synced 2025-05-02 04:31:01 +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
244 B
Bash
Executable File
10 lines
244 B
Bash
Executable File
#!/bin/sh
|
|
datagen -g1G > file
|
|
zstd --long=30 -1 --single-thread --no-content-size -f file
|
|
zstd -l -v file.zst
|
|
|
|
# We want to ignore stderr (its outputting "*** zstd command line interface
|
|
# 64-bits v1.5.3, by Yann Collet ***")
|
|
|
|
rm file file.zst
|