blob: f70a1001ffade564bcc7bf0b94afa2d0a8a6d95d [file] [log] [blame] [edit]
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
cc_binary(
name = "noblur64",
srcs = glob([
"*.c",
"*.h",
]),
copts = [
"-Wall",
"-shared",
"-fPIC",
"-Os",
"-fshort-wchar",
"-m64",
],
linkshared = True,
)