1
0
mirror of https://github.com/facebook/zstd.git synced 2025-08-01 09:47:01 +03:00

Add a method for checking if ZSTD was compiled with flags that impact determinism

This commit is contained in:
Nick Terrell
2025-03-06 17:31:57 -05:00
committed by Nick Terrell
parent 99cf130cfc
commit 0de4991942
4 changed files with 44 additions and 1 deletions

View File

@ -695,7 +695,10 @@ static void printVersion(void)
#ifdef PLATFORM_POSIX_VERSION
DISPLAYOUT("PLATFORM_POSIX_VERSION defined: %ldL\n", (long) PLATFORM_POSIX_VERSION);
#endif
} }
if (!ZSTD_isDeterministicBuild()) {
DISPLAYOUT("non-deterministic build\n");
} } }
}
#define ZSTD_NB_STRATEGIES 9