-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated build.zig file * Major move from var -> const * Updated mem.copy and reading and writing int slices * Fixing abs and nan * Fixing wasm test executables * Fixing std.mem.rem calls * Fix wasi.zig for std.os -> std.posix changes * Adding build.zig.zon file * Changing to addModule to make bytebox module public * Fixed memory leak related to not freeing datas * Updating ci to 0.12.0 * Fixing stable_array init * Fixed misinterpretation of i32 as i64 related to mem64 changes --------- Co-authored-by: Shem Sedrick <ssedrick@gmail.com>
- Loading branch information
1 parent
1e4fe3f
commit a3e9dba
Showing
19 changed files
with
1,044 additions
and
939 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
.{ | ||
.name = "bytebox", | ||
.version = "0.0.1", | ||
.dependencies = .{}, | ||
.name = "bytebox", | ||
.version = "0.0.1", | ||
.minimum_zig_version = "0.12.0", | ||
.paths = .{ | ||
"src", | ||
"test/mem64", | ||
"test/wasi/run.py", | ||
"test/wasi/bytebox_adapter.py", | ||
"test/wasm/main.zig", | ||
"bench", | ||
"run", | ||
"build.zig", | ||
"build.zig.zon", | ||
"LICENSE", | ||
"README.md", | ||
}, | ||
.dependencies = .{}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.