SLEdge
June 22, 2026 · View on GitHub
SLEdge is a lightweight serverless solution suitable for edge computing. It builds on WebAssembly sandboxing provided by the aWsm compiler.
Setting up a development environment
SLEdge's aWsm compiler is built against a specific LLVM version (LLVM 13) via the llvm-alt Rust bindings. Those bindings use LLVM C-API functions (e.g. LLVMBuildCall, LLVMBuildLoad) that were removed in LLVM 15+, so the build will fail to link against newer LLVM toolchains.
For this reason, the Docker environment below is the recommended way to build SLEdge. It pins the exact Ubuntu + LLVM 13 + WASI SDK toolchain that the compiler needs, and works on any host with Docker (macOS, Windows/WSL2, or any Linux distribution). To build directly on a Debian or Ubuntu host instead — including Ubuntu 24.04 (noble) — see Native build below.
Docker (recommended)
Note: These steps require Docker. Make sure you've got it installed!
Docker Installation Instructions
We provide a Docker build environment configured with the dependencies and toolchain needed to build the SLEdge runtime and serverless functions.
To setup this environment, run:
./devenv.sh setup
Using the Docker container to compile your serverless functions
To enter the docker environment, run:
./devenv.sh run
The first time you enter this environment, run the following to copy the sledgert binary to /sledge/runtime/bin.
cd /sledge/runtime
make clean all
There are a set of benchmarking applications in the /sledge/applications directory. Run the following to compile all benchmarks runtime tests using the aWsm compiler and then copy all resulting <application>.wasm.so files to /sledge/runtime/bin.
cd /sledge/applications/
make clean all
You now have everything that you need to execute your first serverless function on SLEdge
To exit the container:
exit
To stop the Docker container:
./devenv.sh stop
Deleting Docker Build Containers
If you are finished working with the SLEdge runtime and wish to remove it, run the following command to delete our Docker build and runtime images.
./devenv.sh rma
And then simply delete this repository.
Native build (Linux: Debian or Ubuntu, including 24.04 noble)
install_deb.sh installs the full toolchain directly on the host — the apt dependencies, LLVM 13, the WASI SDK, and a Rust toolchain — after which make install builds the runtime and the sample functions.
On Ubuntu 24.04 (noble) neither the distro nor apt.llvm.org/noble provides LLVM 13, so install_llvm.sh automatically pins the focal apt.llvm.org repository for LLVM 13 and installs the two focal-era runtime libraries that noble dropped (libtinfo5, libffi7). This path is validated on Ubuntu 24.04.4 (noble), x86_64: aWsm, libsledge, the runtime, and all nine sample *.wasm.so modules compile, and the resulting sledgert binary runs.
git clone https://github.com/gwsystems/sledge-serverless-framework.git
cd sledge-serverless-framework
./install_deb.sh
source ~/.bashrc
make install
make test
Caveats:
install_deb.shrequiressudoand usesupdate-alternativesto point the defaultclang,wasm-ld, andllvm-configat version 13. On a host that already runs a newer LLVM as its default (e.g. noble's system clang), this changes that default system-wide.- On noble the toolchain is pinned to focal-era LLVM 13 packages, which are on an older support track; the
apt.llvm.org/focalandarchive.ubuntu.com.debURLs it relies on may eventually move or disappear. - The sample functions are C, compiled with the WASI SDK's clang, so a Rust
wasm32-wasi/wasm32-wasip1target is not required to build them.
On a distribution where neither the native repositories nor the focal fallback provide LLVM 13, use the Docker route above instead.
Running your first serverless function
An SLEdge serverless function consists of a shared library (*.so) and a JSON configuration file that determines how the runtime should execute the serverless function. As an example, here is the configuration file for our sample fibonacci function:
[
{
"name": "GWU",
"port": 10010,
"routes": [
{
"route": "/fib",
"path": "fibonacci.wasm.so",
"expected-execution-us": 6000,
"relative-deadline-us": 20000,
"http-resp-content-type": "text/plain"
}
]
}
]
The port and route fields are used to determine the path where our serverless function will be served served.
In our case, we are running the SLEdge runtime on localhost, so our function is available at localhost:10010/fib.
Our fibonacci function will parse a single argument from the HTTP POST body that we send. The expected Content-Type is "text/plain".
Now that we understand roughly how the SLEdge runtime interacts with serverless function, let's run Fibonacci!
The fastest way to check it out is just to click on the following URL on your Web browser: http://localhost:10010/fib?10
From the root project directory of the host environment (not the Docker container!), navigate to the binary directory
cd runtime/bin/
Now run the sledgert binary, passing the JSON file of the serverless function we want to serve. Because serverless functions are loaded by SLEdge as shared libraries, we want to add the applications/ directory to LD_LIBRARY_PATH.
LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH" ./sledgert ../../tests/fibonacci/bimodal/spec.json
While you don't see any output to the console, the runtime is running in the foreground.
Let's now invoke our serverless function to compute the 10th fibonacci number. We'll use cURL and HTTPie to send a HTTP GET and POST requests with the parameter we want to pass to my serverless function. Feel free to use whatever other network client you prefer!
Open a new terminal session and execute the following
# HTTP GET method:
http localhost:10010/fib?10
curl localhost:10010/fib?10
# HTTP POST method:
echo "10" | http POST localhost:10010/fib
curl -i -d 10 localhost:10010/fib
You should receive the following in response. The serverless function says that the 10th fibonacci number is 55, which seems to be correct!
HTTP/1.1 200 OK
Server: SLEdge
Connection: close
Content-Type: text/plain
Content-Length: 3
55
When done, terminal the SLEdge runtime with Ctrl+c
Running Test Workloads
Various synthetic and real-world tests can be found in runtime/tests. Generally, each experiment can be run by Make rules in the top level test.mk.
make -f test.mk all
Problems or Feedback?
If you encountered bugs or have feedback, please let us know in our issue tracker.