-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of git.sr.ht:~mrms/tophat
- Loading branch information
Showing
7 changed files
with
17 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
set -e | ||
|
||
# run make to do all the necessary embedding stuff | ||
# make | ||
make | ||
|
||
cc () { | ||
echo EMCC $f | ||
|
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
Submodule miniaudio
updated
5 files
+13 −0 | CHANGES.md | |
+70 −51 | extras/miniaudio_split/miniaudio.c | |
+4 −3 | extras/miniaudio_split/miniaudio.h | |
+73 −53 | miniaudio.h | |
+1 −0 | tests/test_deviceio/ma_test_deviceio.c |
Submodule stb
updated
8 files
+3 −0 | .gitignore | |
+7 −5 | README.md | |
+173 −175 | stb_image.h | |
+610 −588 | stb_image_resize2.h | |
+259 −0 | tests/pngsuite/ref_results.csv | |
+47 −0 | tests/test_png_paeth.c | |
+75 −0 | tests/test_png_regress.c | |
+4 −2 | tools/README.header.md |
Submodule umka
updated
28 files
+2 −1 | README.md | |
+7 −0 | build_playground_linux.sh | |
+2 −0 | doc/lang.md | |
+22 −1 | doc/lib.md | |
+1 −1 | playground/umka.js | |
+2 −0 | run_emscripten_linux.sh | |
+0 −0 | runtime/embed_runtime_linux.sh | |
+19 −2 | runtime/std.um | |
+11 −7 | src/umka_common.c | |
+4 −0 | src/umka_compiler.c | |
+5 −5 | src/umka_decl.c | |
+6 −3 | src/umka_expr.c | |
+3 −3 | src/umka_ident.c | |
+1 −1 | src/umka_lexer.c | |
+25 −0 | src/umka_runtime.c | |
+4 −0 | src/umka_runtime.h | |
+535 −518 | src/umka_runtime_src.h | |
+43 −7 | src/umka_stmt.c | |
+3 −3 | src/umka_types.c | |
+2 −2 | src/umka_types.h | |
+1 −0 | src/umka_vm.c | |
+8 −4 | tests/all.um | |
+700 −687 | tests/expected.log | |
+14 −0 | tests/imports4.um | |
+2 −0 | tests/path with spaces/a.um | |
+0 −0 | tests/path with spaces/b.um | |
+0 −0 | tests/path with spaces/module with spaces.um | |
+39 −0 | tests/redecl.um |