Basic Reducer functionality

This commit is contained in:
ookami125 2025-03-09 05:35:17 -04:00
parent 46a832ce42
commit cb2145b882
6 changed files with 628 additions and 445 deletions

View file

@ -9,11 +9,11 @@ pub fn build(b: *std.Build) void {
// means any target is allowed, and the default is native. Other options
// for restricting supported target set are available.
//const target = b.resolveTargetQuery(.{
// .cpu_arch = .wasm32,
// .os_tag = .freestanding,
//});
const target = b.standardTargetOptions(.{});
const target = b.resolveTargetQuery(.{
.cpu_arch = .wasm32,
.os_tag = .freestanding,
});
//const target = b.standardTargetOptions(.{});
// Standard optimization options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not