const io = @import("io.zig"); const mem = @import("mem.zig"); const debug = @import("debug.zig"); const assert = debug.assert; const List = @import("list.zig").List; const HashMap = @import("hash_map.zig").HashMap; const Allocator = @import("mem.zig").Allocator; const os = @import("os/index.zig"); const StdIo = os.ChildProcess.StdIo; const Term = os.ChildProcess.Term; const BufSet = @import("buf_set.zig").BufSet; const BufMap = @import("buf_map.zig").BufMap; const fmt_lib = @import("fmt.zig"); error ExtraArg; error UncleanExit; error InvalidStepName; error DependencyLoopDetected; error NoCompilerFound; error NeedAnObject; pub const Builder = struct { uninstall_tls: TopLevelStep, have_uninstall_step: bool, allocator: &Allocator, lib_paths: List([]const u8), include_paths: List([]const u8), rpaths: List([]const u8), user_input_options: UserInputOptionsMap, available_options_map: AvailableOptionsMap, available_options_list: List(AvailableOption), verbose: bool, invalid_user_input: bool, zig_exe: []const u8, default_step: &Step, env_map: BufMap, top_level_steps: List(&TopLevelStep), prefix: []const u8, lib_dir: []const u8, out_dir: []u8, installed_files: List([]const u8), build_root: []const u8, const UserInputOptionsMap = HashMap([]const u8, UserInputOption, mem.hash_slice_u8, mem.eql_slice_u8); const AvailableOptionsMap = HashMap([]const u8, AvailableOption, mem.hash_slice_u8, mem.eql_slice_u8); const AvailableOption = struct { name: []const u8, type_id: TypeId, description: []const u8, }; const UserInputOption = struct { name: []const u8, value: UserValue, used: bool, }; const UserValue = enum { Flag, Scalar: []const u8, List: List([]const u8), }; const TypeId = enum { Bool, Int, Float, String, List, }; const TopLevelStep = struct { step: Step, description: []const u8, }; pub fn init(allocator: &Allocator, zig_exe: []const u8, build_root: []const u8) -> Builder { var self = Builder { .zig_exe = zig_exe, .build_root = build_root, .verbose = false, .invalid_user_input = false, .allocator = allocator, .lib_paths = List([]const u8).init(allocator), .include_paths = List([]const u8).init(allocator), .rpaths = List([]const u8).init(allocator), .user_input_options = UserInputOptionsMap.init(allocator), .available_options_map = AvailableOptionsMap.init(allocator), .available_options_list = List(AvailableOption).init(allocator), .top_level_steps = List(&TopLevelStep).init(allocator), .default_step = undefined, .env_map = %%os.getEnvMap(allocator), .prefix = undefined, .lib_dir = undefined, .out_dir = %%os.getCwd(allocator), .installed_files = List([]const u8).init(allocator), .uninstall_tls = TopLevelStep { .step = Step.init("uninstall", allocator, makeUninstall), .description = "Remove build artifacts from prefix path", }, .have_uninstall_step = false, }; self.processNixOSEnvVars(); self.default_step = self.step("default", "Build the project"); return self; } pub fn deinit(self: &Builder) { self.allocator.free(self.out_dir); self.lib_paths.deinit(); self.include_paths.deinit(); self.rpaths.deinit(); self.env_map.deinit(); self.top_level_steps.deinit(); } pub fn setInstallPrefix(self: &Builder, maybe_prefix: ?[]const u8) { self.prefix = maybe_prefix ?? "/usr/local"; // TODO better default self.lib_dir = %%os.path.join(self.allocator, self.prefix, "lib"); } pub fn addExecutable(self: &Builder, name: []const u8, root_src: []const u8) -> &LibOrExeStep { const exe = %%self.allocator.create(LibOrExeStep); *exe = LibOrExeStep.initExecutable(self, name, root_src); return exe; } pub fn addObject(self: &Builder, name: []const u8, root_src: []const u8) -> &ObjectStep { const obj_step = %%self.allocator.create(ObjectStep); *obj_step = ObjectStep.init(self, name, root_src); return obj_step; } pub fn addSharedLibrary(self: &Builder, name: []const u8, root_src: []const u8, ver: &const Version) -> &LibOrExeStep { const lib_step = %%self.allocator.create(LibOrExeStep); *lib_step = LibOrExeStep.initSharedLibrary(self, name, root_src, ver); return lib_step; } pub fn addStaticLibrary(self: &Builder, name: []const u8, root_src: []const u8) -> &LibOrExeStep { const lib_step = %%self.allocator.create(LibOrExeStep); *lib_step = LibOrExeStep.initStaticLibrary(self, name, root_src); return lib_step; } pub fn addTest(self: &Builder, root_src: []const u8) -> &TestStep { const test_step = %%self.allocator.create(TestStep); *test_step = TestStep.init(self, root_src); return test_step; } pub fn addAssemble(self: &Builder, name: []const u8, src: []const u8) -> &AsmStep { const asm_step = %%self.allocator.create(AsmStep); *asm_step = AsmStep.init(self, name, src); return asm_step; } pub fn addLinkExecutable(self: &Builder, name: []const u8) -> &LinkStep { const exe = %%self.allocator.create(LinkStep); *exe = LinkStep.initExecutable(self, name); return exe; } pub fn addLinkStaticLibrary(self: &Builder, name: []const u8) -> &LinkStep { const exe = %%self.allocator.create(LinkStep); *exe = LinkStep.initStaticLibrary(self, name); return exe; } pub fn addLinkSharedLibrary(self: &Builder, name: []const u8, ver: &const Version) -> &LinkStep { const exe = %%self.allocator.create(LinkStep); *exe = LinkStep.initSharedLibrary(self, name, ver); return exe; } pub fn addCStaticLibrary(self: &Builder, name: []const u8) -> &CLibrary { const lib = %%self.allocator.create(CLibrary); *lib = CLibrary.initStatic(self, name); return lib; } pub fn addCSharedLibrary(self: &Builder, name: []const u8, ver: &const Version) -> &CLibrary { const lib = %%self.allocator.create(CLibrary); *lib = CLibrary.initShared(self, name, ver); return lib; } pub fn addCExecutable(self: &Builder, name: []const u8) -> &CExecutable { const exe = %%self.allocator.create(CExecutable); *exe = CExecutable.init(self, name); return exe; } pub fn addCommand(self: &Builder, cwd: []const u8, env_map: &const BufMap, path: []const u8, args: []const []const u8) -> &CommandStep { const cmd = %%self.allocator.create(CommandStep); *cmd = CommandStep.init(self, cwd, env_map, path, args); return cmd; } pub fn addWriteFile(self: &Builder, file_path: []const u8, data: []const u8) -> &WriteFileStep { const write_file_step = %%self.allocator.create(WriteFileStep); *write_file_step = WriteFileStep.init(self, file_path, data); return write_file_step; } pub fn addLog(self: &Builder, comptime format: []const u8, args: ...) -> &LogStep { const data = self.fmt(format, args); const log_step = %%self.allocator.create(LogStep); *log_step = LogStep.init(self, data); return log_step; } pub fn addRemoveDirTree(self: &Builder, dir_path: []const u8) -> &RemoveDirStep { const remove_dir_step = %%self.allocator.create(RemoveDirStep); *remove_dir_step = RemoveDirStep.init(self, dir_path); return remove_dir_step; } pub fn version(self: &const Builder, major: u32, minor: u32, patch: u32) -> Version { Version { .major = major, .minor = minor, .patch = patch, } } pub fn addCIncludePath(self: &Builder, path: []const u8) { %%self.include_paths.append(path); } pub fn addRPath(self: &Builder, path: []const u8) { %%self.rpaths.append(path); } pub fn addLibPath(self: &Builder, path: []const u8) { %%self.lib_paths.append(path); } pub fn make(self: &Builder, step_names: []const []const u8) -> %void { var wanted_steps = List(&Step).init(self.allocator); defer wanted_steps.deinit(); if (step_names.len == 0) { %%wanted_steps.append(&self.default_step); } else { for (step_names) |step_name| { const s = %return self.getTopLevelStepByName(step_name); %%wanted_steps.append(s); } } for (wanted_steps.toSliceConst()) |s| { %return self.makeOneStep(s); } } pub fn getUninstallStep(self: &Builder) -> &Step { if (self.have_uninstall_step) return &self.uninstall_tls.step; %%self.top_level_steps.append(&self.uninstall_tls); self.have_uninstall_step = true; return &self.uninstall_tls.step; } fn makeUninstall(uninstall_step: &Step) -> %void { const uninstall_tls = @fieldParentPtr(TopLevelStep, "step", uninstall_step); const self = @fieldParentPtr(Builder, "uninstall_tls", uninstall_tls); for (self.installed_files.toSliceConst()) |installed_file| { _ = os.deleteFile(self.allocator, installed_file); } // TODO remove empty directories } fn makeOneStep(self: &Builder, s: &Step) -> %void { if (s.loop_flag) { %%io.stderr.printf("Dependency loop detected:\n {}\n", s.name); return error.DependencyLoopDetected; } s.loop_flag = true; for (s.dependencies.toSlice()) |dep| { self.makeOneStep(dep) %% |err| { if (err == error.DependencyLoopDetected) { %%io.stderr.printf(" {}\n", s.name); } return err; }; } s.loop_flag = false; %return s.make(); } fn getTopLevelStepByName(self: &Builder, name: []const u8) -> %&Step { for (self.top_level_steps.toSliceConst()) |top_level_step| { if (mem.eql(u8, top_level_step.step.name, name)) { return &top_level_step.step; } } %%io.stderr.printf("Cannot run step '{}' because it does not exist.", name); return error.InvalidStepName; } fn processNixOSEnvVars(self: &Builder) { if (const nix_cflags_compile ?= os.getEnv("NIX_CFLAGS_COMPILE")) { var it = mem.split(nix_cflags_compile, ' '); while (true) { const word = it.next() ?? break; if (mem.eql(u8, word, "-isystem")) { const include_path = it.next() ?? { %%io.stderr.printf("Expected argument after -isystem in NIX_CFLAGS_COMPILE\n"); break; }; self.addCIncludePath(include_path); } else { %%io.stderr.printf("Unrecognized C flag from NIX_CFLAGS_COMPILE: {}\n", word); break; } } } if (const nix_ldflags ?= os.getEnv("NIX_LDFLAGS")) { var it = mem.split(nix_ldflags, ' '); while (true) { const word = it.next() ?? break; if (mem.eql(u8, word, "-rpath")) { const rpath = it.next() ?? { %%io.stderr.printf("Expected argument after -rpath in NIX_LDFLAGS\n"); break; }; self.addRPath(rpath); } else if (word.len > 2 and word[0] == '-' and word[1] == 'L') { const lib_path = word[2...]; self.addLibPath(lib_path); } else { %%io.stderr.printf("Unrecognized C flag from NIX_LDFLAGS: {}\n", word); break; } } } } pub fn option(self: &Builder, comptime T: type, name: []const u8, description: []const u8) -> ?T { const type_id = comptime typeToEnum(T); const available_option = AvailableOption { .name = name, .type_id = type_id, .description = description, }; if (const _ ?= %%self.available_options_map.put(name, available_option)) { debug.panic("Option '{}' declared twice", name); } %%self.available_options_list.append(available_option); const entry = self.user_input_options.get(name) ?? return null; entry.value.used = true; switch (type_id) { TypeId.Bool => switch (entry.value.value) { UserValue.Flag => return true, UserValue.Scalar => |s| { if (mem.eql(u8, s, "true")) { return true; } else if (mem.eql(u8, s, "false")) { return false; } else { %%io.stderr.printf("Expected -D{} to be a boolean, but received '{}'\n", name, s); self.markInvalidUserInput(); return null; } }, UserValue.List => { %%io.stderr.printf("Expected -D{} to be a boolean, but received a list.\n", name); self.markInvalidUserInput(); return null; }, }, TypeId.Int => debug.panic("TODO integer options to build script"), TypeId.Float => debug.panic("TODO float options to build script"), TypeId.String => switch (entry.value.value) { UserValue.Flag => { %%io.stderr.printf("Expected -D{} to be a string, but received a boolean.\n", name); self.markInvalidUserInput(); return null; }, UserValue.List => { %%io.stderr.printf("Expected -D{} to be a string, but received a list.\n", name); self.markInvalidUserInput(); return null; }, UserValue.Scalar => |s| return s, }, TypeId.List => debug.panic("TODO list options to build script"), } } pub fn step(self: &Builder, name: []const u8, description: []const u8) -> &Step { const step_info = %%self.allocator.create(TopLevelStep); *step_info = TopLevelStep { .step = Step.initNoOp(name, self.allocator), .description = description, }; %%self.top_level_steps.append(step_info); return &step_info.step; } pub fn addUserInputOption(self: &Builder, name: []const u8, value: []const u8) -> bool { if (var prev_value ?= %%self.user_input_options.put(name, UserInputOption { .name = name, .value = UserValue.Scalar { value }, .used = false, })) { switch (prev_value.value) { UserValue.Scalar => |s| { var list = List([]const u8).init(self.allocator); %%list.append(s); %%list.append(value); %%self.user_input_options.put(name, UserInputOption { .name = name, .value = UserValue.List { list }, .used = false, }); }, UserValue.List => |*list| { %%list.append(value); %%self.user_input_options.put(name, UserInputOption { .name = name, .value = UserValue.List { *list }, .used = false, }); }, UserValue.Flag => { %%io.stderr.printf("Option '-D{}={}' conflicts with flag '-D{}'.\n", name, value, name); return true; }, } } return false; } pub fn addUserInputFlag(self: &Builder, name: []const u8) -> bool { if (const prev_value ?= %%self.user_input_options.put(name, UserInputOption { .name = name, .value = UserValue.Flag, .used = false, })) { switch (prev_value.value) { UserValue.Scalar => |s| { %%io.stderr.printf("Flag '-D{}' conflicts with option '-D{}={}'.\n", name, name, s); return true; }, UserValue.List => { %%io.stderr.printf("Flag '-D{}' conflicts with multiple options of the same name.\n", name); return true; }, UserValue.Flag => {}, } } return false; } fn typeToEnum(comptime T: type) -> TypeId { if (@isInteger(T)) { TypeId.Int } else if (@isFloat(T)) { TypeId.Float } else switch (T) { bool => TypeId.Bool, []const u8 => TypeId.String, []const []const u8 => TypeId.List, else => @compileError("Unsupported type: " ++ @typeName(T)), } } fn markInvalidUserInput(self: &Builder) { self.invalid_user_input = true; } pub fn typeIdName(id: TypeId) -> []const u8 { return switch (id) { TypeId.Bool => "bool", TypeId.Int => "int", TypeId.Float => "float", TypeId.String => "string", TypeId.List => "list", }; } pub fn validateUserInputDidItFail(self: &Builder) -> bool { // make sure all args are used var it = self.user_input_options.iterator(); while (true) { const entry = it.next() ?? break; if (!entry.value.used) { %%io.stderr.printf("Invalid option: -D{}\n\n", entry.key); self.markInvalidUserInput(); } } return self.invalid_user_input; } fn spawnChild(self: &Builder, exe_path: []const u8, args: []const []const u8) -> %void { return self.spawnChildEnvMap(&self.env_map, exe_path, args); } fn spawnChildEnvMap(self: &Builder, env_map: &const BufMap, exe_path: []const u8, args: []const []const u8) -> %void { if (self.verbose) { %%io.stderr.printf("{}", exe_path); for (args) |arg| { %%io.stderr.printf(" {}", arg); } %%io.stderr.printf("\n"); } var child = os.ChildProcess.spawn(exe_path, args, env_map, StdIo.Ignore, StdIo.Inherit, StdIo.Inherit, self.allocator) %% |err| { %%io.stderr.printf("Unable to spawn {}: {}\n", exe_path, @errorName(err)); return err; }; const term = child.wait() %% |err| { %%io.stderr.printf("Unable to spawn {}: {}\n", exe_path, @errorName(err)); return err; }; switch (term) { Term.Clean => |code| { if (code != 0) { %%io.stderr.printf("Process {} exited with error code {}\n", exe_path, code); return error.UncleanExit; } }, else => { %%io.stderr.printf("Process {} terminated unexpectedly\n", exe_path); return error.UncleanExit; }, }; } pub fn installCLibrary(self: &Builder, lib: &CLibrary) -> &InstallCLibraryStep { const install_step = %%self.allocator.create(InstallCLibraryStep); *install_step = InstallCLibraryStep.init(self, lib); install_step.step.dependOn(&lib.step); return install_step; } ///::dest_rel_path is relative to prefix path pub fn installFile(self: &Builder, src_path: []const u8, dest_rel_path: []const u8) -> &InstallFileStep { const full_dest_path = %%os.path.join(self.allocator, self.prefix, dest_rel_path); self.addInstalledFile(full_dest_path); const install_step = %%self.allocator.create(InstallFileStep); *install_step = InstallFileStep.init(self, src_path, full_dest_path); return install_step; } pub fn addInstalledFile(self: &Builder, full_path: []const u8) { _ = self.getUninstallStep(); %%self.installed_files.append(full_path); } fn copyFile(self: &Builder, source_path: []const u8, dest_path: []const u8) { os.copyFile(self.allocator, source_path, dest_path) %% |err| { debug.panic("Unable to copy {} to {}: {}", source_path, dest_path, @errorName(err)); }; } fn pathFromRoot(self: &Builder, rel_path: []const u8) -> []u8 { return %%os.path.resolve(self.allocator, self.build_root, rel_path); } pub fn fmt(self: &Builder, comptime format: []const u8, args: ...) -> []u8 { return %%fmt_lib.allocPrint(self.allocator, format, args); } }; const Version = struct { major: u32, minor: u32, patch: u32, }; const CrossTarget = struct { arch: Arch, os: Os, environ: Environ, }; const Target = enum { Native, Cross: CrossTarget, pub fn oFileExt(self: &const Target) -> []const u8 { const environ = switch (*self) { Target.Native => @compileVar("environ"), Target.Cross => |t| t.environ, }; return switch (environ) { Environ.msvc => ".obj", else => ".o", }; } pub fn exeFileExt(self: &const Target) -> []const u8 { const target_os = switch (*self) { Target.Native => @compileVar("os"), Target.Cross => |t| t.os, }; return switch (target_os) { Os.windows => ".exe", else => "", }; } }; const LinkerScript = enum { None, Embed: []const u8, Path: []const u8, }; pub const LibOrExeStep = struct { step: Step, builder: &Builder, root_src: []const u8, name: []const u8, target: Target, linker_script: LinkerScript, link_libs: BufSet, verbose: bool, release: bool, static: bool, output_path: ?[]const u8, kind: Kind, version: Version, out_filename: []const u8, out_filename_major_only: []const u8, out_filename_name_only: []const u8, const Kind = enum { Exe, Lib, }; pub fn initExecutable(builder: &Builder, name: []const u8, root_src: []const u8) -> LibOrExeStep { return initExtraArgs(builder, name, root_src, Kind.Exe, false, builder.version(0, 0, 0)); } pub fn initSharedLibrary(builder: &Builder, name: []const u8, root_src: []const u8, ver: &const Version) -> LibOrExeStep { return initExtraArgs(builder, name, root_src, Kind.Lib, false, ver); } pub fn initStaticLibrary(builder: &Builder, name: []const u8, root_src: []const u8) -> LibOrExeStep { return initExtraArgs(builder, name, root_src, Kind.Lib, true, builder.version(0, 0, 0)); } fn initExtraArgs(builder: &Builder, name: []const u8, root_src: []const u8, kind: Kind, static: bool, ver: &const Version) -> LibOrExeStep { var self = LibOrExeStep { .builder = builder, .verbose = false, .release = false, .static = static, .kind = kind, .root_src = root_src, .name = name, .target = Target.Native, .linker_script = LinkerScript.None, .link_libs = BufSet.init(builder.allocator), .step = Step.init(name, builder.allocator, make), .output_path = null, .version = *ver, .out_filename = undefined, .out_filename_major_only = undefined, .out_filename_name_only = undefined, }; self.computeOutFileNames(); return self; } fn computeOutFileNames(self: &LibOrExeStep) { switch (self.kind) { Kind.Exe => { self.out_filename = self.builder.fmt("{}{}", self.name, self.target.exeFileExt()); }, Kind.Lib => { if (self.static) { self.out_filename = self.builder.fmt("lib{}.a", self.name); } else { self.out_filename = self.builder.fmt("lib{}.so.{d}.{d}.{d}", self.name, self.version.major, self.version.minor, self.version.patch); self.out_filename_major_only = self.builder.fmt("lib{}.so.{d}", self.name, self.version.major); self.out_filename_name_only = self.builder.fmt("lib{}.so", self.name); } }, } } pub fn setTarget(self: &LibOrExeStep, target_arch: Arch, target_os: Os, target_environ: Environ) { self.target = Target.Cross { CrossTarget { .arch = target_arch, .os = target_os, .environ = target_environ, } }; } /// LibOrExeStep keeps a reference to script for its lifetime or until this function /// is called again. pub fn setLinkerScriptContents(self: &LibOrExeStep, script: []const u8) { self.linker_script = LinkerScript.Embed { script }; } pub fn setLinkerScriptPath(self: &LibOrExeStep, path: []const u8) { self.linker_script = LinkerScript.Path { path }; } pub fn linkSystemLibrary(self: &LibOrExeStep, name: []const u8) { %%self.link_libs.put(name); } pub fn setVerbose(self: &LibOrExeStep, value: bool) { self.verbose = value; } pub fn setRelease(self: &LibOrExeStep, value: bool) { self.release = value; } pub fn setOutputPath(self: &LibOrExeStep, value: []const u8) { self.output_path = value; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(LibOrExeStep, "step", step); const builder = self.builder; var zig_args = List([]const u8).init(builder.allocator); defer zig_args.deinit(); const cmd = switch (self.kind) { Kind.Lib => "build_lib", Kind.Exe => "build_exe", }; %%zig_args.append(cmd); %%zig_args.append(builder.pathFromRoot(self.root_src)); if (self.verbose) { %%zig_args.append("--verbose"); } if (self.release) { %%zig_args.append("--release"); } if (const output_path ?= self.output_path) { %%zig_args.append("--output"); %%zig_args.append(builder.pathFromRoot(output_path)); } %%zig_args.append("--name"); %%zig_args.append(self.name); if (self.kind == Kind.Lib and !self.static) { %%zig_args.append("--ver-major"); %%zig_args.append(builder.fmt("{}", self.version.major)); %%zig_args.append("--ver-minor"); %%zig_args.append(builder.fmt("{}", self.version.minor)); %%zig_args.append("--ver-patch"); %%zig_args.append(builder.fmt("{}", self.version.patch)); } switch (self.target) { Target.Native => {}, Target.Cross => |cross_target| { %%zig_args.append("--target-arch"); %%zig_args.append(@enumTagName(cross_target.arch)); %%zig_args.append("--target-os"); %%zig_args.append(@enumTagName(cross_target.os)); %%zig_args.append("--target-environ"); %%zig_args.append(@enumTagName(cross_target.environ)); }, } switch (self.linker_script) { LinkerScript.None => {}, LinkerScript.Embed => |script| { const tmp_file_name = "linker.ld.tmp"; // TODO issue #298 io.writeFile(tmp_file_name, script, builder.allocator) %% |err| debug.panic("unable to write linker script: {}\n", @errorName(err)); %%zig_args.append("--linker-script"); %%zig_args.append(tmp_file_name); }, LinkerScript.Path => |path| { %%zig_args.append("--linker-script"); %%zig_args.append(path); }, } { var it = self.link_libs.iterator(); while (true) { const entry = it.next() ?? break; %%zig_args.append("--library"); %%zig_args.append(entry.key); } } for (builder.include_paths.toSliceConst()) |include_path| { %%zig_args.append("-isystem"); %%zig_args.append(include_path); } for (builder.rpaths.toSliceConst()) |rpath| { %%zig_args.append("-rpath"); %%zig_args.append(rpath); } for (builder.lib_paths.toSliceConst()) |lib_path| { %%zig_args.append("--library-path"); %%zig_args.append(lib_path); } %%builder.spawnChild(builder.zig_exe, zig_args.toSliceConst()); if (self.kind == Kind.Lib and !self.static) { // sym link for libfoo.so.1 to libfoo.so.1.2.3 %%os.atomicSymLink(builder.allocator, self.out_filename, self.out_filename_major_only); // sym link for libfoo.so to libfoo.so.1 %%os.atomicSymLink(builder.allocator, self.out_filename_major_only, self.out_filename_name_only); } } }; pub const ObjectStep = struct { step: Step, builder: &Builder, root_src: []const u8, name: []const u8, target: Target, verbose: bool, release: bool, output_path: ?[]const u8, pub fn init(builder: &Builder, name: []const u8, root_src: []const u8) -> ObjectStep { ObjectStep { .builder = builder, .verbose = false, .release = false, .root_src = root_src, .name = name, .target = Target.Native, .step = Step.init(name, builder.allocator, make), .output_path = null, } } pub fn setTarget(self: &ObjectStep, target_arch: Arch, target_os: Os, target_environ: Environ) { self.target = Target.Cross { CrossTarget { .arch = target_arch, .os = target_os, .environ = target_environ, } }; } pub fn setVerbose(self: &ObjectStep, value: bool) { self.verbose = value; } pub fn setRelease(self: &ObjectStep, value: bool) { self.release = value; } pub fn setOutputPath(self: &ObjectStep, value: []const u8) { self.output_path = value; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(ObjectStep, "step", step); const builder = self.builder; var zig_args = List([]const u8).init(builder.allocator); defer zig_args.deinit(); %%zig_args.append("build_obj"); %%zig_args.append(builder.pathFromRoot(self.root_src)); if (self.verbose) { %%zig_args.append("--verbose"); } if (self.release) { %%zig_args.append("--release"); } if (const output_path ?= self.output_path) { %%zig_args.append("--output"); %%zig_args.append(builder.pathFromRoot(output_path)); } %%zig_args.append("--name"); %%zig_args.append(self.name); switch (self.target) { Target.Native => {}, Target.Cross => |cross_target| { %%zig_args.append("--target-arch"); %%zig_args.append(@enumTagName(cross_target.arch)); %%zig_args.append("--target-os"); %%zig_args.append(@enumTagName(cross_target.os)); %%zig_args.append("--target-environ"); %%zig_args.append(@enumTagName(cross_target.environ)); }, } for (builder.include_paths.toSliceConst()) |include_path| { %%zig_args.append("-isystem"); %%zig_args.append(include_path); } for (builder.rpaths.toSliceConst()) |rpath| { %%zig_args.append("-rpath"); %%zig_args.append(rpath); } for (builder.lib_paths.toSliceConst()) |lib_path| { %%zig_args.append("--library-path"); %%zig_args.append(lib_path); } %%builder.spawnChild(builder.zig_exe, zig_args.toSliceConst()); } }; pub const AsmStep = struct { step: Step, builder: &Builder, name: []const u8, target: Target, verbose: bool, release: bool, output_path: ?[]const u8, src_path: []const u8, pub fn init(builder: &Builder, name: []const u8, src_path: []const u8) -> AsmStep { var self = AsmStep { .step = Step.init(name, builder.allocator, make), .builder = builder, .name = name, .target = Target.Native, .verbose = false, .release = false, .output_path = null, .src_path = src_path, }; return self; } pub fn setTarget(self: &AsmStep, target_arch: Arch, target_os: Os, target_environ: Environ) { self.target = Target.Cross { CrossTarget { .arch = target_arch, .os = target_os, .environ = target_environ, } }; } pub fn setVerbose(self: &AsmStep, value: bool) { self.verbose = value; } pub fn setRelease(self: &AsmStep, value: bool) { self.release = value; } pub fn setOutputPath(self: &AsmStep, value: []const u8) { self.output_path = value; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(AsmStep, "step", step); const builder = self.builder; var zig_args = List([]const u8).init(builder.allocator); defer zig_args.deinit(); %%zig_args.append("asm"); %%zig_args.append(builder.pathFromRoot(self.src_path)); if (self.verbose) { %%zig_args.append("--verbose"); } if (self.release) { %%zig_args.append("--release"); } if (const output_path ?= self.output_path) { %%zig_args.append("--output"); %%zig_args.append(builder.pathFromRoot(output_path)); } %%zig_args.append("--name"); %%zig_args.append(self.name); switch (self.target) { Target.Native => {}, Target.Cross => |cross_target| { %%zig_args.append("--target-arch"); %%zig_args.append(@enumTagName(cross_target.arch)); %%zig_args.append("--target-os"); %%zig_args.append(@enumTagName(cross_target.os)); %%zig_args.append("--target-environ"); %%zig_args.append(@enumTagName(cross_target.environ)); }, } %%builder.spawnChild(builder.zig_exe, zig_args.toSliceConst()); } }; pub const LinkStep = struct { step: Step, builder: &Builder, name: []const u8, target: Target, linker_script: LinkerScript, link_libs: BufSet, verbose: bool, release: bool, output_path: ?[]const u8, object_files: List([]const u8), static: bool, out_filename: []const u8, out_type: OutType, version: Version, major_only_filename: []const u8, name_only_filename: []const u8, const OutType = enum { Exe, Lib, }; pub fn initExecutable(builder: &Builder, name: []const u8) -> LinkStep { return init(builder, name, OutType.Exe, builder.version(0, 0, 0), false) } pub fn initSharedLibrary(builder: &Builder, name: []const u8, version: &const Version) -> LinkStep { return init(builder, name, OutType.Lib, version, false) } pub fn initStaticLibrary(builder: &Builder, name: []const u8) -> LinkStep { return init(builder, name, OutType.Lib, builder.version(0, 0, 0), true) } fn init(builder: &Builder, name: []const u8, out_type: OutType, version: &const Version, static: bool) -> LinkStep { var self = LinkStep { .builder = builder, .verbose = false, .release = false, .name = name, .target = Target.Native, .linker_script = LinkerScript.None, .link_libs = BufSet.init(builder.allocator), .step = Step.init(name, builder.allocator, make), .output_path = null, .object_files = List([]const u8).init(builder.allocator), .out_type = out_type, .version = *version, .static = static, .out_filename = undefined, .major_only_filename = undefined, .name_only_filename = undefined, }; self.computeOutFileName(); return self; } fn computeOutFileName(self: &LinkStep) { switch (self.out_type) { OutType.Exe => { self.out_filename = self.builder.fmt("{}{}", self.name, self.target.exeFileExt()); }, OutType.Lib => { if (self.static) { self.out_filename = self.builder.fmt("lib{}.a", self.name); } else { self.out_filename = self.builder.fmt("lib{}.so.{d}.{d}.{d}", self.name, self.version.major, self.version.minor, self.version.patch); self.major_only_filename = self.builder.fmt("lib{}.so.{d}", self.name, self.version.major); self.name_only_filename = self.builder.fmt("lib{}.so", self.name); } }, } } pub fn addObjectFile(self: &LinkStep, file: []const u8) { %%self.object_files.append(file); } pub fn setTarget(self: &LinkStep, target_arch: Arch, target_os: Os, target_environ: Environ) { self.target = Target.Cross { CrossTarget { .arch = target_arch, .os = target_os, .environ = target_environ, } }; self.computeOutFileName(); } /// LinkStep keeps a reference to script for its lifetime or until this function /// is called again. pub fn setLinkerScriptContents(self: &LinkStep, script: []const u8) { self.linker_script = LinkerScript.Embed { script }; } pub fn setLinkerScriptPath(self: &LinkStep, path: []const u8) { self.linker_script = LinkerScript.Path { path }; } pub fn linkSystemLibrary(self: &LinkStep, name: []const u8) { %%self.link_libs.put(name); } pub fn setVerbose(self: &LinkStep, value: bool) { self.verbose = value; } pub fn setRelease(self: &LinkStep, value: bool) { self.release = value; } pub fn setOutputPath(self: &LinkStep, value: []const u8) { self.output_path = value; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(LinkStep, "step", step); const builder = self.builder; if (self.object_files.len == 0) { %%io.stderr.printf("{}: linker needs 1 or more objects to link\n", step.name); return error.NeedAnObject; } var zig_args = List([]const u8).init(builder.allocator); defer zig_args.deinit(); const cmd = switch (self.out_type) { OutType.Exe => "link_exe", OutType.Lib => "link_lib", }; %%zig_args.append(cmd); for (self.object_files.toSliceConst()) |object_file| { %%zig_args.append(builder.pathFromRoot(object_file)); } if (self.verbose) { %%zig_args.append("--verbose"); } if (self.release) { %%zig_args.append("--release"); } if (self.static) { %%zig_args.append("--static"); } if (const output_path ?= self.output_path) { %%zig_args.append("--output"); %%zig_args.append(builder.pathFromRoot(output_path)); } %%zig_args.append("--name"); %%zig_args.append(self.name); switch (self.target) { Target.Native => {}, Target.Cross => |cross_target| { %%zig_args.append("--target-arch"); %%zig_args.append(@enumTagName(cross_target.arch)); %%zig_args.append("--target-os"); %%zig_args.append(@enumTagName(cross_target.os)); %%zig_args.append("--target-environ"); %%zig_args.append(@enumTagName(cross_target.environ)); }, } switch (self.linker_script) { LinkerScript.None => {}, LinkerScript.Embed => |script| { const tmp_file_name = "linker.ld.tmp"; // TODO issue #298 io.writeFile(tmp_file_name, script, builder.allocator) %% |err| debug.panic("unable to write linker script: {}\n", @errorName(err)); %%zig_args.append("--linker-script"); %%zig_args.append(tmp_file_name); }, LinkerScript.Path => |path| { %%zig_args.append("--linker-script"); %%zig_args.append(path); }, } { var it = self.link_libs.iterator(); while (true) { const entry = it.next() ?? break; %%zig_args.append("--library"); %%zig_args.append(entry.key); } } for (builder.rpaths.toSliceConst()) |rpath| { %%zig_args.append("-rpath"); %%zig_args.append(rpath); } for (builder.lib_paths.toSliceConst()) |lib_path| { %%zig_args.append("--library-path"); %%zig_args.append(lib_path); } %%builder.spawnChild(builder.zig_exe, zig_args.toSliceConst()); } }; pub const TestStep = struct { step: Step, builder: &Builder, root_src: []const u8, release: bool, verbose: bool, link_libs: BufSet, name_prefix: []const u8, filter: ?[]const u8, pub fn init(builder: &Builder, root_src: []const u8) -> TestStep { const step_name = builder.fmt("test {}", root_src); TestStep { .step = Step.init(step_name, builder.allocator, make), .builder = builder, .root_src = root_src, .release = false, .verbose = false, .name_prefix = "", .filter = null, .link_libs = BufSet.init(builder.allocator), } } pub fn setVerbose(self: &TestStep, value: bool) { self.verbose = value; } pub fn setRelease(self: &TestStep, value: bool) { self.release = value; } pub fn linkSystemLibrary(self: &TestStep, name: []const u8) { %%self.link_libs.put(name); } pub fn setNamePrefix(self: &TestStep, text: []const u8) { self.name_prefix = text; } pub fn setFilter(self: &TestStep, text: ?[]const u8) { self.filter = text; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(TestStep, "step", step); const builder = self.builder; var zig_args = List([]const u8).init(builder.allocator); defer zig_args.deinit(); %%zig_args.append("test"); %%zig_args.append(builder.pathFromRoot(self.root_src)); if (self.verbose) { %%zig_args.append("--verbose"); } if (self.release) { %%zig_args.append("--release"); } if (const filter ?= self.filter) { %%zig_args.append("--test-filter"); %%zig_args.append(filter); } if (self.name_prefix.len != 0) { %%zig_args.append("--test-name-prefix"); %%zig_args.append(self.name_prefix); } { var it = self.link_libs.iterator(); while (true) { const entry = it.next() ?? break; %%zig_args.append("--library"); %%zig_args.append(entry.key); } } for (builder.include_paths.toSliceConst()) |include_path| { %%zig_args.append("-isystem"); %%zig_args.append(include_path); } for (builder.rpaths.toSliceConst()) |rpath| { %%zig_args.append("-rpath"); %%zig_args.append(rpath); } for (builder.lib_paths.toSliceConst()) |lib_path| { %%zig_args.append("--library-path"); %%zig_args.append(lib_path); } %%builder.spawnChild(builder.zig_exe, zig_args.toSliceConst()); } }; pub const CLibrary = struct { step: Step, name: []const u8, out_filename: []const u8, static: bool, version: Version, cflags: List([]const u8), source_files: List([]const u8), object_files: List([]const u8), link_libs: BufSet, target: Target, builder: &Builder, include_dirs: List([]const u8), major_only_filename: []const u8, name_only_filename: []const u8, pub fn initShared(builder: &Builder, name: []const u8, version: &const Version) -> CLibrary { return init(builder, name, version, false); } pub fn initStatic(builder: &Builder, name: []const u8) -> CLibrary { return init(builder, name, builder.version(0, 0, 0), true); } fn init(builder: &Builder, name: []const u8, version: &const Version, static: bool) -> CLibrary { var clib = CLibrary { .builder = builder, .name = name, .version = *version, .static = static, .target = Target.Native, .cflags = List([]const u8).init(builder.allocator), .source_files = List([]const u8).init(builder.allocator), .object_files = List([]const u8).init(builder.allocator), .step = Step.init(name, builder.allocator, make), .link_libs = BufSet.init(builder.allocator), .include_dirs = List([]const u8).init(builder.allocator), .out_filename = undefined, .major_only_filename = undefined, .name_only_filename = undefined, }; clib.computeOutFileName(); return clib; } fn computeOutFileName(self: &CLibrary) { if (self.static) { self.out_filename = self.builder.fmt("lib{}.a", self.name); } else { self.out_filename = self.builder.fmt("lib{}.so.{d}.{d}.{d}", self.name, self.version.major, self.version.minor, self.version.patch); self.major_only_filename = self.builder.fmt("lib{}.so.{d}", self.name, self.version.major); self.name_only_filename = self.builder.fmt("lib{}.so", self.name); } } pub fn linkSystemLibrary(self: &CLibrary, name: []const u8) { %%self.link_libs.put(name); } pub fn linkCLibrary(self: &CLibrary, other: &CLibrary) { self.step.dependOn(&other.step); %%self.link_libs.put(other.name); } pub fn addSourceFile(self: &CLibrary, file: []const u8) { %%self.source_files.append(file); } pub fn addObjectFile(self: &CLibrary, file: []const u8) { %%self.object_files.append(file); } pub fn addIncludeDir(self: &CLibrary, path: []const u8) { %%self.include_dirs.append(path); } pub fn addCompileFlagsForRelease(self: &CLibrary, release: bool) { if (release) { %%self.cflags.append("-g"); %%self.cflags.append("-O2"); } else { %%self.cflags.append("-g"); } } pub fn addCompileFlags(self: &CLibrary, flags: []const []const u8) { for (flags) |flag| { %%self.cflags.append(flag); } } fn make(step: &Step) -> %void { const self = @fieldParentPtr(CLibrary, "step", step); const cc = os.getEnv("CC") ?? "cc"; const builder = self.builder; var cc_args = List([]const u8).init(builder.allocator); defer cc_args.deinit(); for (self.source_files.toSliceConst()) |source_file| { %%cc_args.resize(0); if (!self.static) { %%cc_args.append("-fPIC"); } %%cc_args.append("-c"); %%cc_args.append(source_file); // TODO don't dump the .o file in the same place as the source file const o_file = builder.fmt("{}{}", source_file, self.target.oFileExt()); defer builder.allocator.free(o_file); %%cc_args.append("-o"); %%cc_args.append(o_file); for (self.cflags.toSliceConst()) |cflag| { %%cc_args.append(cflag); } for (self.include_dirs.toSliceConst()) |dir| { %%cc_args.append("-I"); %%cc_args.append(dir); } %return builder.spawnChild(cc, cc_args.toSliceConst()); %%self.object_files.append(o_file); } if (self.static) { debug.panic("TODO static library"); } else { %%cc_args.resize(0); %%cc_args.append("-fPIC"); %%cc_args.append("-shared"); const soname_arg = builder.fmt("-Wl,-soname,lib{}.so.{d}", self.name, self.version.major); defer builder.allocator.free(soname_arg); %%cc_args.append(soname_arg); %%cc_args.append("-o"); %%cc_args.append(self.out_filename); for (self.object_files.toSliceConst()) |object_file| { %%cc_args.append(builder.pathFromRoot(object_file)); } %return builder.spawnChild(cc, cc_args.toSliceConst()); // sym link for libfoo.so.1 to libfoo.so.1.2.3 %%os.atomicSymLink(builder.allocator, self.out_filename, self.major_only_filename); // sym link for libfoo.so to libfoo.so.1 %%os.atomicSymLink(builder.allocator, self.major_only_filename, self.name_only_filename); } } pub fn setTarget(self: &CLibrary, target_arch: Arch, target_os: Os, target_environ: Environ) { self.target = Target.Cross { CrossTarget { .arch = target_arch, .os = target_os, .environ = target_environ, } }; } }; pub const CExecutable = struct { step: Step, builder: &Builder, name: []const u8, cflags: List([]const u8), source_files: List([]const u8), object_files: List([]const u8), full_path_libs: List([]const u8), link_libs: BufSet, target: Target, include_dirs: List([]const u8), pub fn init(builder: &Builder, name: []const u8) -> CExecutable { CExecutable { .builder = builder, .name = name, .target = Target.Native, .cflags = List([]const u8).init(builder.allocator), .source_files = List([]const u8).init(builder.allocator), .object_files = List([]const u8).init(builder.allocator), .full_path_libs = List([]const u8).init(builder.allocator), .step = Step.init(name, builder.allocator, make), .link_libs = BufSet.init(builder.allocator), .include_dirs = List([]const u8).init(builder.allocator), } } pub fn linkSystemLibrary(self: &CExecutable, name: []const u8) { %%self.link_libs.put(name); } pub fn linkCLibrary(self: &CExecutable, clib: &CLibrary) { self.step.dependOn(&clib.step); %%self.full_path_libs.append(clib.out_filename); } pub fn linkLibrary(self: &CExecutable, lib: &LibOrExeStep) { assert(lib.kind == LibOrExeStep.Kind.Lib); self.step.dependOn(&lib.step); %%self.full_path_libs.append(lib.out_filename); // TODO should be some kind of isolated directory that only has this header in it %%self.include_dirs.append(self.builder.out_dir); } pub fn addObject(self: &CExecutable, obj: &ObjectStep) { self.step.dependOn(&obj.step); // TODO make it so we always know where this will be %%self.object_files.append(%%os.path.join(self.builder.allocator, self.builder.out_dir, self.builder.fmt("{}{}", obj.name, obj.target.oFileExt()))); // TODO should be some kind of isolated directory that only has this header in it %%self.include_dirs.append(self.builder.out_dir); } pub fn addSourceFile(self: &CExecutable, file: []const u8) { %%self.source_files.append(file); } pub fn addObjectFile(self: &CExecutable, file: []const u8) { %%self.object_files.append(file); } pub fn addIncludeDir(self: &CExecutable, path: []const u8) { %%self.include_dirs.append(path); } pub fn addCompileFlagsForRelease(self: &CExecutable, release: bool) { if (release) { %%self.cflags.append("-g"); %%self.cflags.append("-O2"); } else { %%self.cflags.append("-g"); } } pub fn addCompileFlags(self: &CExecutable, flags: []const []const u8) { for (flags) |flag| { %%self.cflags.append(flag); } } fn make(step: &Step) -> %void { const self = @fieldParentPtr(CExecutable, "step", step); const cc = os.getEnv("CC") ?? "cc"; const builder = self.builder; var cc_args = List([]const u8).init(builder.allocator); defer cc_args.deinit(); for (self.source_files.toSliceConst()) |source_file| { %%cc_args.resize(0); %%cc_args.append("-c"); %%cc_args.append(builder.pathFromRoot(source_file)); // TODO don't dump the .o file in the same place as the source file const o_file = builder.fmt("{}{}", source_file, self.target.oFileExt()); defer builder.allocator.free(o_file); %%cc_args.append("-o"); %%cc_args.append(o_file); for (self.cflags.toSliceConst()) |cflag| { %%cc_args.append(cflag); } for (self.include_dirs.toSliceConst()) |dir| { %%cc_args.append("-I"); %%cc_args.append(builder.pathFromRoot(dir)); } %return builder.spawnChild(cc, cc_args.toSliceConst()); %%self.object_files.append(o_file); } %%cc_args.resize(0); for (self.object_files.toSliceConst()) |object_file| { %%cc_args.append(object_file); } %%cc_args.append("-o"); %%cc_args.append(self.name); const rpath_arg = builder.fmt("-Wl,-rpath,{}", builder.out_dir); defer builder.allocator.free(rpath_arg); %%cc_args.append(rpath_arg); %%cc_args.append("-rdynamic"); for (self.full_path_libs.toSliceConst()) |full_path_lib| { %%cc_args.append(full_path_lib); } %return builder.spawnChild(cc, cc_args.toSliceConst()); } pub fn setTarget(self: &CExecutable, target_arch: Arch, target_os: Os, target_environ: Environ) { self.target = Target.Cross { CrossTarget { .arch = target_arch, .os = target_os, .environ = target_environ, } }; } }; pub const CommandStep = struct { step: Step, builder: &Builder, exe_path: []const u8, args: []const []const u8, cwd: []const u8, env_map: &const BufMap, pub fn init(builder: &Builder, cwd: []const u8, env_map: &const BufMap, exe_path: []const u8, args: []const []const u8) -> CommandStep { CommandStep { .builder = builder, .step = Step.init(exe_path, builder.allocator, make), .exe_path = exe_path, .args = args, .cwd = cwd, .env_map = env_map, } } fn make(step: &Step) -> %void { const self = @fieldParentPtr(CommandStep, "step", step); // TODO set cwd return self.builder.spawnChildEnvMap(self.env_map, self.exe_path, self.args); } }; pub const InstallCLibraryStep = struct { step: Step, builder: &Builder, lib: &CLibrary, dest_file: []const u8, pub fn init(builder: &Builder, lib: &CLibrary) -> InstallCLibraryStep { var self = InstallCLibraryStep { .builder = builder, .step = Step.init(builder.fmt("install {}", lib.step.name), builder.allocator, make), .lib = lib, .dest_file = undefined, }; self.dest_file = %%os.path.join(builder.allocator, builder.lib_dir, lib.out_filename); builder.addInstalledFile(self.dest_file); if (!self.lib.static) { builder.addInstalledFile(%%os.path.join(builder.allocator, builder.lib_dir, lib.major_only_filename)); builder.addInstalledFile(%%os.path.join(builder.allocator, builder.lib_dir, lib.name_only_filename)); } return self; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(InstallCLibraryStep, "step", step); self.builder.copyFile(self.lib.out_filename, self.dest_file); if (!self.lib.static) { %%os.atomicSymLink(self.builder.allocator, self.lib.out_filename, self.lib.major_only_filename); %%os.atomicSymLink(self.builder.allocator, self.lib.major_only_filename, self.lib.name_only_filename); } } }; pub const InstallFileStep = struct { step: Step, builder: &Builder, src_path: []const u8, dest_path: []const u8, pub fn init(builder: &Builder, src_path: []const u8, dest_path: []const u8) -> InstallFileStep { return InstallFileStep { .builder = builder, .step = Step.init(builder.fmt("install {}", src_path), builder.allocator, make), .src_path = src_path, .dest_path = dest_path, }; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(InstallFileStep, "step", step); debug.panic("TODO install file"); } }; pub const WriteFileStep = struct { step: Step, builder: &Builder, file_path: []const u8, data: []const u8, pub fn init(builder: &Builder, file_path: []const u8, data: []const u8) -> WriteFileStep { return WriteFileStep { .builder = builder, .step = Step.init(builder.fmt("writefile {}", file_path), builder.allocator, make), .file_path = file_path, .data = data, }; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(WriteFileStep, "step", step); const full_path = self.builder.pathFromRoot(self.file_path); const full_path_dir = os.path.dirname(full_path); os.makePath(self.builder.allocator, full_path_dir) %% |err| { %%io.stderr.printf("unable to make path {}: {}\n", full_path_dir, @errorName(err)); return err; }; io.writeFile(full_path, self.data, self.builder.allocator) %% |err| { %%io.stderr.printf("unable to write {}: {}\n", full_path, @errorName(err)); return err; }; } }; pub const LogStep = struct { step: Step, builder: &Builder, data: []const u8, pub fn init(builder: &Builder, data: []const u8) -> LogStep { return LogStep { .builder = builder, .step = Step.init(builder.fmt("log {}", data), builder.allocator, make), .data = data, }; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(LogStep, "step", step); %%io.stderr.write(self.data); %%io.stderr.flush(); } }; pub const RemoveDirStep = struct { step: Step, builder: &Builder, dir_path: []const u8, pub fn init(builder: &Builder, dir_path: []const u8) -> RemoveDirStep { return RemoveDirStep { .builder = builder, .step = Step.init(builder.fmt("RemoveDir {}", dir_path), builder.allocator, make), .dir_path = dir_path, }; } fn make(step: &Step) -> %void { const self = @fieldParentPtr(RemoveDirStep, "step", step); const full_path = self.builder.pathFromRoot(self.dir_path); os.deleteTree(self.builder.allocator, full_path) %% |err| { %%io.stderr.printf("Unable to remove {}: {}\n", full_path, @errorName(err)); return err; }; } }; pub const Step = struct { name: []const u8, makeFn: fn(self: &Step) -> %void, dependencies: List(&Step), loop_flag: bool, done_flag: bool, pub fn init(name: []const u8, allocator: &Allocator, makeFn: fn (&Step)->%void) -> Step { Step { .name = name, .makeFn = makeFn, .dependencies = List(&Step).init(allocator), .loop_flag = false, .done_flag = false, } } pub fn initNoOp(name: []const u8, allocator: &Allocator) -> Step { init(name, allocator, makeNoOp) } pub fn make(self: &Step) -> %void { if (self.done_flag) return; %return self.makeFn(self); self.done_flag = true; } pub fn dependOn(self: &Step, other: &Step) { %%self.dependencies.append(other); } fn makeNoOp(self: &Step) -> %void {} };