Top "Emscripten" questions

Emscripten is an LLVM-to-JavaScript compiler.

Compiling Python to WebAssembly

I have read that it is possible to convert Python 2.7 code to Web Assembly, but I cannot find a definitive …

python emscripten webassembly
Pass a JavaScript array as argument to a WebAssembly function

I would like to test WebAssembly for doing some complex array calculations. So I've written a simple C++ function adding …

javascript c++ browser emscripten webassembly
Can I read files from the disk by using Webassembly?

I followed the Webassembly getting started tutorial http://webassembly.org/getting-started/developers-guide/ It worked fine and displayed the "Hello, world!" …

c++ emscripten webassembly
How to handle passing/returning array pointers to emscripten compiled code?

I am new to Emscripten/javascript as well as this Overstack community. I apologize, in advance, if my situation has …

javascript emscripten
Using Boost with Emscripten

I have a c++ project I would like to convert to a web application. For this purpose, I would like …

javascript c++ boost emscripten
Is it possible to submit HTTP requests with WebAssembly?

I'm trying to submit a simple HTTP GET request in WebAssembly. For this purpose, I wrote this program (copied from …

c http xmlhttprequest emscripten webassembly
How to pass strings between C++ and javascript via emscripten

I am learning emscripten, and I can't even get the most basic string manipulation working, when passing strings between C++ …

javascript c++ emscripten
Installing Emscripten on Ubuntu

I am trying to install Emscripten on Ubuntu, but the official installation guide for Emscripten doesn't offer any instructions for …

ubuntu emscripten
Emscripten - cmake - pass emscripten options in CMakeList file

How to use emcmake cmake and pass emscripten command-line options? Pretty new to c++ / CMake, but can't find anything helpful …

c++ cmake emscripten webassembly
WebAssembly calling JavaScript methods from wasm i.e. within C++ code

I was playing with WebAssembly and so far and I was able to manage emscripten compile my test C++ project …

javascript c++11 emscripten webassembly