package libbinaryen
Install
Dune Dependency
Authors
Maintainers
Sources
md5=5b45c146dd6d62a19fb0089f11795a17
sha512=d2fdf834ee48fdc5ffa0f8d3574f400afdcf7002ee3cfc6485a0f89f20b8b1cdd7d7ae4c56ef4e5e396bad6a579733da9d94bd07f881cc962974b53f2a297e67
README.md.html
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))
(c_library_flags :standard -lstdc++ -lpthread))
Dependencies
This project requires CMake
and python
(v3.5 or greater).
When installing with opam, both of these dependencies will be checked using conf-cmake
and conf-python-3
.
When installing with esy, CMake will be built from source, and, on Mac or Linux, Python must be globally installed within a location that esy knows about (those being /usr/local/bin
, /usr/bin
, /bin
, /usr/sbin
, or /sbin
). On Windows, a suitable python is already available from esy-bash.
Library flags
This package attempts to smooth over configuration frustrations by providing specific library_flags
when built.
MacOS
In order to support Mac M1, this package assumes you are using clang++
on MacOS and applies the flags -cc clang++
to the built library.
Windows
On Windows, this package assumes libbinaryen is built under MinGW and applies the flags -ccopt -- -ccopt -static
to the built library.
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