diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2018-10-06 00:11:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-06 00:11:39 -0400 |
| commit | d40c4e7c896c5dfed9dd35e8c0d2117f7cf5c53c (patch) | |
| tree | 07f7204287159ca5c9926e797144ef91ab35cdb6 /src-self-hosted/libc_installation.zig | |
| parent | 5b84192f07d5e4b3f5ebcd3e08d79852710c04f4 (diff) | |
| parent | 2d2734172484871eb56705e77acca50a8c83d8ae (diff) | |
| download | zig-d40c4e7c896c5dfed9dd35e8c0d2117f7cf5c53c.tar.gz zig-d40c4e7c896c5dfed9dd35e8c0d2117f7cf5c53c.zip | |
Merge pull request #1429 from shawnl/arm64
initial arm64 support
Diffstat (limited to 'src-self-hosted/libc_installation.zig')
| -rw-r--r-- | src-self-hosted/libc_installation.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src-self-hosted/libc_installation.zig b/src-self-hosted/libc_installation.zig index bbfc0125f4..9f603fd9e8 100644 --- a/src-self-hosted/libc_installation.zig +++ b/src-self-hosted/libc_installation.zig @@ -280,7 +280,7 @@ pub const LibCInstallation = struct { switch (builtin.arch) { builtin.Arch.i386 => try stream.write("x86"), builtin.Arch.x86_64 => try stream.write("x64"), - builtin.Arch.aarch64 => try stream.write("arm"), + builtin.Arch.aarch64v8 => try stream.write("arm"), else => return error.UnsupportedArchitecture, } const ucrt_lib_path = try std.os.path.join(loop.allocator, result_buf.toSliceConst(), "ucrt.lib"); @@ -355,7 +355,7 @@ pub const LibCInstallation = struct { switch (builtin.arch) { builtin.Arch.i386 => try stream.write("x86\\"), builtin.Arch.x86_64 => try stream.write("x64\\"), - builtin.Arch.aarch64 => try stream.write("arm\\"), + builtin.Arch.aarch64v8 => try stream.write("arm\\"), else => return error.UnsupportedArchitecture, } const kernel32_path = try std.os.path.join(loop.allocator, result_buf.toSliceConst(), "kernel32.lib"); |
