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
This commit is contained in:
Navdeep Parhar 2016-01-26 01:02:19 +00:00
parent 1e7b9e9e68
commit 361e428888

View File

@ -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>