| author | |
| committer | |
| log | fa0acac8479c573059713ebb1981ac5a8ed42086 |
| tree | a56ab8a49a78e8ffb79d751d8e645ae632e01d9f |
| parent | 66c00bd056203c6fb78621eebf2919833e6cf605 |
5 files changed, 5 insertions(+), 5 deletions(-)
.circleci/config.yml+1-1| ... | @@ -15,7 +15,7 @@ jobs: | ... | @@ -15,7 +15,7 @@ jobs: |
| 15 | - run: git submodule update --init --recursive | 15 | - run: git submodule update --init --recursive |
| 16 | 16 | ||
| 17 | - run: apt -y install xz-utils jq | 17 | - 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 |
| 19 | - run: zig version | 19 | - run: zig version |
| 20 | - run: zig env | 20 | - run: zig env |
| 21 | - run: zig build -Dbootstrap | 21 | - run: zig build -Dbootstrap |
README.md+1-1| ... | @@ -17,7 +17,7 @@ A package manager for the Zig programming language. | ... | @@ -17,7 +17,7 @@ A package manager for the Zig programming language. |
| 17 | - https://github.com/nektro/zigmod/releases | 17 | - https://github.com/nektro/zigmod/releases |
| 18 | 18 | ||
| 19 | ## Built With | 19 | ## Built With |
| 20 | - Zig master `0.8.0-dev.2133+ad33e3483` | 20 | - Zig master `0.8.0-dev.2711+11ae6c42c` |
| 21 | 21 | ||
| 22 | ### Build from Source | 22 | ### Build from Source |
| 23 | Initially, | 23 | Initially, |
build.zig+1-1| ... | @@ -10,7 +10,7 @@ pub fn build(b: *Builder) void { | ... | @@ -10,7 +10,7 @@ pub fn build(b: *Builder) void { |
| 10 | const mode = b.standardReleaseOptions(); | 10 | const mode = b.standardReleaseOptions(); |
| 11 | 11 | ||
| 12 | const use_full_name = b.option(bool, "use-full-name", "") orelse false; | 12 | 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) }); |
| 14 | const exe_name = b.fmt("{s}{s}", .{ "zigmod", if (use_full_name) with_arch_os else "" }); | 14 | const exe_name = b.fmt("{s}{s}", .{ "zigmod", if (use_full_name) with_arch_os else "" }); |
| 15 | 15 | ||
| 16 | const exe = b.addExecutable(exe_name, "src/main.zig"); | 16 | 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: | ... | @@ -8,7 +8,7 @@ You can learn more about Zig here: |
| 8 | 8 | ||
| 9 | The rest of this documentation will assume you already have Zig installed. | 9 | The rest of this documentation will assume you already have Zig installed. |
| 10 | 10 | ||
| 11 | As 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`. | 11 | As 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`. |
| 12 | 12 | ||
| 13 | ## Download | 13 | ## Download |
| 14 | You may download a precompiled binary from https://github.com/nektro/zigmod/releases or build the project from source. | 14 | You 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 { | ... | @@ -20,7 +20,7 @@ pub fn main() !void { |
| 20 | u.print("zigmod {s} {s} {s} {s}", .{ | 20 | u.print("zigmod {s} {s} {s} {s}", .{ |
| 21 | build_options.version, | 21 | build_options.version, |
| 22 | @tagName(builtin.os.tag), | 22 | @tagName(builtin.os.tag), |
| 23 | @tagName(builtin.arch), | 23 | @tagName(builtin.cpu.arch), |
| 24 | @tagName(builtin.abi), | 24 | @tagName(builtin.abi), |
| 25 | }); | 25 | }); |
| 26 | return; | 26 | return; |