Skip to content

Commit ef12a7b

Browse files
committed
try with frame pointer-enabled libc++
1 parent 1880cfe commit ef12a7b

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

WORKSPACE

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ http_archive(
224224
LLVM_VERSION = "19.1.6"
225225

226226
# We have a few variants of our clang toolchain, either improving how it's built or adding new tools.
227-
LLVM_VERSION_SUFFIX = "1"
227+
LLVM_VERSION_SUFFIX = "1.alpha"
228228

229229
# Version of the "toolchains_llvm" rule set, _not_ the version of clang/llvm.
230230
#
@@ -250,21 +250,13 @@ load("@toolchains_llvm//toolchain:rules.bzl", "llvm_toolchain")
250250
llvm_toolchain(
251251
name = "llvm_toolchain",
252252
llvm_version = LLVM_VERSION,
253-
sha256 = {
254-
"darwin-aarch64": "94ed965925dbdc25b29e6fcfa9a84b28d915d5c9da7c71405fc20bbcf8396bd1",
255-
"darwin-x86_64": "9395b07fd5018816bcaee84522d9c9386fdbefe62fdf8afff89b57e1b7095463",
256-
"linux-aarch64": "24fd3405f65ccbc39f0d14a5126ee2edb5904d7a9525ae483f34a510a1bdce3e",
257-
"linux-x86_64": "bad3d776c222c99056eba8b64c085a1e08edd783cb102e1b6eba43b78ce2fe2b",
258-
},
259253
sysroot = {
260254
"darwin-aarch64": "@sysroot_darwin_universal//:sysroot",
261255
"darwin-x86_64": "@sysroot_darwin_universal//:sysroot",
262256
"linux-x86_64": "@linux_sysroot-x86_64//:sysroot",
263257
"linux-aarch64": "@linux_sysroot-aarch64//:sysroot",
264258
},
265259
urls = {
266-
"darwin-aarch64": ["https://github.com/MaterializeInc/toolchains/releases/download/clang-{0}-{1}/darwin_aarch64.tar.zst".format(LLVM_VERSION, LLVM_VERSION_SUFFIX)],
267-
"darwin-x86_64": ["https://github.com/MaterializeInc/toolchains/releases/download/clang-{0}-{1}/darwin_x86_64.tar.zst".format(LLVM_VERSION, LLVM_VERSION_SUFFIX)],
268260
"linux-aarch64": ["https://github.com/MaterializeInc/toolchains/releases/download/clang-{0}-{1}/linux_aarch64.tar.zst".format(LLVM_VERSION, LLVM_VERSION_SUFFIX)],
269261
"linux-x86_64": ["https://github.com/MaterializeInc/toolchains/releases/download/clang-{0}-{1}/linux_x86_64.tar.zst".format(LLVM_VERSION, LLVM_VERSION_SUFFIX)],
270262
},
@@ -436,10 +428,8 @@ rust_bindgen_dependencies()
436428
bindgen_toolchains(
437429
"{0}-{1}".format(LLVM_VERSION, LLVM_VERSION_SUFFIX),
438430
{
439-
"darwin_aarch64": "sha256-wni7a1Wu6qGeNVOZOjc6ks1ACXf+RBoXu6YcSVkleos=",
440-
"darwin_x86_64": "sha256-MKjPkNE2g2nw75SkOvjnieKnTtubUKyE3/o7olQm8j0=",
441-
"linux_aarch64": "sha256-BvzsXMuiObNStcP86QwgBRDcTVBRsWUYio1iRCMhgxo=",
442-
"linux_x86_64": "sha256-9PgulfHhsOd03ZhEO7ljp2EuDafIbME1oCJ/Rj/R7pU=",
431+
"linux_aarch64": None,
432+
"linux_x86_64": None,
443433
},
444434
)
445435

0 commit comments

Comments
 (0)