> > > > Steve, > > The two steps below fail: > > # (cd librdmacm && ./autogen.sh && ./configure && make && make install) > # (cd libcxgb3 && ./autogen.sh && ./configure && make && make install) > > > with: > checking for ibv_get_device_list in -libverbs... no > configure: error: ibv_get_device_list() not found. librdmacm requires > libibverbs. > checking for ibv_get_device_list in -libverbs... no > configure: error: ibv_get_device_list() not found. libmthca requires > libibverbs. > > Should the configure script do "-libibverbs" instead of "-libverbs" ? >
no. The problem is your library search path doesn't include /usr/local/lib. Or, you didn't do an ldconfig after building libibverbs. Make sure /usr/local/lib is specified in /etc/ld.so.conf or in a file in /etc/ld.so.conf.d. Then run ldconfig. You can verify that its working be running ldconfig -v and seeing libibverbs in the path... _______________________________________________ openib-general mailing list [email protected] http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
