115.0.0 • Published 6 months ago

@grain/libbinaryen v115.0.0

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 months ago

libbinaryen

Libbinaryen packaged for OCaml.

This is just the low-level C library. If you are looking for OCaml bindings to Binaryen, check out Binaryen.ml!

Usage

Inside your dune file, you can depend on libbinaryen as such:

(library
 (name binaryen)
 (public_name binaryen)
 (libraries libbinaryen.c)
 (foreign_stubs
  (language c)
  (names binaryen_stubs)
  (flags :standard -O2 -Wall -Wextra)))

MacOS C++ Compiler

When including this library in your dune MacOS executables, you'll need to specify -cc clang++ in your (flags) stanza. This is required because Binaryen will throw errors for itself to catch and using clang++ is the only way to handle them correctly. You can find more info on this ocaml issue.

Your stanza could look something like this:

 (executable
  (name example)
  (public_name example)
  (package example)
+ (flags -cc clang++)
  (modules example)
  (libraries binaryen))

These flags likely won't work on other operating systems, so you'll probably need to use dune-configurator to vary the flags per platform. You can see an example of this in our tests/.

Static Linking

If you are planning to create portable binaries for Windows, it will try to find Cygwin/MinGW locations in your PATH. To avoid this, you probably want to add this to your (executable) stanzas:

 (executable
  (name example)
  (public_name example)
  (package example)
+ (flags (:standard -ccopt -- -ccopt -static))
  (modules example)
  (libraries binaryen))

These flags might not work on other operating systems (like MacOS), so you'll probably need to use dune-configurator to vary the flags per platform. You can see an example of this in our tests/.

Contributing

You'll need Node.js and esy to build this project. You should be able to use Opam if you are more comfortable with it, but the core team does all development using esy.

dune will take care of compiling Binaryen, so to build the project you'll only need to run:

esy

This will take a while. Once it's done, you can run the tests:

esy test
114.0.0

6 months ago

115.0.0

6 months ago

111.1.0

10 months ago

112.0.0

10 months ago

113.0.0

7 months ago

111.0.0

1 year ago

110.0.0

1 year ago

109.0.1

2 years ago

109.0.0

2 years ago

108.0.0

2 years ago

106.0.0

2 years ago

107.0.1

2 years ago

107.0.0

2 years ago

101.0.2

2 years ago

104.0.0

2 years ago

102.0.4

2 years ago

102.0.3

2 years ago

102.0.2

2 years ago

102.0.1

2 years ago

103.0.1

2 years ago

102.0.0

2 years ago

103.0.0

2 years ago

105.1.0

2 years ago

105.0.0

2 years ago

101.0.1

2 years ago

101.0.0

2 years ago