AMPI: fix mismatched free/delete[] identified by valgrind
[charm.git] / src / arch / net-linux-ppc / conv-mach-ibverbs.sh
blob1a341362057547fd1e91cf44a24a1a903b3a0cc3
1 #default ibverbs path for openib
2 if test -z "$CMK_INCDIR"
3 then
4 #openib-1.1
5 if test -f /opt/ofed/include/infiniband/verbs.h
6 then
7 CMK_INCDIR="-I/opt/ofed/include/"
8 CMK_LIBDIR="-L/opt/ofed/lib64"
9 fi
10 if test -f /usr/local/ofed/include/infiniband/verbs.h
11 then
12 CMK_INCDIR="-I/usr/local/ofed/include/"
13 CMK_LIBDIR="-L/usr/local/ofed/lib64"
15 if test -f /usr/include/infiniband/verbs.h
16 then
17 CMK_INCDIR="-I/usr/include/"
18 CMK_LIBDIR="-L/usr/lib64"
22 CMK_LIBS="$CMK_LIBS -libverbs"