I'm aware of Emscripten and LLVM, but neither are written in JavaScript intended for a browser.
As far as I can tell, the tools exist, but they haven't been put together, but I could very well be missing some key factor that makes it very difficult to pile C++ to JavaScript in a browser.
So I'll mention my naive implementation:
- Compile Emscripten to C, then use Clang to pile it to LLVM, then use Emscripten to pile it to JavaScript.
- Compile Clang to LLVM, then pile that to JavaScript through Emscripten.
- Write some C++ and run it through JavaScript Clang, then run that LLVM through Emscripten to get JavaSscript
- Run the resulting JavaScript!
I'm sure I'm missing something from my steps. Please let me know, and let me know if there are any efforts by the munity to resolve those missing pieces.
EDIT: JSCPP is the closest I've found, but it lacks a lot of features and frankly the author took on an absurd undertaking, by trying to rewrite the parser etc. on his own, rather than using existing tools. Still, close and pretty neat.
I'm aware of Emscripten and LLVM, but neither are written in JavaScript intended for a browser.
As far as I can tell, the tools exist, but they haven't been put together, but I could very well be missing some key factor that makes it very difficult to pile C++ to JavaScript in a browser.
So I'll mention my naive implementation:
- Compile Emscripten to C, then use Clang to pile it to LLVM, then use Emscripten to pile it to JavaScript.
- Compile Clang to LLVM, then pile that to JavaScript through Emscripten.
- Write some C++ and run it through JavaScript Clang, then run that LLVM through Emscripten to get JavaSscript
- Run the resulting JavaScript!
I'm sure I'm missing something from my steps. Please let me know, and let me know if there are any efforts by the munity to resolve those missing pieces.
EDIT: JSCPP is the closest I've found, but it lacks a lot of features and frankly the author took on an absurd undertaking, by trying to rewrite the parser etc. on his own, rather than using existing tools. Still, close and pretty neat.
Share Improve this question edited Jun 28, 2018 at 12:08 user7637745 9852 gold badges14 silver badges27 bronze badges asked Jun 1, 2017 at 18:15 Sophie McCarrellSophie McCarrell 2,8718 gold badges37 silver badges67 bronze badges 12- 4 Just for clarification - you want to have the browser (client-side) pile C++ to JS and execute it? So essentially create something like a C++ interpreter? Can you elaborate on the scenario you want this for? – UnholySheep Commented Jun 1, 2017 at 18:18
- 1 You got it! as-is I'm just curious, but potentially it could be used to allow people to write tools in C++ on the web and test them on the web, without exposing the server to running C++. – Sophie McCarrell Commented Jun 1, 2017 at 18:28
- 4 I love C++, but why are you trying to use a spoon to cut the meat? – DIEGO CARRASCAL Commented Jun 1, 2017 at 18:37
- 2 While it's not impossible to do what you ask, your reasoning and the points you listed in your question make me believe you misunderstand how C++ (usually) works. It is usually piled, not directly executed, so source code does not pose a risk on it's own. It would be far easier to just send the C++ code to a server, have it run emscripten on it and send back the generated JS to the client. Or do what everyone else does and just pile on your own machine – UnholySheep Commented Jun 1, 2017 at 18:37
- 3 I'm looking for this as well and considered the same solution. Why? Because I want to create interactive C++ learning tutorials that run live on the webpage, no having to install any tools and no special server side service needed. Think static page version of jsfiddle/codepen but for C++. The less good solution would be to run emscripten as a service, send the C++ there and serve the resulting JS but I'm not interested in funding the service. @Jason McCarrel, did you get anywhere? – user128511 Commented Nov 19, 2017 at 6:36
1 Answer
Reset to default 5It is possible to pile C++ to JavaScript using a self-hosting version of Emscripten that runs in a browser, such as emception.
Alternatively, it is possible to run a C++ piler (or even an entire operating system) using an x86 emulator in JavaScript.