llvm-project
howto-wasm-minimal


llvm-project | howto-wasm-minimal | |
---|---|---|
1 | 8 | |
25 | 517 | |
- | - | |
10.0 | 3.0 | |
over 4 years ago | over 1 year ago | |
C++ | C++ | |
- | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
llvm-project
-
Show HN: How to compile C/C++ for WASM, pure Clang, no libs, no framework
This was a topic at CppCon'19 (seems like exactly the same use case as you are describing: teaching!). Take a look at https://www.youtube.com/watch?v=5N4b-rU-OAA. I think it relies on the LLVM fork, so not sure how well it'll work for you, quick web search points to: https://github.com/binji/llvm-project.
howto-wasm-minimal
- Milyen pet projektjeitek vannak?
-
Cheerp 3.0: The most advanced C++ compiler for the Web now permissively licensed
I'm particularly curious on what parts cheerp adds to their clang+llvm base. Presumably it's something like the C standard target library for WASM/JS?
For reference, here's examples of what you could do with the baseline clang with wasm (but not JS?) [1] [2] [3], referenced from a similar thread on HN.
[1] https://github.com/ern0/howto-wasm-minimal
[2] https://github.com/robrohan/wefx
[3] https://github.com/PetterS/clang-wasm
-
Show HN: How to compile C/C++ for WASM, pure Clang, no libs, no framework
For future readers, this is the code that is being referred:
https://github.com/ern0/howto-wasm-minimal/blob/master/inc.c...
It should be:
uint32_t gray = 0.299 * ptr[i] + 0.587 * ptr[i+1] + 0.114 * ptr[i+2];
-
Show HN: How to Compile C to WASM
This uses a strange "link broker", the link behind this is pointing to https://github.com/ern0/howto-wasm-minimal
What are some alternatives?
chip8-book - An introduction to Chip-8 emulation using Rust
wefx - Basic WASM graphics package to draw to an HTML Canvas using C. In the style of the gfx library
wasm-fizzbuzz - WebAssembly from Scratch: From FizzBuzz to DooM.
cib - clang running in browser (wasm)
clang-wasm - How to build webassembly files with nothing other than standard Clang/llvm.
intervallo - commodore plus/4 game
matrix-algebra - Some simple Matrix Algebra in WebAssembly

