diff options
author | Alon Zakai <alonzakai@gmail.com> | 2018-07-04 16:21:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-04 16:21:19 -0700 |
commit | 4c16bd2ce73707e24c4b054d59564049d539a440 (patch) | |
tree | 85429029b3a1c80dd43de47b3e0f105eaada3494 /README.md | |
parent | ac306cb081c8e6a2ea0b50e51b7f673dc2cf989b (diff) | |
download | binaryen-4c16bd2ce73707e24c4b054d59564049d539a440.tar.gz binaryen-4c16bd2ce73707e24c4b054d59564049d539a440.tar.bz2 binaryen-4c16bd2ce73707e24c4b054d59564049d539a440.zip |
Stop bundling binaryen.js builds (#1609)
Instead, we point users to the bot @dcodeIO has, see #1571
This is useful because otherwise every change to binaryen.js requires bundling a build here, which is more work for contributors (and also grows the git repo over time).
We still keep a bundled build of wasm.js. We use that for testing of the interpreter currently, and emscripten depends on it. Eventually wasm2asm may replace that. In any case, wasm.js builds are required far less frequently than binaryen.js.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -67,7 +67,7 @@ This repository contains code that builds the following tools in `bin/`: * **wasm-ctor-eval**: A tool that can execute C++ global constructors ahead of time. Used by Emscripten. * **wasm-emscripten-finalize**: Takes a wasm binary produced by llvm+lld and performs emscripten-specific passes over it. * **wasm.js**: wasm.js contains Binaryen components compiled to JavaScript, including the interpreter, `asm2wasm`, the S-Expression parser, etc., which allow you to use Binaryen with Emscripten and execute code compiled to WASM even if the browser doesn't have native support yet. This can be useful as a (slow) polyfill. - * **binaryen.js**: A standalone JavaScript library that exposes Binaryen methods for [creating and optimizing WASM modules](https://github.com/WebAssembly/binaryen/blob/master/test/binaryen.js/hello-world.js). + * **binaryen.js**: A standalone JavaScript library that exposes Binaryen methods for [creating and optimizing WASM modules](https://github.com/WebAssembly/binaryen/blob/master/test/binaryen.js/hello-world.js). For builds, see [binaryen.js on npm](https://www.npmjs.com/package/binaryen) (or download it directly from [github](https://raw.githubusercontent.com/AssemblyScript/binaryen.js/master/index.js), [rawgit](https://cdn.rawgit.com/AssemblyScript/binaryen.js/master/index.js), or [unpkg](https://unpkg.com/binaryen@latest/index.js)). Usage instructions for each are below. |