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 1226d27 commit ff087d7Copy full SHA for ff087d7
utils/bazel/llvm-project-overlay/clang/BUILD.bazel
@@ -31,6 +31,7 @@ cc_binary(
31
],
32
stamp = 0,
33
deps = [
34
+ ":support",
35
"//llvm:Support",
36
"//llvm:TableGen",
37
"//llvm:config",
@@ -1668,6 +1669,20 @@ gentbl(
1668
1669
1670
)
1671
1672
+cc_library(
1673
+ name = "support",
1674
+ srcs = glob([
1675
+ "lib/Support/*.cpp",
1676
+ ]),
1677
+ hdrs = glob([
1678
+ "include/clang/Support/*.h",
1679
1680
+ includes = ["include"],
1681
+ deps = [
1682
+ "//llvm:Support",
1683
+ ],
1684
+)
1685
+
1686
cc_library(
1687
name = "serialization",
1688
srcs = [
0 commit comments