tangled
alpha
login
or
join now
reykjalin.org
/
todui
0
fork
atom
Todo TUI powered by plaintext with full mouse support
0
fork
atom
overview
issues
pulls
pipelines
build: add windows back into cross compilation array
reykjalin.org
1 year ago
d7b8a6a7
9b997933
verified
This commit was signed with the committer's
known signature
.
reykjalin.org
SSH Key Fingerprint:
SHA256:B7EjPT4uG+aEOr90nGAIvQD31CvEG9R28/s/E29ocv0=
+1
-3
1 changed file
expand all
collapse all
unified
split
build.zig
+1
-3
build.zig
···
13
13
.{ .cpu_arch = .aarch64, .os_tag = .linux },
14
14
.{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .gnu },
15
15
.{ .cpu_arch = .x86_64, .os_tag = .linux, .abi = .musl },
16
16
-
// Windows support not available due to a call to self.tty.write().
17
17
-
// Re-enable once that has been removed following a libvaxis update.
18
18
-
// .{ .cpu_arch = .x86_64, .os_tag = .windows },
16
16
+
.{ .cpu_arch = .x86_64, .os_tag = .windows },
19
17
};
20
18
21
19
// Based on https://ziglang.org/learn/build-system/#release.