diff options
-rw-r--r-- | doc/software.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/software.md b/doc/software.md index f86aa0e..6018b80 100644 --- a/doc/software.md +++ b/doc/software.md @@ -64,7 +64,8 @@ Configure with ## zstd -Builds after disabling CPU identification inline assembly. +Requires disabling CPU identification inline assembly and deprecation +warnings. ```diff diff --git a/lib/common/cpu.h b/lib/common/cpu.h @@ -81,4 +82,8 @@ index 5f0923fc..10dd7d7f 100644 * reserves ebx for use of its pic register so we must specially ``` +Build with + + make CC=/path/to/cc CFLAGS='-DZDICT_DISABLE_DEPRECATE_WARNINGS -DZBUFF_DISABLE_DEPRECATE_WARNINGS' zstd + Some tests fail, which still need to be investigated. |