Skip to content

Instantly share code, notes, and snippets.

@byronyi
Created July 11, 2017 12:21
Show Gist options
  • Save byronyi/342d90dc3306458c21f01db57ec28f9c to your computer and use it in GitHub Desktop.
Save byronyi/342d90dc3306458c21f01db57ec28f9c to your computer and use it in GitHub Desktop.
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # OpenIB.org BSD license (MIT variant)
exports_files(["COPYING"])
cc_library(
name = "rdmacm",
hdrs = [
"include/rdma/rdma_cma.h",
"include/rdma/rdma_verbs.h",
],
defines = [
"STREAM_CLOEXEC=\\\"e\\\"",
],
srcs = [
"src/acm.c",
"src/addrinfo.c",
"src/cma.h",
"src/cma.c",
"src/indexer.h",
"src/indexer.c",
],
includes = ["include"],
deps = ["@ibverbs//:ibverbs"],
include_prefix = "rdma",
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment