mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
Blake3 unconditionally enables C++ support, which unconditionally requires C++20 when built with cmake >= 3.12, even when this is not required. Fixing this does not look trivial, and rather than botching the build, just require C++20, available from gcc 8.x onward. Signed-off-by: Yann E. MORIN <yann.morin@orange.com> Cc: Heiko Thiery <heiko.thiery@gmail.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
9 lines
217 B
Plaintext
9 lines
217 B
Plaintext
config BR2_PACKAGE_BLAKE3
|
|
bool "blake3"
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_8 # C++20
|
|
help
|
|
BLAKE3 is a cryptographic hash function.
|
|
|
|
https://github.com/BLAKE3-team/BLAKE3
|