aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/simple/Makefile.inc
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2024-01-22 23:33:39 +0800
committerJia Tan <jiat0218@gmail.com>2024-01-23 23:05:41 +0800
commit440a2eccb082dc13400c09e22308a58fef85146c (patch)
tree9fad0290823c312e34e85911cf4f8677325480db /src/liblzma/simple/Makefile.inc
parentDocs: Update .xz file format specification to 1.2.0. (diff)
downloadxz-440a2eccb082dc13400c09e22308a58fef85146c.tar.xz
liblzma: Add RISC-V BCJ filter.
The new Filter ID is 0x0B. Thanks to Chien Wong <m@xv97.com> for the initial version of the Filter, the xz CLI updates, and the Autotools build system modifications. Thanks to Igor Pavlov for his many contributions to the design of the filter.
Diffstat (limited to 'src/liblzma/simple/Makefile.inc')
-rw-r--r--src/liblzma/simple/Makefile.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/liblzma/simple/Makefile.inc b/src/liblzma/simple/Makefile.inc
index dc092f95..360db723 100644
--- a/src/liblzma/simple/Makefile.inc
+++ b/src/liblzma/simple/Makefile.inc
@@ -49,3 +49,7 @@ endif
if COND_FILTER_SPARC
liblzma_la_SOURCES += simple/sparc.c
endif
+
+if COND_FILTER_RISCV
+liblzma_la_SOURCES += simple/riscv.c
+endif