svn commit: r294756 - head/contrib/ofed/librdmacm/examples/build/rping

Navdeep Parhar np at FreeBSD.org
Tue Jan 26 01:02:21 UTC 2016


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>


More information about the svn-src-head mailing list