Wasm Builders 🧱

Cover image for Executing a C/Cpp program to WebAssembly inside Browser.
Aryan Kaushik
Aryan Kaushik

Posted on

Executing a C/Cpp program to WebAssembly inside Browser.

Hi There! Hope you are doing well. It is always exciting to learn new stuff and experimenting. Today, we are going to execute a C/Cpp program to Webassembly inside a browser.

Here we go!

1. First, let's set up the required development environment.

Emscripten Environment Setup:

Emscripten is an LLVM/Clang-based compiler that compiles C and C++ source code to WebAssembly, primarily for execution in web browsers.

The core Emscripten SDK (emsdk) driver is a Python script. You can get it for the first time with:

a. Clone the repo from github

git clone https://github.com/emscripten-core/emsdk.git
Enter fullscreen mode Exit fullscreen mode

=>Move to emsdk:
cd emsdk

1

b. Fetch the latest version of the emsdk (not needed the first time you clone)

git pull

c. Download and install the latest SDK tools.

./emsdk install latest
Enter fullscreen mode Exit fullscreen mode

d. Make the "latest" SDK "active" for the current user. (writes .emscripten file)

./emsdk activate latest
Enter fullscreen mode Exit fullscreen mode

e. Activate PATH and other environment variables in the current terminal

source ./emsdk_env.sh
Enter fullscreen mode Exit fullscreen mode

For me it worked like

source "/home/aryan/emsdk/emsdk_env.sh"
Enter fullscreen mode Exit fullscreen mode

Configure emsdk in your shell startup scripts by running:

echo 'source "/home/aryan/emsdk/emsdk_env.sh"' >> $HOME/.bash_profile
Enter fullscreen mode Exit fullscreen mode

2.

3.

You can also install a specific version by specifying it, for example, it is not necessary for beginners.
./emsdk install 1.38.45

=> Python is not provided by emsdk. So, the user is expected to install this beforehand with the system package manager:

Install Python

sudo apt-get install python3
Enter fullscreen mode Exit fullscreen mode

Install CMake (optional, only needed for tests and building Binaryen or LLVM)

sudo apt-get install cmake
Enter fullscreen mode Exit fullscreen mode

2. Now Create a Hello World .c program and save it as HelloWorld.c

#include<stdio.h> // define the header file  
void main()   // define the main function  
{  
    printf("Hello World \n");  // print the statement.  
}  
Enter fullscreen mode Exit fullscreen mode

c

Now, we have to compile it using below command :

emcc HelloWorld.c -o hello.html -s WASM=1
Enter fullscreen mode Exit fullscreen mode

4.

After compilation, if you have tried to open the file hello.html with certain browsers , You may get an error message instead of output that you want.

That is because the operation of loading of the WASM module is asynchronous, and some browsers (for security reasons) do not allow you to do this if the URL is of the kind file://path/to/file/file.html.

In order to solve that issue you can run a local server this way using below command :

python3 -m http.server 8080
Enter fullscreen mode Exit fullscreen mode

5.

3. Go to browser and type in localhost:8080 or http://127.0.0.1:8080/

6.

4. Now Open hello.html

7.

Finally, After a long hustle we have been able to Execute a C program to WebAssembly inside a Browser.

done

Same steps for cpp, just save the prgram with .cpp extension and the rest of the process is same as it is.

References:

  1. https://developer.mozilla.org/enUS/docs/WebAssembly/C_to_wasm
  2. https://emscripten.org/docs/getting_started/downloads.html
  3. https://github.com/enarx/outreachy/tree/main/shravi24/Demos/Inside%20Browser/C

Do comment your ideas and suggestions related to the blog and please share if you found it useful.
Write your queries in comment section, we'll help you to resolve your errors.

Oldest comments (0)