zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit b2860aa3e4d86e8712192c8a2068867e3ed04ef2 (tree)
parent 1da9e0fcaf05fb78e4634278f51b6fe43509bd6f
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Tue, 15 Sep 2020 12:52:58 -0700

stage2: add missing import to libc_installation.zig

Diffstat:
Msrc-self-hosted/libc_installation.zig | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src-self-hosted/libc_installation.zig b/src-self-hosted/libc_installation.zig @@ -4,6 +4,7 @@ const Target = std.Target; const fs = std.fs; const Allocator = std.mem.Allocator; const Batch = std.event.Batch; +const build_options = @import("build_options"); const is_darwin = Target.current.isDarwin(); const is_windows = Target.current.os.tag == .windows;