diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-01-20 20:54:58 -0800 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-01-30 18:14:50 -1000 |
commit | ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7 (patch) | |
tree | f52b04d9712cf3a47ca8b549a25b328c1a7ae25c /tools/zstd | |
parent | 7534c8a2e1050e480c5b8636deaaf00b7adcb650 (diff) | |
download | openwrt-ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7.tar.gz openwrt-ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7.tar.bz2 openwrt-ec0c6c11436d233c3e1f3c1b4461a46348a1a0c7.zip |
tools/zstd: compile with cmake
It's faster and more reliable.
Removed ccache cmake build dependency as it's now implicit.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'tools/zstd')
-rw-r--r-- | tools/zstd/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/tools/zstd/Makefile b/tools/zstd/Makefile index 1107c0d92c..a0106f15f2 100644 --- a/tools/zstd/Makefile +++ b/tools/zstd/Makefile @@ -11,11 +11,16 @@ PKG_LICENSE:=BSD-3-Clause PKG_LICENSE_FILES:=LICENSE PKG_CPE_ID:=cpe:/a:facebook:zstandard +CMAKE_SOURCE_SUBDIR:=build/cmake HOST_BUILD_PARALLEL:=1 include $(INCLUDE_DIR)/host-build.mk +include $(INCLUDE_DIR)/cmake.mk -HOSTCC := $(HOSTCC_NOCACHE) -HOST_MAKE_FLAGS = PREFIX=$(HOST_BUILD_PREFIX) HAVE_ZLIB=0 HAVE_LZMA=0 HAVE_LZ4=0 +CMAKE_HOST_OPTIONS += \ + -DBUILD_TESTING=OFF \ + -DCMAKE_C_COMPILER_LAUNCHER="" \ + -DCMAKE_C_COMPILER=$(HOSTCC_NOCACHE) \ + -DZSTD_LEGACY_SUPPORT=OFF $(eval $(call HostBuild)) |