authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-06-01 19:55:50 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2021-06-01 19:55:50 -07:00
logfa0acac8479c573059713ebb1981ac5a8ed42086
treea56ab8a49a78e8ffb79d751d8e645ae632e01d9f
parent66c00bd056203c6fb78621eebf2919833e6cf605

update to zig master `0.8.0-dev.2711`, fixes #15


5 files changed, 5 insertions(+), 5 deletions(-)

.circleci/config.yml+1-1
......@@ -15,7 +15,7 @@ jobs:
1515 - run: git submodule update --init --recursive
1616
1717 - run: apt -y install xz-utils jq
18 - run: ./download_zig.sh 0.8.0-dev.2133+ad33e3483
18 - run: ./download_zig.sh 0.8.0-dev.2711+11ae6c42c
1919 - run: zig version
2020 - run: zig env
2121 - run: zig build -Dbootstrap
README.md+1-1
......@@ -17,7 +17,7 @@ A package manager for the Zig programming language.
1717- https://github.com/nektro/zigmod/releases
1818
1919## Built With
20- Zig master `0.8.0-dev.2133+ad33e3483`
20- Zig master `0.8.0-dev.2711+11ae6c42c`
2121
2222### Build from Source
2323Initially,
build.zig+1-1
......@@ -10,7 +10,7 @@ pub fn build(b: *Builder) void {
1010 const mode = b.standardReleaseOptions();
1111
1212 const use_full_name = b.option(bool, "use-full-name", "") orelse false;
13 const with_arch_os = b.fmt("-{s}-{s}", .{ @tagName(target.cpu_arch orelse builtin.arch), @tagName(target.os_tag orelse builtin.os.tag) });
13 const with_arch_os = b.fmt("-{s}-{s}", .{ @tagName(target.cpu_arch orelse builtin.cpu.arch), @tagName(target.os_tag orelse builtin.os.tag) });
1414 const exe_name = b.fmt("{s}{s}", .{ "zigmod", if (use_full_name) with_arch_os else "" });
1515
1616 const exe = b.addExecutable(exe_name, "src/main.zig");
docs/README.md+1-1
......@@ -8,7 +8,7 @@ You can learn more about Zig here:
88
99The rest of this documentation will assume you already have Zig installed.
1010
11As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master. The most recent release Zigmod was verified to work with is `0.8.0-dev.2133+ad33e3483`.
11As Zig is still in development itself, if you plan to contribute to Zigmod you will need a master download of Zig. Those can be obtained from https://ziglang.org/download/#release-master. The most recent release Zigmod was verified to work with is `0.8.0-dev.2711+11ae6c42c`.
1212
1313## Download
1414You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source.
src/main.zig+1-1
......@@ -20,7 +20,7 @@ pub fn main() !void {
2020 u.print("zigmod {s} {s} {s} {s}", .{
2121 build_options.version,
2222 @tagName(builtin.os.tag),
23 @tagName(builtin.arch),
23 @tagName(builtin.cpu.arch),
2424 @tagName(builtin.abi),
2525 });
2626 return;