mirror of
https://github.com/holub/mame
synced 2025-05-11 08:38:47 +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.
13 lines
163 B
Bash
Executable File
13 lines
163 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# motivated by issue #3523
|
|
|
|
datagen > file
|
|
mkdir out
|
|
chmod 000 out
|
|
|
|
zstd file -q --trace-file-stat -o out/file.zst
|
|
zstd -tq out/file.zst
|
|
|
|
chmod 777 out
|