diff options
| author | Timon Kruiper <timonkruiper@gmail.com> | 2020-12-19 11:22:49 +0100 |
|---|---|---|
| committer | Timon Kruiper <timonkruiper@gmail.com> | 2020-12-28 21:19:40 +0100 |
| commit | 071417161d5d7ab91c32073693590ef161017dbe (patch) | |
| tree | 891bfd9fecd90b9b341d95dfb78399788f62c3ed /src/Compilation.zig | |
| parent | 4a0d64300bd9ab1a8c35c634856396e3413200f1 (diff) | |
| download | zig-071417161d5d7ab91c32073693590ef161017dbe.tar.gz zig-071417161d5d7ab91c32073693590ef161017dbe.zip | |
stage2: add initial impl of LLVM backend in self-hosted compiler
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 885ecbb95c..26beeccd9e 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -2106,7 +2106,7 @@ pub fn addCCArgs( try argv.append("-D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS"); } - const llvm_triple = try @import("codegen/llvm.zig").targetTriple(arena, target); + const llvm_triple = try @import("llvm_backend.zig").targetTriple(arena, target); try argv.appendSlice(&[_][]const u8{ "-target", llvm_triple }); switch (ext) { |
