8 lines
154 B
Python
8 lines
154 B
Python
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "pthread",
|
|
linkopts = ["-lpthread"],
|
|
visibility = ["//visibility:public"],
|
|
)
|