summaryrefslogtreecommitdiffstatshomepage
path: root/build.zig
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2023-02-12 17:36:37 +0100
committerGitHub <noreply@github.com>2023-02-12 17:36:37 +0100
commit0dd1cf1b183f1502b81e4b7d8a7e3559bc597fe9 (patch)
treec8c4d6a5b1daf60f476afaba144a2ecc9897ff91 /build.zig
parentbee73b80b97e857783ca4f48ff33e9b911ea3b15 (diff)
parent5007e7330f95af05e2227946fd65ce4cbc473b6c (diff)
Merge pull request #180 from chrboesch/v1602
updated to version 011.0-dev.1602
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig8
1 files changed, 3 insertions, 5 deletions
diff --git a/build.zig b/build.zig
index 4312fb7..6d9a94d 100644
--- a/build.zig
+++ b/build.zig
@@ -8,7 +8,7 @@ const print = std.debug.print;
// When changing this version, be sure to also update README.md in two places:
// 1) Getting Started
// 2) Version Changes
-const needed_version = std.SemanticVersion.parse("0.11.0-dev.1568") catch unreachable;
+const needed_version = std.SemanticVersion.parse("0.11.0-dev.1602") catch unreachable;
const Exercise = struct {
/// main_file must have the format key_name.zig.
@@ -419,6 +419,7 @@ const exercises = [_]Exercise{
.output = "I say hello!",
},
// disabled because of https://github.com/ratfactor/ziglings/issues/163
+ // direct link: https://github.com/ziglang/zig/issues/6025
// .{
// .main_file = "084_async.zig",
// .output = "foo() A",
@@ -564,10 +565,7 @@ pub fn build(b: *Builder) void {
const file_path = std.fs.path.join(b.allocator, &[_][]const u8{
if (use_healed) "patches/healed" else "exercises", ex.main_file,
}) catch unreachable;
- const build_step = b.addExecutable(.{
- .name = base_name,
- .root_source_file = .{ .path = file_path }
- });
+ const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } });
build_step.install();