https://github.com/mjanjic01/wasm-playground
Simple WebAssembly examples with Emscripten
https://github.com/mjanjic01/wasm-playground
c emscripten webassembly
Last synced: 2 months ago
JSON representation
Simple WebAssembly examples with Emscripten
- Host: GitHub
- URL: https://github.com/mjanjic01/wasm-playground
- Owner: mjanjic01
- Created: 2018-06-07T14:31:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-07T14:32:56.000Z (about 7 years ago)
- Last Synced: 2025-02-14T00:16:39.525Z (4 months ago)
- Topics: c, emscripten, webassembly
- Language: HTML
- Size: 84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## wasm playground
Simple examples of compiling C code to WebAssembly for the web.Requires [Emscripten](http://kripken.github.io/emscripten-site/)
```
# Makefile builds ball example by default.make native # native build
make wasm # WebAssembly build
make clean # Clean build files
```Cube example - from [https://github.com/callahad/spinning-cube](https://github.com/callahad/spinning-cube)
Ball example - my own attempt