authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-09-15 12:52:58-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-09-15 12:52:58-07:00
logb2860aa3e4d86e8712192c8a2068867e3ed04ef2
tree24c08952dde1a0e971d5c651bc90ee0b2ff7175c
parent1da9e0fcaf05fb78e4634278f51b6fe43509bd6f

stage2: add missing import to libc_installation.zig


1 files changed, 1 insertions(+), 0 deletions(-)

src-self-hosted/libc_installation.zig+1
...@@ -4,6 +4,7 @@ const Target = std.Target;...@@ -4,6 +4,7 @@ const Target = std.Target;
4const fs = std.fs;4const fs = std.fs;
5const Allocator = std.mem.Allocator;5const Allocator = std.mem.Allocator;
6const Batch = std.event.Batch;6const Batch = std.event.Batch;
7const build_options = @import("build_options");
78
8const is_darwin = Target.current.isDarwin();9const is_darwin = Target.current.isDarwin();
9const is_windows = Target.current.os.tag == .windows;10const is_windows = Target.current.os.tag == .windows;