matrix-algebra
cib
matrix-algebra | cib | |
---|---|---|
1 | 6 | |
1 | 844 | |
- | 0.0% | |
0.0 | 0.0 | |
almost 3 years ago | over 2 years ago | |
JavaScript | C++ | |
- | - |
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.
matrix-algebra
cib
- Clang in Browser
-
Compile and execute C++ in browser
[2]: https://tbfleming.github.io/cib/
-
Using Firecracker and Go to run short-lived, untrusted code execution jobs
Here are some more ports of LLVM and clang to the browser:
* https://github.com/kripken/llvm-js
* https://github.com/tbfleming/cib
* https://github.com/jprendes/emception
LLVM just does pure computation, really, so it's not hard to port to wasm - much simple than say Python (which has also been ported several times). The only challenges with LLVM are the build system (which has self-execution), working around some issues like clang wanting to open a subprocess, and adding some ifdefs.
-
Show HN: How to compile C/C++ for WASM, pure Clang, no libs, no framework
That is half of what I would need for a project, the other half being Clang itself running in the browser (to use for teaching), in theory there is [1] since many years, but in practice it never worked for me (even now I get "Runtime error: memory access out of bounds")
[1] https://tbfleming.github.io/cib/
-
Do any Browser Based C Static Code Analysis Tools Exist?
It seems that there's a project doing exactly that: https://github.com/tbfleming/cib
-
Rust programming concepts for JavaScript developers
It takes some work (mostly due to LLVM building code to run later in its build system as it goes), but it's very feasible. LLVM has been ported to Wasm (and before that to JS) many times, for example:
https://github.com/jprendes/emception (2021)
https://github.com/tbfleming/cib (2017)
https://github.com/kripken/llvm.js (2012)
I agree it would be great to see this repl running 100% in the browser!
What are some alternatives?
wefx - Basic WASM graphics package to draw to an HTML Canvas using C. In the style of the gfx library
chip8-book - An introduction to Chip-8 emulation using Rust
llvm-project - This is the canonical git mirror of the LLVM subversion repository. The repository does not accept github pull requests at this moment. Please submit your patches at http://reviews.llvm.org.
clang-wasm - How to build webassembly files with nothing other than standard Clang/llvm.