commit | 896c940a23b2f43f2e69dc68b34c78f5e8d98ab2 | [log] [tgz] |
---|---|---|
author | Michal Cierniak <cierniak@users.noreply.github.com> | Fri Jan 15 21:21:34 2016 |
committer | Michal Cierniak <cierniak@users.noreply.github.com> | Fri Jan 15 21:21:34 2016 |
tree | e39726ad13c4d36c62308f3b5803518babe08f7a | |
parent | 7eb0d95bfd337f5fd48758f39948eab08b117f7c [diff] |
Changed NotImplementedError to Exception.
This repository contains tools and scripts to compile C/C++ to a WebAssembly binary format, and run it.
Currently this includes:
LLVM: for compiling C source to the “.s” format, which is the current output of WebAssembly by the LLVM backend.
binaryen: different tools, including s2wasm
for converting .s
to the S-expression format as defined in the spec repo.
sexpr-wasm: for converting the S-expression format to the v8-native binary format.
v8-native: for running the binary.
At this time, the contents of this repository are under development and known to be incomplet and inkorrect.
Participation is welcome, though many of the changes will need to be landed in other repositories.
Clone the repo, update the submodules, and update LLVM:
$ git clone https://github.com/WebAssembly/wasm-e2e $ cd wasm-e2e $ git submodule update --init $ ./scripts/update-llvm.sh
LLVM is not included as a submodule because it is quite large and requires a repo to be installed inside another repo. The update-llvm.sh
script clones with --depth 5000
to reduce the download size.
Updating the repo is almost the same:
$ git pull origin master $ git submodule update $ ./scripts/update-llvm.sh
To build all the tools:
$ ./scripts/build-all.sh
You can also build each component separately:
./scripts/build-llvm.sh
./scripts/build-d8.sh
./scripts/build-sexpr-wasm.sh
Use the ./script/run.py
Python script to compile and run a C source file:
$ ./scripts/run.py test/hello.c Hello, world! $ scripts/run.py test/fizzbuzz.c 1 2 fizz 4 buzz fizz 7 8 fizz buzz 11 fizz 13 14 fizzbuzz 16 17 fizz 19
The script compiles the C source to v8-native binary format.