aboutsummaryrefslogtreecommitdiff
path: root/src/mingw.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-12-28 15:07:21 -0800
committerGitHub <noreply@github.com>2020-12-28 15:07:21 -0800
commit2df2f0020f4ddc41b3b914cd17efcb403cf0f6ad (patch)
tree8826f40cd08a1cbe945e82bc3f2495a0ed42ad7d /src/mingw.zig
parentf75d4cbe56f9f8212581f00700600a57ce545ba1 (diff)
parentec3aedffb173845b3fe6f7559e06e1bc3cfde6f7 (diff)
downloadzig-2df2f0020f4ddc41b3b914cd17efcb403cf0f6ad.tar.gz
zig-2df2f0020f4ddc41b3b914cd17efcb403cf0f6ad.zip
Merge pull request #7498 from FireFox317/stage2-llvm
stage2: add initial impl of LLVM backend in self-hosted compiler
Diffstat (limited to 'src/mingw.zig')
-rw-r--r--src/mingw.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mingw.zig b/src/mingw.zig
index a9e275434f..246b0f33dc 100644
--- a/src/mingw.zig
+++ b/src/mingw.zig
@@ -405,7 +405,7 @@ pub fn buildImportLib(comp: *Compilation, lib_name: []const u8) !void {
});
errdefer comp.gpa.free(lib_final_path);
- const llvm = @import("llvm.zig");
+ const llvm = @import("llvm_bindings.zig");
const arch_type = @import("target.zig").archToLLVM(target.cpu.arch);
const def_final_path_z = try arena.dupeZ(u8, def_final_path);
const lib_final_path_z = try arena.dupeZ(u8, lib_final_path);