How to Install and Uninstall binaryen Package on Ubuntu 20.10 (Groovy Gorilla)

Last updated: May 13,2024

1. Install "binaryen" package

This tutorial shows how to install binaryen on Ubuntu 20.10 (Groovy Gorilla)

$ sudo apt update $ sudo apt install binaryen

2. Uninstall "binaryen" package

This guide let you learn how to uninstall binaryen on Ubuntu 20.10 (Groovy Gorilla):

$ sudo apt remove binaryen $ sudo apt autoclean && sudo apt autoremove

3. Information about the binaryen package on Ubuntu 20.10 (Groovy Gorilla)

Package: binaryen
Architecture: amd64
Version: 96-1
Priority: optional
Section: universe/devel
Origin: Ubuntu
Maintainer: Ubuntu Developers
Original-Maintainer: Markus Koschany
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Installed-Size: 11734
Depends: libc6 (>= 2.29), libgcc-s1 (>= 3.4), libstdc++6 (>= 9)
Filename: pool/universe/b/binaryen/binaryen_96-1_amd64.deb
Size: 2386068
MD5sum: 682f99e611e5ea2c999012aa9125590d
SHA1: 8477519f05a3272e428a3440710cf21633347184
SHA256: bcffb40edf1155a52c3e40d1ea3ef41673c21c82d0c62fbc58f052effd71bb66
SHA512: 7f78d3c24137aea7b402a845b445d7dd9335239f34d6cbb1bb0c8a667028bade4ba38e1347312005e07747a10ce9556b10b2f08b7d76b92bd33bee209b9011f4
Homepage: https://github.com/WebAssembly/binaryen
Description-en: compiler and toolchain infrastructure library for WebAssembly
Binaryen is a compiler and toolchain infrastructure library for WebAssembly,
written in C++. It aims to make compiling to WebAssembly easy, fast, and
effective:
.
* Easy: Binaryen has a simple C API in a single header, and can also be used
from JavaScript. It accepts input in WebAssembly-like form but also
accepts a general control flow graph for compilers that prefer that.
.
* Fast: Binaryen's internal IR uses compact data structures and is designed
for completely parallel codegen and optimization, using all available CPU
cores. Binaryen's IR also compiles down to WebAssembly extremely easily and
quickly because it is essentially a subset of WebAssembly.
.
* Effective: Binaryen's optimizer has many passes that can improve code very
significantly (e.g. local coloring to coalesce local variables; dead code
elimination; precomputing expressions when possible at compile time; etc.).
These optimizations aim to make Binaryen powerful enough to be used as a
compiler backend by itself. One specific area of focus is on
WebAssembly-specific optimizations (that general-purpose compilers might not
do), which you can think of as wasm minification , similar to minification
for JavaScript, CSS, etc., all of which are language-specific (an example of
such an optimization is block return value generation in SimplifyLocals).
Description-md5: 1b6fbe6d2a104a5a4e75c4d4b14d60e6