Basic Reducer functionality
This commit is contained in:
parent
46a832ce42
commit
cb2145b882
6 changed files with 628 additions and 445 deletions
10
build.zig
10
build.zig
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue