We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce30ee5 commit cea41e9Copy full SHA for cea41e9
utils/bazel/llvm-project-overlay/clang/BUILD.bazel
@@ -43,10 +43,7 @@ cc_binary(
43
44
gentbl(
45
name = "diagnostic_defs_gen",
46
- tbl_outs = [(
47
- "-gen-clang-diags-defs -clang-component=%s" % c,
48
- "include/clang/Basic/Diagnostic%sKinds.inc" % c,
49
- ) for c in [
+ tbl_outs = [out for c in [
50
"AST",
51
"Analysis",
52
"Comment",
@@ -60,6 +57,15 @@ gentbl(
60
57
"Refactoring",
61
58
"Sema",
62
59
"Serialization",
+ ] for out in [
+ (
+ "-gen-clang-diags-defs -clang-component=%s" % c,
63
+ "include/clang/Basic/Diagnostic%sKinds.inc" % c,
64
+ ),
65
66
+ "-gen-clang-diags-enums -clang-component=%s" % c,
67
+ "include/clang/Basic/Diagnostic%sEnums.inc" % c,
68
69
]] + [
70
(
71
"-gen-clang-diag-groups",
0 commit comments