Skip to content
Snippets Groups Projects
Commit c45b27ab authored by Alexander Lobakin's avatar Alexander Lobakin
Browse files

[contrib][linux] Add huf_decompress_amd64.o target to Makefile


Commit a5f2c455 ("Huffman ASM") added a new ASM source file,
but it wasn't added to the kernel Makefile despite that it received
support for Huffman ASM according to the internal definitions. This
leads to undefined references, as huf_decompress.o now calls those
ASM functions.
Add it to the list of sources when building inside the kernel tree.
Kbuild can handle .S files just fine, so none additional rules
needed.

Fixes: a5f2c455 ("Huffman ASM")
Signed-off-by: default avatarAlexander Lobakin <alobakin@pm.me>
parent e6d62bbf
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ zstd_decompress-y := \
common/fse_decompress.o \
common/zstd_common.o \
decompress/huf_decompress.o \
decompress/huf_decompress_amd64.o \
decompress/zstd_ddict.o \
decompress/zstd_decompress.o \
decompress/zstd_decompress_block.o \
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment