From b2860aa3e4d86e8712192c8a2068867e3ed04ef2 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 15 Sep 2020 12:52:58 -0700 Subject: [PATCH] stage2: add missing import to libc_installation.zig --- src-self-hosted/libc_installation.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src-self-hosted/libc_installation.zig b/src-self-hosted/libc_installation.zig index 8e380af936..05ac8a8101 100644 --- 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;