mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-24 05:53:30 +08:00
3279d8b9c4
rdma-core unconditionally uses pthread_spin_lock since its addition in
commit ea47e177f0
resulting in the
following build failure:
/home/autobuild/autobuild/instance-9/output-1/host/lib/gcc/sh4-buildroot-linux-uclibc/12.2.0/../../../../sh4-buildroot-linux-uclibc/bin/ld: CMakeFiles/hfi1verbs-rdmav34.dir/verbs.c.o: in function `post_recv':
verbs.c:(.text+0xc4): undefined reference to `pthread_spin_lock'
Fixes:
- http://autobuild.buildroot.org/results/a943e03b79c4cc328b7712046ecff09706045f81
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
21 lines
738 B
Plaintext
21 lines
738 B
Plaintext
config BR2_PACKAGE_RDMA_CORE
|
|
bool "rdma-core"
|
|
depends on BR2_USE_MMU # fork() used in rstream example
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 # iproute2
|
|
depends on !BR2_STATIC_LIBS # dlopen()
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
|
|
select BR2_PACKAGE_IPROUTE2 # runtime
|
|
select BR2_PACKAGE_LIBNL
|
|
help
|
|
This is the userspace components for the Linux Kernel's
|
|
drivers/infiniband subsystem.
|
|
|
|
https://github.com/linux-rdma/rdma-core
|
|
|
|
comment "rdma-core needs a toolchain w/ headers >= 3.4, NPTL, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_4 \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
|