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 fbc6892 commit d2e6746Copy full SHA for d2e6746
3 files changed
.bazelversion
@@ -1 +1 @@
1
-6.5.0
+7.0.2
swift/extractor/config/BUILD.bazel
@@ -2,7 +2,7 @@ load("//swift:rules.bzl", "swift_cc_library")
2
3
swift_cc_library(
4
name = "config",
5
- srcs = glob(["*.cpp"]),
+ srcs = [],
6
hdrs = glob(["*.h"]),
7
visibility = ["//swift:__subpackages__"],
8
)
swift/third_party/BUILD.swift-llvm-support.bazel
@@ -1,12 +1,13 @@
-load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix")
-
cc_library(
name = "swift-llvm-support",
- srcs = glob([
- "*.a",
- "*.so",
- "*.dylib",
9
- ]),
+ srcs = glob(
+ [
+ "*.a",
+ "*.so",
+ "*.dylib",
+ ],
+ allow_empty = True, # Either *.so or *.dylib will be empty
10
+ ),
11
hdrs = glob([
12
"include/**/*",
13
"stdlib/**/*",
0 commit comments