diff options
author | Samuli Piippo <samuli.piippo@gmail.com> | 2021-05-25 15:40:48 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-27 13:21:38 +0100 |
commit | f32f72b29a932066826ab26196169d3f09bd450d (patch) | |
tree | adb91997c4cdc66bd218e3be8ebd510fe1f15cc7 /meta/recipes-devtools | |
parent | eccefdff6a33e3c2db0b0991e7163091a86d4617 (diff) | |
download | poky-f32f72b29a932066826ab26196169d3f09bd450d.tar.gz |
cmake-native: enabled zstd support
CMake depends on having all formats supported and build issues can
arise when zstd is not available:
https://gitlab.kitware.com/cmake/cmake/-/issues/21552
Quote from a CMake dev:
"As far as CMake's design is concerned, we have no optional formats.
All should be supported. That's why we bundle sufficiently new versions
of libarchive and libzstd. If a distro builds with an older libarchive
that doesn't have zstd support, then that is not a proper packaging of CMake."
(From OE-Core rev: 897d3695e11484cb5e62d63e4d6b0b4893605c56)
Signed-off-by: Samuli Piippo <samuli.piippo@qt.io>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/cmake/cmake-native_3.20.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/cmake/cmake-native_3.20.2.bb b/meta/recipes-devtools/cmake/cmake-native_3.20.2.bb index d91e42ef9a..335097d387 100644 --- a/meta/recipes-devtools/cmake/cmake-native_3.20.2.bb +++ b/meta/recipes-devtools/cmake/cmake-native_3.20.2.bb | |||
@@ -1,7 +1,7 @@ | |||
1 | require cmake.inc | 1 | require cmake.inc |
2 | inherit native | 2 | inherit native |
3 | 3 | ||
4 | DEPENDS += "bzip2-replacement-native xz-native zlib-native curl-native ncurses-native" | 4 | DEPENDS += "bzip2-replacement-native xz-native zlib-native curl-native ncurses-native zstd-native" |
5 | 5 | ||
6 | SRC_URI += "file://OEToolchainConfig.cmake \ | 6 | SRC_URI += "file://OEToolchainConfig.cmake \ |
7 | file://environment.d-cmake.sh \ | 7 | file://environment.d-cmake.sh \ |