mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-30 12:56:37 +03:00
maker: port Run step logic up to spawnChildAndCollect
This commit is contained in:
@@ -427,7 +427,6 @@ pub const Step = extern struct {
|
||||
max_rss: MaxRss,
|
||||
extended: Storage.Extended(Flags, union(Tag) {
|
||||
check_file: CheckFile,
|
||||
check_object: CheckObject,
|
||||
compile: Compile,
|
||||
config_header: ConfigHeader,
|
||||
fail: Fail,
|
||||
@@ -462,7 +461,6 @@ pub const Step = extern struct {
|
||||
|
||||
pub const Tag = enum(u5) {
|
||||
check_file,
|
||||
check_object,
|
||||
compile,
|
||||
config_header,
|
||||
fail,
|
||||
@@ -997,15 +995,6 @@ pub const Step = extern struct {
|
||||
};
|
||||
};
|
||||
|
||||
pub const CheckObject = struct {
|
||||
flags: @This().Flags,
|
||||
|
||||
pub const Flags = packed struct(u32) {
|
||||
tag: Tag = .check_object,
|
||||
_: u27 = 0,
|
||||
};
|
||||
};
|
||||
|
||||
pub const ConfigHeader = struct {
|
||||
flags: @This().Flags,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user