[openib-general] Automated userspace build error
Roland Dreier
rolandd at cisco.com
Tue Oct 25 15:09:42 PDT 2005
> checking dynamic linker charactericonfigure: error:
> ibv_get_devices() not found. libibcm requires libibcm.
The last error seeming like a circular dependency is just a typo,
fixed by the following patch (already checked in). As for why your
build is failing, it seems that the libibcm configure is not finding
an install of libibverbs. Without knowing what your setup is like,
it's hard to speculate why that might be.
- R.
--- libibcm/configure.in (revision 3861)
+++ libibcm/configure.in (working copy)
@@ -26,7 +26,7 @@ dnl Checks for libraries
if test "$disable_libcheck" != "yes"
then
AC_CHECK_LIB(ibverbs, ibv_get_devices, [],
- AC_MSG_ERROR([ibv_get_devices() not found. libibcm requires libibcm.]))
+ AC_MSG_ERROR([ibv_get_devices() not found. libibcm requires libibverbs.]))
AC_CHECK_LIB(ibat, ib_at_route_by_ip, [],
AC_MSG_ERROR([ib_at_route_by_ip() not found. libibcm requires libat.]))
fi
More information about the general
mailing list