From 058bf987a3947404be5f35961541f30bedb4c008 Mon Sep 17 00:00:00 2001 From: songhexiang Date: Thu, 25 Oct 2018 08:05:49 -0400 Subject: [PATCH] complie requires -libverbs --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 162bcbc..cbd3a18 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC=gcc CFLAGS=-Wall -Werror -O2 INCLUDES= LDFLAGS= -LIBS=-pthread -lrdmacm +LIBS=-pthread -lrdmacm -libverbs SRCS=main.c client.c config.c ib.c server.c setup_ib.c sock.c OBJS=$(SRCS:.c=.o)