mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
Rework std.Build.Step to have an `owner: *Build` field. This simplified the implementation of installation steps, as well as provided some much-needed common API for the new parallelized build system. --verbose is now defined very concretely: it prints to stderr just before spawning a child process. Child process execution is updated to conform to the new parallel-friendly make() function semantics. DRY up the failWithCacheError handling code. It now integrates properly with the step graph instead of incorrectly dumping to stderr and calling process exit. In the main CLI, fix `zig fmt` crash when there are no errors and stdin is used. Deleted steps: * EmulatableRunStep - this entire thing can be removed in favor of a flag added to std.Build.RunStep called `skip_foreign_checks`. * LogStep - this doesn't really fit with a multi-threaded build runner and is effectively superseded by the new build summary output. build runner: * add -fsummary and -fno-summary to override the default behavior, which is to print a summary if any of the build steps fail. * print the dep prefix when emitting error messages for steps. std.Build.FmtStep: * This step now supports exclude paths as well as a check flag. * The check flag decides between two modes, modify mode, and check mode. These can be used to update source files in place, or to fail the build, respectively. Zig's own build.zig: * The `test-fmt` step will do all the `zig fmt` checking that we expect to be done. Since the `test` step depends on this one, we can simply remove the explicit call to `zig fmt` in the CI. * The new `fmt` step will actually perform `zig fmt` and update source files in place. std.Build.RunStep: * expose max_stdio_size is a field (previously an unchangeable hard-coded value). * rework the API. Instead of configuring each stream independently, there is a `stdio` field where you can choose between `infer_from_args`, `inherit`, or `check`. These determine whether the RunStep is considered to have side-effects or not. The previous field, `condition` is gone. * when stdio mode is set to `check` there is a slice of any number of checks to make, which include things like exit code, stderr matching, or stdout matching. * remove the ill-defined `print` field. * when adding an output arg, it takes the opportunity to give itself a better name. * The flag `skip_foreign_checks` is added. If this is true, a RunStep which is configured to check the output of the executed binary will not fail the build if the binary cannot be executed due to being for a foreign binary to the host system which is running the build graph. Command-line arguments such as -fqemu and -fwasmtime may affect whether a binary is detected as foreign, as well as system configuration such as Rosetta (macOS) and binfmt_misc (Linux). - This makes EmulatableRunStep no longer needed. * Fix the child process handling to properly integrate with the new bulid API and to avoid deadlocks in stdout/stderr streams by polling if necessary. std.Build.RemoveDirStep now uses the open build_root directory handle instead of an absolute path.
134 lines
4.5 KiB
Zig
134 lines
4.5 KiB
Zig
const std = @import("../std.zig");
|
|
const Step = std.Build.Step;
|
|
const CompileStep = std.Build.CompileStep;
|
|
const CheckFileStep = std.Build.CheckFileStep;
|
|
const fs = std.fs;
|
|
const mem = std.mem;
|
|
const CrossTarget = std.zig.CrossTarget;
|
|
|
|
const TranslateCStep = @This();
|
|
|
|
pub const base_id = .translate_c;
|
|
|
|
step: Step,
|
|
source: std.Build.FileSource,
|
|
include_dirs: std.ArrayList([]const u8),
|
|
c_macros: std.ArrayList([]const u8),
|
|
out_basename: []const u8,
|
|
target: CrossTarget,
|
|
optimize: std.builtin.OptimizeMode,
|
|
output_file: std.Build.GeneratedFile,
|
|
|
|
pub const Options = struct {
|
|
source_file: std.Build.FileSource,
|
|
target: CrossTarget,
|
|
optimize: std.builtin.OptimizeMode,
|
|
};
|
|
|
|
pub fn create(owner: *std.Build, options: Options) *TranslateCStep {
|
|
const self = owner.allocator.create(TranslateCStep) catch @panic("OOM");
|
|
const source = options.source_file.dupe(owner);
|
|
self.* = TranslateCStep{
|
|
.step = Step.init(.{
|
|
.id = .translate_c,
|
|
.name = "translate-c",
|
|
.owner = owner,
|
|
.makeFn = make,
|
|
}),
|
|
.source = source,
|
|
.include_dirs = std.ArrayList([]const u8).init(owner.allocator),
|
|
.c_macros = std.ArrayList([]const u8).init(owner.allocator),
|
|
.out_basename = undefined,
|
|
.target = options.target,
|
|
.optimize = options.optimize,
|
|
.output_file = std.Build.GeneratedFile{ .step = &self.step },
|
|
};
|
|
source.addStepDependencies(&self.step);
|
|
return self;
|
|
}
|
|
|
|
pub const AddExecutableOptions = struct {
|
|
name: ?[]const u8 = null,
|
|
version: ?std.builtin.Version = null,
|
|
target: ?CrossTarget = null,
|
|
optimize: ?std.builtin.Mode = null,
|
|
linkage: ?CompileStep.Linkage = null,
|
|
};
|
|
|
|
/// Creates a step to build an executable from the translated source.
|
|
pub fn addExecutable(self: *TranslateCStep, options: AddExecutableOptions) *CompileStep {
|
|
return self.step.owner.addExecutable(.{
|
|
.root_source_file = .{ .generated = &self.output_file },
|
|
.name = options.name orelse "translated_c",
|
|
.version = options.version,
|
|
.target = options.target orelse self.target,
|
|
.optimize = options.optimize orelse self.optimize,
|
|
.linkage = options.linkage,
|
|
});
|
|
}
|
|
|
|
pub fn addIncludeDir(self: *TranslateCStep, include_dir: []const u8) void {
|
|
self.include_dirs.append(self.step.owner.dupePath(include_dir)) catch @panic("OOM");
|
|
}
|
|
|
|
pub fn addCheckFile(self: *TranslateCStep, expected_matches: []const []const u8) *CheckFileStep {
|
|
return CheckFileStep.create(self.step.owner, .{ .generated = &self.output_file }, self.step.owner.dupeStrings(expected_matches));
|
|
}
|
|
|
|
/// If the value is omitted, it is set to 1.
|
|
/// `name` and `value` need not live longer than the function call.
|
|
pub fn defineCMacro(self: *TranslateCStep, name: []const u8, value: ?[]const u8) void {
|
|
const macro = std.Build.constructCMacro(self.step.owner.allocator, name, value);
|
|
self.c_macros.append(macro) catch @panic("OOM");
|
|
}
|
|
|
|
/// name_and_value looks like [name]=[value]. If the value is omitted, it is set to 1.
|
|
pub fn defineCMacroRaw(self: *TranslateCStep, name_and_value: []const u8) void {
|
|
self.c_macros.append(self.step.owner.dupe(name_and_value)) catch @panic("OOM");
|
|
}
|
|
|
|
fn make(step: *Step, prog_node: *std.Progress.Node) !void {
|
|
const b = step.owner;
|
|
const self = @fieldParentPtr(TranslateCStep, "step", step);
|
|
|
|
var argv_list = std.ArrayList([]const u8).init(b.allocator);
|
|
try argv_list.append(b.zig_exe);
|
|
try argv_list.append("translate-c");
|
|
try argv_list.append("-lc");
|
|
|
|
try argv_list.append("--enable-cache");
|
|
try argv_list.append("--listen=-");
|
|
|
|
if (!self.target.isNative()) {
|
|
try argv_list.append("-target");
|
|
try argv_list.append(try self.target.zigTriple(b.allocator));
|
|
}
|
|
|
|
switch (self.optimize) {
|
|
.Debug => {}, // Skip since it's the default.
|
|
else => try argv_list.append(b.fmt("-O{s}", .{@tagName(self.optimize)})),
|
|
}
|
|
|
|
for (self.include_dirs.items) |include_dir| {
|
|
try argv_list.append("-I");
|
|
try argv_list.append(include_dir);
|
|
}
|
|
|
|
for (self.c_macros.items) |c_macro| {
|
|
try argv_list.append("-D");
|
|
try argv_list.append(c_macro);
|
|
}
|
|
|
|
try argv_list.append(self.source.getPath(b));
|
|
|
|
const output_path = try step.evalZigProcess(argv_list.items, prog_node);
|
|
|
|
self.out_basename = fs.path.basename(output_path);
|
|
const output_dir = fs.path.dirname(output_path).?;
|
|
|
|
self.output_file.path = try fs.path.join(
|
|
b.allocator,
|
|
&[_][]const u8{ output_dir, self.out_basename },
|
|
);
|
|
}
|