Skip to content

Commit 18ed9ee

Browse files
committed
Use updated bullseye sysroot with fixed symlinks
1 parent 1ae7bb5 commit 18ed9ee

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.bazelignore

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

MODULE.bazel.lock

Lines changed: 6 additions & 2 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 = "d4f19fe984cfc413d5e7041c44241f536b33b76a8b49569edbcfdc0d405d30ee",
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-beta4/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 = "0b102b840f5d93072b8dd3049e7b231092e9d354b855c3beac46b4ecfd718916",
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-beta4/debian_bullseye_x86_64_sysroot.tar.xz",
163163
)
164164

165165
def register_swift_cc_toolchains():

0 commit comments

Comments
 (0)