Function rebuildInFuzzMode [src]

Prototype

pub fn rebuildInFuzzMode(c: *Compile, progress_node: std.Progress.Node) !Path

Parameters

c: *Compileprogress_node: std.Progress.Node

Source

pub fn rebuildInFuzzMode(c: *Compile, progress_node: std.Progress.Node) !Path { const gpa = c.step.owner.allocator; c.step.result_error_msgs.clearRetainingCapacity(); c.step.result_stderr = ""; c.step.result_error_bundle.deinit(gpa); c.step.result_error_bundle = std.zig.ErrorBundle.empty; const zig_args = try getZigArgs(c, true); const maybe_output_bin_path = try c.step.evalZigProcess(zig_args, progress_node, false); return maybe_output_bin_path.?; }