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, )