aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-04-23 19:00:36 -0700
committerMichael Forney <mforney@mforney.org>2019-04-23 19:00:36 -0700
commit185261f4e8fea2afbd9b75a9e2a03f902f1ab238 (patch)
treec1616824d8df6c926bd3b9b4a7de576d38fb02df /doc
parent0cdb109ed1d1064c71d27b311baa20895647eaba (diff)
doc/software: Need to disable deprecation warnings to build zstd
Diffstat (limited to 'doc')
-rw-r--r--doc/software.md7
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.