Merge pull request #860 from felixhandte/zstd-lz4-support-tests

Add Default LZ4 Support When Available
This commit is contained in:
Yann Collet
2017-09-29 22:32:54 -07:00
committed by GitHub
9 changed files with 69 additions and 9 deletions
+5
View File
@@ -98,6 +98,7 @@ clean:
@$(MAKE) -C examples/ $@ > $(VOID)
@$(MAKE) -C contrib/gen_html $@ > $(VOID)
@$(RM) zstd$(EXT) zstdmt$(EXT) tmp*
@$(RM) -r lz4
@echo Cleaning completed
#------------------------------------------------------------------------------
@@ -286,6 +287,10 @@ gpp6install: apt-add-repo
clang38install:
APT_PACKAGES="clang-3.8" $(MAKE) apt-install
# Ubuntu 14.04 ships a too-old lz4
lz4install:
[ -e lz4 ] || git clone https://github.com/lz4/lz4 && sudo $(MAKE) -C lz4 install
endif