• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_binary_host {
2    name: "clang-tblgen",
3    defaults: ["llvm-defaults"],
4    srcs: ["*.cpp"],
5
6    static_libs: [
7        "libLLVMTableGen",
8        "libLLVMSupport",
9    ],
10
11    cflags: [
12        "-Wno-implicit-fallthrough",
13        // NeonEmitter.cpp has several -Wimplicit-fallthrough.
14    ],
15    tidy_checks: [
16        "-google-runtime-member-string-references",
17    ],
18    target: {
19        windows: {
20            host_ldlibs: [
21                "-limagehlp",
22                "-lpsapi",
23                "-lversion",
24            ],
25        },
26    },
27}
28