summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
Commit message (Collapse)AuthorAgeFilesLines
* Install wasm-rt-impl include files (#2452)Remko Tronçon2024-08-111-1/+1
| | | Fixes #2451
* Bump version to 1.0.36 (#2449)Alex Reinking2024-07-311-1/+1
|
* Fix deprecated FetchContent_Populate warning third_party/uvwasi cmake build ↵Changqing Jing2024-07-111-0/+4
| | | | (#2440)
* Version 1.0.35 (#2421)Sam Clegg2024-05-141-1/+1
|
* wasm2c: atomic and shared mem operations using c11Shravan Narayan2024-01-301-1/+2
|
* Fix emscripten build warning and add missing export (#2367)Changqing Jing2024-01-191-0/+1
|
* Simplify emscripten command line flags. NFC (#2368)Sam Clegg2024-01-171-8/+8
|
* Clean up WABT_BIG_ENDIAN handling in tests (#2326)Soni L2023-11-121-0/+4
|
* Version 1.0.34 (#2313)Keith Winstein2023-10-241-1/+1
|
* Rename wasm-opcodecnt to wasm-stats (#2298)Soni L2023-09-191-3/+3
|
* WastParser: replace CircularArray with internal TokenQueue (NFC) (#2300)Keith Winstein2023-09-181-1/+0
|
* Fix CI from upgraded cmake version on GitHub Ubuntu runner (#2273)Keith Winstein2023-07-301-3/+3
|
* Add build and publishing of wabt tools with wasi (#2254)Anuraag Agrawal2023-06-121-23/+26
|
* wasm2c: partial support for atomic memory opsShravan Narayan2023-05-171-1/+4
|
* Version 1.0.33 (#2238)Keith Winstein2023-05-121-1/+1
|
* wasm2c: include simd128.h and wasm-rt-exceptions.h where necessary (#2236)Keith Winstein2023-05-121-1/+4
| | | Co-authored-by: Shravan Narayan <shravanrn@gmail.com>
* Revert "Version 1.0.33" (#2237)Keith Winstein2023-05-121-1/+1
| | | | | This reverts commit 0e6861f0480dfbb6461121463e0963391cc38ccf. Push misfire.
* Version 1.0.33Keith Winstein2023-05-121-1/+1
|
* wasm2c: Enable exceptions and simd according to command line flagsShravan Narayan2023-05-021-3/+5
|
* wasm2c: Checkin prebuilt source code in source folder, add lint checks to ↵Shravan Narayan2023-04-111-6/+13
| | | | ensure these are up to date
* Remove some old emcc link flags (#2158)Sam Clegg2023-03-061-3/+1
| | | | | I don't think there is any need to use `WASM=0` these days. If anybody really cares about node performance and this turns out still to be faster they can always add this back in.
* Fix for BUILD_FUZZ_TOOLS=ON (#2154)Sam Clegg2023-03-021-0/+1
| | | Fixes: #2153
* Use C++17's [[fallthrough]]. NFC (#2091)Sam Clegg2023-02-271-2/+4
|
* Add ARM64 windows compatibility (#2140)Changqing Jing2023-02-091-0/+5
| | | Fixes #2139
* Speed up tests by matrixing asan/ubsan x debug/release (#2081)Keith Winstein2023-01-271-1/+14
| | | Will shorten the critical path after wasm2c is running SIMD tests
* wasm2c: serialize types at wasm2c-time (#2120)Keith Winstein2023-01-251-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | This makes wasm2c serialize each function type, rather than registering function types at module-initialization time. The serialized function type is the SHA-256 of the mangled param and result types (with a space between params and results). At runtime in call_indirect, a known (immediate) function type is compared against the function type stored in a funcref structure. For call_indirects to functions local to the module, or for any call_indirect when the toolchain merges string constants across compilation units (generally, GCC and clang), this can be done by comparing the pointers to each function type. Otherwise, the actual 32-byte values are compared. The function type IDs can be looked up at runtime with `Z_[modname]_get_func_type`, which matches the API from `wasm_rt_register_func_type`. A new `callback` example demos this. wasm2c does the SHA-256 either by linking against libcrypto or, if not available or if requested via `cmake -DUSE_INTERNAL_SHA256=ON`, by using a vendored (header-only) PicoSHA2. There is no runtime dependency on SHA-256 in the wasm2c runtime or generated modules. This eliminates the last of the per-module state, so this commit also removes the [modname]_init_module() function and the s_module_initialized bool.
* Version 1.0.32 (#2111)Marcus Better2022-12-271-1/+1
|
* Use flat format for emscriptnen exported function list. NFC (#2108)Sam Clegg2022-12-211-3/+3
|
* Silence gtest and uvwasi warnings on GCC 11 (#2082)Keith Winstein2022-11-301-0/+8
| | | | Required to pass CI on ubuntu-22.04 runners which are phasing in for "ubuntu-latest" workflows on GitHub.
* Include wasm-rt-impl in Windows package (#2072)Remko Tronçon2022-11-161-24/+22
| | | | The wasm2c runtime should now be supported on Windows per 6a89e3f74560eb8f0396c24ce625de0023cb46b2
* interp: Replace condition for including `type` field in `Value` (#2071)Remko Tronçon2022-11-161-0/+4
| | | | | | | | | Value's `type` field was compiled conditionally on the `NDEBUG` define. This causes problems with programs compiling against libwabt that don't define this macro, as the Value layout no longer matches. Using a condition in config.h. Fixes #2069
* Version 1.0.31 (#2060)Sam Clegg2022-11-131-1/+1
| | | See #2059
* Install wasm2c source files as data (#2058)Remko Tronçon2022-11-131-1/+6
| | | | | | | | | Toolchains using wasm2c depend on the wasm-rt files to build the generated programs. Using a binary wasm-rt library is not enough for toolchains that do e.g. cross-compilation, and they need to copy and use the source files instead. Therefore, package these source files as data for toolchains to use. Closes #2057
* Include CWriter in libwabt (#2033)Keith Winstein2022-11-021-20/+22
|
* wasm2c: Don't create a separate library for cwriter-template. NFC (#2015)Sam Clegg2022-10-041-4/+3
| | | Fixes: #2014
* remove duplicated source in CMakeLists.txt (#2011)walkingeyerobot2022-09-301-1/+0
| | | Co-authored-by: Mitch Foley <mitchfoley@chromium.org>
* Fix architecture checks (#1969)Alex Reinking2022-09-281-40/+20
| | | | | | | | | | | | | | | | | | | | * Use standard modules to test endianness CMake prior to v3.20 provides a module TestBigEndian which we can use to set the WABT_BIG_ENDIAN define. As of 3.20, the CMAKE_<LANG>_BYTE_ORDER variable should be preferred. Leaving this as a note for the future. * Fix x87 math detection TARGET_ARCH was only used to determine whether to add gcc-specific SSE math flags (-msse2 -mfpmath=sse). The new approach simply assumes gcc compatibility with its __i386__ and __SSE2_MATH__ symbols, which are defined precisely when we are targeting x86-32 with SSE2 math enabled. If those macros are defined, then we conclude all is well. Otherwise, we add the flags if we know the compiler is gcc or clang (and will thus accept them) and issue a warning if the compiler is unknown. Fixes #1709 Fixes #1688
* Bump version to 1.0.30 (#2008)Alex Reinking2022-09-281-1/+1
|
* Move headers to include/wabt/ (#1998)Alex Reinking2022-09-281-71/+76
| | | This makes things easier for users and packagers of libwabt.
* Create CMake package for wabt (#1980)Alex Reinking2022-09-081-0/+63
| | | | | | | | | | | Allows users to install wabt to a local directory and use find_package to load the wabt and wasm-rt-impl libraries into their build. These users, as well as FetchContent users, may link to these libraries using, for example: find_package(wabt REQUIRED) target_link_libraries(myApp PRIVATE wabt::wabt) Note the wabt:: namespace.
* Fix git describe behavior (#1979)Alex Reinking2022-09-051-26/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rename CMAKE_PROJECT_VERSION to WABT_VERSION_STRING CMAKE_PROJECT_VERSION is a standard variable that is controlled by the project() command. Renaming our usage to WABT_VERSION_STRING better describes the purpose of the variable and avoids surprises down the line. * Use git describe output to annotate version string Before this commit, the attempt to add the output of git describe to the version string printed by $wasm-tool --version was bugged. It would always print the three-part version number (like 1.0.29). After this commit, the output of `git describe --tags` is used to append a description to the version number in the form of: "ver (git~desc)". For example: $ ./wasm2c --version 1.0.29 (git~1.0.29-27-gf63184ef) If this command returns a tag equal in name to the current version, nothing is appended. If this command fails, a NOTICE (rather than a WARNING) is printed (only if the project is top-level), and only the bare version number is used. If the source code is not living in the git repository then, again, only the bare number is used, but no warning is printed. Fixes #1977 Fixes #1978
* Build fixes for FetchContent users (#1974)Alex Reinking2022-09-011-18/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rename WABT_MASTER_PROJECT to PROJECT_IS_TOP_LEVEL When WABT eventually upgrades to CMake 3.21+, only the one line setting PROJECT_IS_TOP_LEVEL will need to be deleted. * Add WABT_INSTALL_RULES option This option is enabled by default when WABT is the top-level project and disabled by default when it is not. It is used (and should continue to be used) to guard uses of the install() command. This fixes an issue where FetchContent users were forced to install parts of WABT. This most notably included the wasm-rt-impl library and its associated headers. * Remove redundant defaults from install rules CMake 3.14 changed the behavior of the install() command to take its defaults from the GNUInstallDirs module. Use this feature to remove dead code from the build. * Deleted top-level cmake/ folder There was nothing in here besides a README that referred to a find module that no longer exists in the repository. Removing to avoid confusion. * Add components to install() rules By default, CMake assigns every install() rule to an "Unspecified" component. By adding COMPONENT annotations, users become empowered to install only the parts of WABT that they need. WABT now provides three components: 1. wabt-runtime - the executables in WABT_EXECUTABLES 2. wabt-development - the wasm-rt static library and headers 3. wabt-documentation - the man pages, on UNIX only Users can access this functionality using, e.g.: cmake --install build --component wabt-development When a user specifies no component, all are installed. FetchContent users benefit as well. If they enable WABT's install rules, they can build accurate packaging dependencies around these components.
* Fix test dependencies (#1970)Alex Reinking2022-08-251-12/+7
| | | | | | | | | | | | | | | | | | * Only search for Python when BUILD_TESTS=ON Rather than disable tests with a warning when Python cannot be found, require it when tests are enabled. Avoid the search altogether when tests are disabled. This check additionally causes issues with FetchContent users that use the newer FindPython(3) module. Fixes #1385 * Fix usage of Threads find_package(Threads) was called redundantly and a bad check was used to disable a pthreads-specific test. Rather than checking WIN32, one should check CMAKE_USE_PTHREADS_INIT
* Raise minimum CMake version to 3.16 (#1968)Alex Reinking2022-08-261-12/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The stated minimum, 3.1, was released on Dec 17, 2014 and did not support a value of 17 for CMAKE_CXX_STANDARD. The first version to do so was 3.8. In fact, attempting to build with CMake 3.7 fails with errors like: CMake Error in CMakeLists.txt: Target "wasm-strip" requires the language dialect "CXX17" , but CMake does not know the compile flags to use to enable it. So we might as well take this chance to raise the minimum to something more recent. I propose 3.16 here because of the following features: * CMP0077 (v3.13) makes the lives of FetchContent users easier by allowing option() to be overridden. * CMP0082 (v3.14) corrects the semantics of install() rules, which is relevant for FetchContent users. * CMake 3.12 allows the namelink of a shared library on Linux to be installed separately (i.e. in a dev package) * CMake 3.14 integrates the standard install destination variables from GNUInstallDirs with the install() command. * CMake 3.15 introduced the CMAKE_MSVC_RUNTIME_LIBRARY variable for controlling the selection of the runtime library from the outside. * CMake 3.16 gained support for generator expressions in RPATH properties, which will make it easier to ship shared libraries. This version is quite conservative and I would even suggest upgrading further. Windows and macOS users enjoy frequent updates from Homebrew and Microsoft Visual Studio. Ubuntu Linux 20.04 LTS ships 3.16 and the newest LTS ships 3.22. Linux users can always install the latest version through PIP, even on ARM, PowerPC, and s390x, and even without sudo. Fixes #1568
* wasm2c: simplify handling of templated code (#1940)Keith Winstein2022-07-111-0/+20
| | | Store templated wasm2c code as .h/.c; build templates on demand
* Version 1.0.29 (#1915)Sam Clegg2022-05-041-1/+1
|
* Use CMAKE_CXX_STANDARD and bump cmake minimum version to 3.1 (#1870)Sam Clegg2022-03-181-6/+4
| | | See https://cmake.org/cmake/help/latest/variable/CMAKE_CXX_STANDARD.html
* Version 1.0.28 (#1869)Sam Clegg2022-03-181-1/+1
|
* Honor -DWERROR=ON for all cmake targets (#1850)Sam Clegg2022-03-071-7/+12
| | | I believe this is why #1849 managed to land without detection.
* Fix location in config.h in source list (#1807)Sam Clegg2022-03-061-1/+3
| | | | | The wrong name here was causing a cmake warning because it was finding `config.h.in` instead and this behaviour is deprecated.