summaryrefslogtreecommitdiff
path: root/build.zig
diff options
context:
space:
mode:
authorGravatar Sam Atman2026-02-04 21:21:14 -0500
committerGravatar Sam Atman2026-02-04 21:21:14 -0500
commit904fa4d94f30825bec490133ff402c6350f45e26 (patch)
treecbfc44b59ca1e539d6d2a4ff8f083fb4e25d41ef /build.zig
parentRest of the 'easy' stuff (diff)
downloadzg-904fa4d94f30825bec490133ff402c6350f45e26.tar.gz
zg-904fa4d94f30825bec490133ff402c6350f45e26.tar.xz
zg-904fa4d94f30825bec490133ff402c6350f45e26.zip
Teasing out canonicalization
After coping with a spuriously broken autohash for awhile, I got the one remaining hash table moved into memory, so there's no further reason to put up with allocation of basic structures. So that's nice.
Diffstat (limited to 'build.zig')
-rw-r--r--build.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.zig b/build.zig
index be91f50..3cf69aa 100644
--- a/build.zig
+++ b/build.zig
@@ -91,7 +91,7 @@ pub fn build(b: *std.Build) void {
91 }); 91 });
92 canon_gen_exe.root_module.addAnonymousImport("UnicodeData.txt", .{ .root_source_file = b.path("data/unicode/UnicodeData.txt") }); 92 canon_gen_exe.root_module.addAnonymousImport("UnicodeData.txt", .{ .root_source_file = b.path("data/unicode/UnicodeData.txt") });
93 const run_canon_gen_exe = b.addRunArtifact(canon_gen_exe); 93 const run_canon_gen_exe = b.addRunArtifact(canon_gen_exe);
94 const canon_gen_out = run_canon_gen_exe.addOutputFileArg("canon.bin.z"); 94 const canon_gen_out = run_canon_gen_exe.addOutputFileArg("canon.zig");
95 95
96 const compat_gen_exe = b.addExecutable(.{ 96 const compat_gen_exe = b.addExecutable(.{
97 .name = "compat", 97 .name = "compat",