]> Git Repo - buildroot-mgba.git/commitdiff
package/bcc: add missing dependencies to comment
authorYann E. MORIN <[email protected]>
Sun, 9 Jun 2024 19:55:19 +0000 (21:55 +0200)
committerThomas Petazzoni <[email protected]>
Fri, 12 Jul 2024 14:01:48 +0000 (16:01 +0200)
Since its inception in 146498d13c48 (package/bcc: new package), not all
the dependencies of bcc are mirrored in the comment to be displayed when
those dependencies are not met.

Fix that by adding the missing pieces:
  - wchar,
  - threads
  - dynamic libs,

Signed-off-by: Yann E. MORIN <[email protected]>
Cc: Jugurtha BELKALEM <[email protected]>
Cc: Romain Naour <[email protected]>
Cc: Arnout Vandecappelle (Essensium/Mind) <[email protected]>
Signed-off-by: Thomas Petazzoni <[email protected]>
package/bcc/Config.in

index b91e0e5ee3d71744e38e75a59d2607097184304f..bf46f07d936125368b139b54b4981c97d7ca4bc2 100644 (file)
@@ -38,8 +38,13 @@ config BR2_PACKAGE_BCC
          https://github.com/iovisor/bcc
          http://www.ebpf.io
 
-comment "bcc needs a glibc toolchain, C++, gcc >= 7, host gcc >= 7"
+comment "bcc needs a glibc toolchain, C++, wchar, threads, dynamic libs, gcc >= 7, host gcc >= 7"
        depends on BR2_PACKAGE_LLVM_ARCH_SUPPORTS
        depends on BR2_USE_MMU
-       depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_INSTALL_LIBSTDCPP \
-               || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 || !BR2_HOST_GCC_AT_LEAST_7
+       depends on !BR2_TOOLCHAIN_USES_GLIBC \
+               || !BR2_TOOLCHAIN_GCC_AT_LEAST_7 \
+               || !BR2_INSTALL_LIBSTDCPP \
+               || !BR2_HOST_GCC_AT_LEAST_7 \
+               || !BR2_USE_WCHAR \
+               || !BR2_TOOLCHAIN_HAS_THREADS \
+               || BR2_STATIC_LIBS
This page took 0.028932 seconds and 4 git commands to generate.