2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

zig を make 代わりに使う最初の一歩

Last updated at Posted at 2022-08-30
  1. Zig言語の zig コマンドは、ビルド関連の機能が詰まったスイスアーミーナイフである
  2. その一環として make 系の機能を持っている
  3. build.zig が Makefile に相当する
  4. .step でターゲットを作れる
  5. addSystemCommand で、シェルコマンドを実行するサブコマンドを作れる
  6. zig build --help で実装したStepを一覧表示できる
  7. Zig言語はまだ情報が少ないので、ここまで調べるまでも結構苦労した

build.zig の例

// build.zig
const std = @import("std");

pub fn build(b: *std.build.Builder) void {
    const hw_step = b.step("hw", "prints the hello world");
    {
        hw_step.dependOn(&b.addSystemCommand(&.{ "echo", "Hello" }).step);
        hw_step.dependOn(&b.addSystemCommand(&.{ "echo", "世界!" }).step);
    }

    const fb_step = b.step("fb", "fizzbuzz");
    fb_step.makeFn = fizzbuzz;

    const doall_step = b.step("fbhw", "do all");
    doall_step.dependOn(fb_step);
    doall_step.dependOn(hw_step);
}

fn fizzbuzz(_: *std.build.Step) !void {
    const stdout = std.io.getStdOut().writer();

    var i: u8 = 1;
    while (i <= 100) {
        if (i % 15 == 0) {
            try stdout.print("FizzBuzz\n", .{});
        } else if (i % 3 == 0) {
            try stdout.print("Fizz\n", .{});
        } else if (i % 5 == 0) {
            try stdout.print("Fizz\n", .{});
        } else {
            try stdout.print("{d}\n", .{i});
        }
        i += 1;
    }
}

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?