Upgrade to bazel 7.0.2.

This commit is contained in:
Cornelius Riemenschneider
2024-02-22 17:51:17 +01:00
parent fbc689227d
commit d2e6746e7f
3 changed files with 10 additions and 9 deletions

View File

@@ -1 +1 @@
6.5.0
7.0.2

View File

@@ -2,7 +2,7 @@ load("//swift:rules.bzl", "swift_cc_library")
swift_cc_library(
name = "config",
srcs = glob(["*.cpp"]),
srcs = [],
hdrs = glob(["*.h"]),
visibility = ["//swift:__subpackages__"],
)

View File

@@ -1,12 +1,13 @@
load("@rules_pkg//:mappings.bzl", "pkg_files", "strip_prefix")
cc_library(
name = "swift-llvm-support",
srcs = glob([
srcs = glob(
[
"*.a",
"*.so",
"*.dylib",
]),
],
allow_empty = True, # Either *.so or *.dylib will be empty
),
hdrs = glob([
"include/**/*",
"stdlib/**/*",