summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Explicitly disable WASM_BIGINT in emcc build when the CMake flag is off (#7162)Derek Schuff2024-12-191-0/+2
| | | | This handles the case where WASM_BIGINT is enabled by default by emcc. Binaryen's JS bindings do not currently work with bigint (see #7163)
* Version 121 (#7153)Thomas Lively2024-12-161-1/+1
|
* Version 120 (#7033)Alon Zakai2024-10-251-1/+1
|
* Version 119 (#6910)Alon Zakai2024-09-051-1/+1
|
* [FP16] Implement load and store instructions. (#6796)Brendan Dahl2024-08-061-0/+1
| | | | Specified at https://github.com/WebAssembly/half-precision/blob/main/proposals/half-precision/Overview.md
* binaryen.js: Avoid catching exit, which confuses Node error reporting (#6764)Alon Zakai2024-07-171-0/+6
| | | | | | | Fixes https://github.com/emscripten-core/emscripten/issues/17228 This seems the right default in binaryen.js which is used as a library through npm mostly. We aren't a main program that wants to control node exclusively.
* Version 118 (#6720)Alon Zakai2024-07-081-1/+1
|
* Make Emscripten CMake build more configurable (#6638)Derek Schuff2024-05-311-3/+16
| | | | | | | | | | This makes several changes to make the Emscripten build more configurable and convenient for testing: 1) Remove ERROR_ON_WASM_CHANGES_AFTER_LINK from ENABLE_BIGINT: this makes the setting composable with optimized builds 2) Add EMSCRIPTEN_ENABLE_MEMORY64 to build with the memory64 option 3) Add EMSCRIPTEN_ENABLE_SINGLE_FILE to allow disabling the single-file build (to make it easier to analyze binary output)
* [cmake] Remove redundant `binaryen_emscripten_SOURCES` (#6602)Sam Clegg2024-05-171-7/+2
| | | This list is identical to `binaryen_SOURCES` above.
* [NFC] Disable a warning that happens on system headers on CI (#6597)Alon Zakai2024-05-151-0/+4
|
* Fix Emscripten build with -Wno-unused-command-line-argument (#6392)Thomas Lively2024-03-121-1/+5
| | | | Emscripten had started complaining about the repeated NODERAWFS arguments in the link command, but they would be nontrivial to deduplicate.
* Release 117 (#6358)Alon Zakai2024-02-271-1/+1
|
* [Emscripten port] Improve emcc flags (#6349)Alon Zakai2024-02-261-1/+18
| | | | | | | | | | | | | | | No changes here to binaryen.js/wasm builds. 1. Add a flag to enable pthreads. 2. Use SINGLE_FILE on binaryen.js/.wasm as before, which is nice for library users as they want just a single file to distribute for Binaryen support. For other builds like wasm-opt.js etc. no longer set SINGLE_FILE, as that type of build wants to be a replacement for a normal wasm-opt build as much as possible, so avoid the overhead of SINGLE_FILE. (Previously we disabled SINGLE_FILE also in the case of BUILD_FOR_BROWSER but I don't think we need to special-case that any more.)
* JS Bindings: Use stringToUTF8OnStack instead of deprecated ↵Alon Zakai2024-02-201-2/+2
| | | | | allocateUTF8OnStack (#6324) This avoids a warning on recent Emscripten.
* binaryen.js: Remove closure flags that set the ES version (#6157)Alon Zakai2023-12-081-4/+1
| | | Emscripten sets that itself these days.
* Improve browser build target (#6135)Thomas Steiner2023-11-281-4/+5
| | | | | | * No `SINGLE_FILE` when building for browser * Ensure `STACK_SIZE` is big enough * Fix indentation
* Add browser target for binaryen toolchain utilities (#6131)Thomas Steiner2023-11-211-5/+21
|
* [NFC] Add explicit deduction guides for CTAD (#6094)Thomas Lively2023-11-091-0/+5
| | | | | | | | | | | Class template argument deduction (CTAD) is a C++17 feature that allows variables to be declared with class template types without specifying the template parameters. Deduction guides are a mechanism by which template authors can control how the template parameters are inferred when CTAD is used. The Google style guide prohibits the use of CTAD except where template authors opt in to supporting it by providing explicit deduction guides. For compatibility with users adhering to Google style, set the compiler flag to check this condition and add the necessary deduction guides to make the compiler happy again.
* [analysis][NFC] Use C++20 concepts for Lattice (#6027)Thomas Lively2023-10-181-0/+1
| | | | | | | | | | | | | Replace the static assertions ensuring that Lattice types have the necessary operations with a C++20 concept called `Lattice`. To avoid name conflicts with the new concept, rename existing type parameters named `Lattice` to `L`. When not building with C++20, `Lattice` is a macro that resolves to `typename` so the code continues compiling and has the same behavior, but without any eager checks of the requirements on lattices. Add a new C++20 builder to CI to ensure that future changes compile with both C++17 and C++20. Once we switch to C++20 by default, the new builder can be removed. Update the lint builder to use a recent clang-format that understands concepts.
* [NFC] Split the new wat parser into multiple files (#5960)Thomas Lively2023-09-191-3/+5
| | | | | | And put the new files in a new source directory, "parser". This is a rough split and is not yet expected to dramatically improve compile times. The exact organization of the new files is subject to change, but this splitting should be enough to make further parser development more pleasant.
* Prepare to release Version 116 (#5940)Thomas Lively2023-09-141-1/+1
| | | The important included change is the switch to default GC opcodes.
* Prepare to release Version 115 (#5924)Alon Zakai2023-09-111-1/+1
|
* version_114 (#5789)Alon Zakai2023-06-281-1/+1
|
* Prepare to release v113 (#5726)Alon Zakai2023-05-161-1/+1
|
* [analysis] Add a new iterable CFG utility (#5712)Thomas Lively2023-05-121-3/+5
| | | | | | | | | | | | | | | | | | | | Add a new "analysis" source directory that will contain the source for a new static program analysis framework. To start the framework, add a CFG utility that provides convenient iterators for iterating through the basic blocks of the CFG as well as the predecessors, successors, and contents of each block. The new CFGs are constructed using the existing CFGWalker, but they are different in that the new utility is meant to provide a usable representation of a CFG whereas CFGWalker is meant to allow collecting arbitrary information about each basic block in a CFG. For testing and debugging purposes, add `print` methods to CFGs and basic blocks. This requires exposing the ability to print expression contents excluding children, which was something we previously did only for StackIR. Also add a new gtest file with a test for constructing and printing a CFG. The test reveals some strange properties of the current CFG construction, including empty blocks and strange placement of `loop` instructions, but fixing these problems is left as future work.
* Avoid specifying multiple opt level in cflags (#5103)Sam Clegg2023-04-291-5/+5
| | | | CMake defaults to -O3 to release builds. We were overriding that to -O2 in general and re-overriding back to -O3 for emscripten.
* Remove binaryen.js debug build changes to WASM_BIGINT flag (#5654)Alon Zakai2023-04-131-2/+13
| | | Fixes #5647
* Fix Emscripten build for latest tot changes (#5610)Alon Zakai2023-03-311-2/+2
|
* Release 112 (#5486)Alon Zakai2023-02-101-1/+1
|
* Add a CMake flag to enable Wasm exceptions in the BinaryenJS build (#5454)Derek Schuff2023-02-021-2/+9
|
* binaryen.js: Properly export malloc/free (#5324)Alon Zakai2022-12-051-0/+2
| | | | This should unbreak the build. This is an old problem but was just noticed due to a recent emscripten change (emscripten-core/emscripten#18292).
* Add CMake option to only build tools needed for Emscripten (#5319)Derek Schuff2022-12-021-0/+3
| | | This helps cut the size and build time of the emsdk package.
* Rename BYN_INSTALL_TOOLS_ONLY to INSTALL_LIBS (NFC) (#5318)Derek Schuff2022-12-021-2/+5
| | | This better reflects what it really means. Also declare it with option()
* Remove `-sEXPORT_ES6` + Node.js workaround for binaryen.js (#5235)Kleis Auke Wolthuizen2022-11-211-3/+0
| | | This workaround is no longer needed after commit emscripten-core/emscripten@ce4c405.
* Release 111 (#5264)Thomas Lively2022-11-181-1/+1
|
* Make closure errors into warnings in the Emscripten builds (#5063)Thomas Lively2022-09-201-0/+4
| | | | This should make the CI green again. Also fix one of the errors. I haven't fixed the other errors because I don't know how.
* Fix build on Emscripten tip of tree (#5019)Alon Zakai2022-09-061-0/+2
|
* Release 110 (#5001)Alon Zakai2022-08-311-1/+1
|
* Improve wasm debug build (#4842)Derek Schuff2022-07-291-4/+10
| | | | | When building Binaryen to wasm in debug mode, 1) Avoid post-link Binaryen changes with WASM_BIGINT and by avoiding O3 2) Don't use SINGLE_FILE, to make it easier to analyze the resulting wasm
* Remove usage of emscripten's deprecated allocate runtime function (#4795)Sam Clegg2022-07-211-2/+0
|
* Cleanup emscripten `-s` flags (#4794)Sam Clegg2022-07-191-30/+30
| | | | | Avoid space between the `-s` and the option name and add `=` between option name and value. This is better, especially for cmake where some types of flags/options do no preserve order.
* Enable sign-extension & bulk-memory features for binaryen.js builds (#4804)Max Graey2022-07-141-0/+2
| | | Also document minimal requirements for binaryen.js
* Fix binaryen.js to include allocate() explicitly (#4793)Alon Zakai2022-07-111-0/+2
| | | | binaryen.js uses allocate, which is no longer exported by default in emscripten tip of tree builds.
* Release 109 (#4725)Alon Zakai2022-06-141-1/+1
|
* Link shared library against thread libraries (#4715)Sam Clegg2022-06-081-0/+5
| | | | | | Also, add `-Wl,--no-undefined` when linking shared libraries. Adding this flags means we can better detect when libraries are missing from the `libbinaryen.so` link. In this case it reports undefined symbol for `pthread_create` (which is then addressed by this patch).
* Fix dynamic linking for non-Debian Linux (#4713)jakobkummerow2022-06-061-1/+1
| | | | | Line 167 in CMakeLists.txt causes libraries to be put into `/lib`. Line 110, before this patch, causes binaries to look for libraries in `/${CMAKE_INSTALL_LIBDIR}`. This works out if CMAKE_INSTALL_LIBDIR equals `/lib`, which is the case on non-Linux and on Debian, see https://gitlab.kitware.com/cmake/cmake/-/blob/master/Modules/GNUInstallDirs.cmake#L221. On non-Debian Linux systems, however, it causes dynamic linking to fail unless `export LD_LIBRARY_PATH=/path/to/binaryen/lib` is manually set in the shell (or a `lib64 ->lib` symlink is created inside the Binaryen checkout). This patch fixes the inconsistency by putting `/lib` as the library search path into the created binaries. (I suppose an alternative fix would be to update lines 167/168 to use `${CMAKE_INSTALL_LIBDIR}` instead, not sure if that would be preferable.)
* Release 108 (#4658)Alon Zakai2022-05-111-1/+1
|
* Fix setting of stack size when building with clang for windows (#4654)TheGreatRambler2022-05-101-1/+5
|
* Add option to disable building tools (#4655)TheGreatRambler2022-05-101-1/+9
|
* Add CMake flag JS_OF_OCAML for js_of_ocaml (#4637)Blaine Bublitz2022-05-061-4/+29
|