Date: Tue, 26 Jan 2016 01:02:20 +0000 (UTC) From: Navdeep Parhar <np@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r294756 - head/contrib/ofed/librdmacm/examples/build/rping Message-ID: <201601260102.u0Q12KkD008703@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: np Date: Tue Jan 26 01:02:19 2016 New Revision: 294756 URL: https://svnweb.freebsd.org/changeset/base/294756 Log: Use LIBADD instead of LDADD in rping's Makefile and add libcxgb4 (the userspace iWARP library for cxgbe) to the list of libraries. rping using the libcxgb4 + iw_cxgbe combo was tested with T5 hardware. Obtained from: Chelsio Communications Modified: head/contrib/ofed/librdmacm/examples/build/rping/Makefile Modified: head/contrib/ofed/librdmacm/examples/build/rping/Makefile ============================================================================== --- head/contrib/ofed/librdmacm/examples/build/rping/Makefile Tue Jan 26 00:22:02 2016 (r294755) +++ head/contrib/ofed/librdmacm/examples/build/rping/Makefile Tue Jan 26 01:02:19 2016 (r294756) @@ -5,7 +5,8 @@ PROG= rping MAN= SRCS= rping.c -LDADD+= -libverbs -lrdmacm -lpthread -LDADD+= -lmlx4 +LIBADD+= ibverbs rdmacm pthread +LIBADD+= mlx4 +LIBADD+= cxgb4 .include <bsd.prog.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601260102.u0Q12KkD008703>