Files
2023-05-14 11:44:44 +00:00

28 lines
558 B
Plaintext

cc_binary_host {
name: "clang-tblgen",
defaults: ["llvm-defaults"],
srcs: ["*.cpp"],
static_libs: [
"libLLVMTableGen",
"libLLVMSupport",
],
cflags: [
"-Wno-implicit-fallthrough",
// NeonEmitter.cpp has several -Wimplicit-fallthrough.
],
tidy_checks: [
"-google-runtime-member-string-references",
],
target: {
windows: {
host_ldlibs: [
"-limagehlp",
"-lpsapi",
"-lversion",
],
},
},
}