Skip to content

Commit 3e07f72

Browse files
committed
bump zig sdk to 0.11.0-dev.2619+bd3e248c7
From https://github.com/marler8997/zig-unofficial-releases I also updated the "Release Process" wiki instructing how to use it. Long live Mr. Marler! The launcher got a facelift because of this error: /code/zig-linux-x86_64-0.11.0-dev.2619+bd3e248c7/lib/std/fmt.zig:2013:9: error: function called at runtime cannot return value at comptime return &buf; ^~~~~~~~~~~ referenced by: test.launcher:parseArgs: toolchain/launcher.zig:334:31 remaining reference traces hidden; use '-freference-trace' to see all reference traces Zig gets confused by the requirement in that test in a runtime context.
1 parent cb46744 commit 3e07f72

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

toolchain/defs.bzl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ URL_FORMAT_NIGHTLY = "https://ziglang.org/builds/zig-{host_platform}-{version}.{
2020
# generous enough to host the artifacts, which we use.
2121
URL_FORMAT_BAZELMIRROR = "https://mirror.bazel.build/" + URL_FORMAT_NIGHTLY.lstrip("https://")
2222

23-
_VERSION = "0.11.0-dev.2545+311d50f9d"
23+
_VERSION = "0.11.0-dev.2619+bd3e248c7"
2424

2525
_HOST_PLATFORM_SHA256 = {
26-
"linux-aarch64": "9a4582c534802454775d2c3db33c472f55285b5203032d55fb13c5a41cc31833",
27-
"linux-x86_64": "b0895fe5d83dd361bd268580c9de5d5a3c42eaf966ea049bfae93eb537a88633",
28-
"macos-aarch64": "6f9aabd01d5200fe419e5fa54846e67f8342bf4cbebb71f735a729f4daaf4190",
29-
"macos-x86_64": "4bc1f1c28637b49b4ececdc819fc3d1a5d593560b8667183f26fe861b816279b",
30-
"windows-x86_64": "7673a442a59492235157d6e6549698fd183bd90d43db74bf93ac3611cb3aad46",
26+
"linux-aarch64": "e72aedc7b9ecf20164dc5aae952499f03402383ca9fb84e72bbb8598f45f693f",
27+
"linux-x86_64": "019dbe76a9035ae4c775483ccb860a740759e22c8bbebd0234f8eaa2a7458cd7",
28+
"macos-aarch64": "3a62f5a535c532978c6a7d248a1f141004de0812fa4b432d50f5dcc9e29e2a55",
29+
"macos-x86_64": "eb4e409cc84991dc0ea8e3e550edb2254d0b15be5f59f2cff4bdc406a9b1ec46",
30+
"windows-x86_64": "01004e422e7e7d48f1df403e368422ce7150428f827f3d579cd44e28f53dba2c",
3131
}
3232

3333
_HOST_PLATFORM_EXT = {

toolchain/launcher.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ test "launcher:parseArgs" {
322322
.{
323323
.args = &[_][:0]const u8{"ar" ++ EXE},
324324
.want_result = .{
325-
.err = std.fmt.comptimePrint(usage_other ++ "\n", .{
325+
.err = comptime std.fmt.comptimePrint(usage_other ++ "\n", .{
326326
.zig_tool = "ar",
327327
.exe = EXE,
328328
}),
@@ -331,7 +331,7 @@ test "launcher:parseArgs" {
331331
.{
332332
.args = &[_][:0]const u8{"c++" ++ EXE},
333333
.want_result = .{
334-
.err = std.fmt.comptimePrint(usage_cpp ++ "\n", .{
334+
.err = comptime std.fmt.comptimePrint(usage_cpp ++ "\n", .{
335335
.zig_tool = "c++",
336336
.exe = EXE,
337337
}),

0 commit comments

Comments
 (0)