mirror of
https://github.com/holub/mame
synced 2025-05-14 09:58:14 +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
223 B
Bash
Executable File
13 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Test zstdcat symlink in bin/
|
|
zstdcat hello.zst
|
|
zstdcat hello.zst world
|
|
zstdcat hello world.zst
|
|
zstdcat hello.zst world.zst
|
|
|
|
# Test local zstdcat symlink
|
|
ln -s $(which zstd) ./zstdcat
|
|
./zstdcat hello.zst
|