mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Drop util-linux dependency, libsmartcols is no longer used. Bump GCC requirement from 4.9 to 13 for gnu2x and C23 enum underlying types support. See the release note of the new version: https://github.com/DPDK/grout/releases/tag/v0.15.0 Signed-off-by: Maxime Leroy <maxime@leroys.fr> Reviewed-by: Vincent Jardin <vjardin@free.fr> Signed-off-by: Julien Olivain <ju.o@free.fr>
28 lines
1013 B
Plaintext
28 lines
1013 B
Plaintext
config BR2_PACKAGE_GROUT
|
|
bool "grout"
|
|
depends on BR2_PACKAGE_DPDK_ARCH_SUPPORTS # dpdk
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # dpdk
|
|
depends on BR2_USE_MMU # dpdk, numactl, libecoli
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_13 # C23 enum underlying types
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19 # dpdk
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC # dpdk
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC # numactl
|
|
depends on !BR2_STATIC_LIBS # libecoli
|
|
depends on BR2_USE_WCHAR # libecoli
|
|
select BR2_PACKAGE_DPDK
|
|
select BR2_PACKAGE_LIBEVENT
|
|
select BR2_PACKAGE_NUMACTL
|
|
select BR2_PACKAGE_LIBECOLI
|
|
select BR2_PACKAGE_LIBMNL
|
|
help
|
|
Graph router based on DPDK
|
|
|
|
comment "grout needs a glibc toolchain w/ dynamic library, threads, wchar, gcc >= 13, headers >= 4.19"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_DPDK_ARCH_SUPPORTS
|
|
depends on BR2_TOOLCHAIN_HAS_ATOMIC
|
|
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_USES_GLIBC || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_13 || \
|
|
!BR2_TOOLCHAIN_HEADERS_AT_LEAST_4_19
|