mirror of
https://github.com/holub/mame
synced 2025-07-15 22:45:02 +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
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
zstdname=$(basename $0)
|
|
|
|
if [ -z "$EXEC_PREFIX" ]; then
|
|
"$ZSTD_SYMLINK_DIR/$zstdname" $@
|
|
else
|
|
$EXEC_PREFIX "$ZSTD_SYMLINK_DIR/$zstdname" $@
|
|
fi
|