Skip to content

Commit 3d7491c

Browse files
authored
Use updated bullseye sysroot with fixed symlinks (#200)
Use the updated sysroots of swift-nav/swift-toolchains#27 for fixed symlinks. Tested ✅
1 parent 0237e4e commit 3d7491c

File tree

5 files changed

+19
-14
lines changed

5 files changed

+19
-14
lines changed

.bazelignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
examples/

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
module(
1212
name = "rules_swiftnav",
13-
version = "0.9.0",
13+
version = "0.10.0",
1414
compatibility_level = 1,
1515
)
1616

MODULE.bazel.lock

Lines changed: 7 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cc/repositories.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,30 +136,30 @@ def aarch64_sysroot():
136136
maybe(
137137
http_archive,
138138
name = "aarch64-sysroot",
139-
sha256 = "4e4cbbed33e78602a5f038305514307a5bd9baa6f6330f433fa4dffb3e9e9ad1",
139+
sha256 = "edb3599237a755287a3ca3c94bdd64eb7552b768e927a9d125473d0b846f91f4",
140140
build_file_content = """
141141
filegroup(
142142
name = "aarch64-sysroot",
143143
srcs = glob(["*/**"]),
144144
visibility = ["//visibility:public"],
145145
)
146146
""",
147-
url = "https://github.com/swift-nav/swift-toolchains/releases/download/bullseye-sysroot-v3/debian_bullseye_aarch64_sysroot.tar.xz",
147+
url = "https://github.com/swift-nav/swift-toolchains/releases/download/bullseye-sysroot-v4/debian_bullseye_aarch64_sysroot.tar.xz",
148148
)
149149

150150
def x86_64_sysroot():
151151
maybe(
152152
http_archive,
153153
name = "x86_64-sysroot",
154-
sha256 = "cfa444ecc4fcc858acc045e72403efd54dab734bdad4ddec30aad8826916a617",
154+
sha256 = "4235d41632c677d0c71e8e3b40abcf2b67e991e6b66a08cdf9d1e54a54de8869",
155155
build_file_content = """
156156
filegroup(
157157
name = "x86_64-sysroot",
158158
srcs = glob(["*/**"]),
159159
visibility = ["//visibility:public"],
160160
)
161161
""",
162-
url = "https://github.com/swift-nav/swift-toolchains/releases/download/bullseye-sysroot-v3/debian_bullseye_x86_64_sysroot.tar.xz",
162+
url = "https://github.com/swift-nav/swift-toolchains/releases/download/bullseye-sysroot-v4/debian_bullseye_x86_64_sysroot.tar.xz",
163163
)
164164

165165
def register_swift_cc_toolchains():

examples/small_world/MODULE.bazel.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)