Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a feature for disabling GC types #1731

Merged

Commits on Aug 21, 2024

  1. Add a feature for disabling GC types

    This commit adds support for a new wasm feature named
    `WasmFeatures::GC_TYPES`. This does not correspond to any upstream
    proposal and is intended for use in Wasmtime for disabling the runtime
    garbage collector at compile time. This serves as a finer-grained switch
    to disable the runtime dependency at validation time on a garbage
    collector without disabling all the features that were added in other
    proposals. For example the `reference-types` proposal also added support
    for multi-table which disabling a runtime garbage collector doesn't need
    to disable.
    alexcrichton committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    7e65795 View commit details
    Browse the repository at this point in the history
  2. Fix wasm-smith tests

    alexcrichton committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    7a4f812 View commit details
    Browse the repository at this point in the history
  3. Fix test expectation

    alexcrichton committed Aug 21, 2024
    Configuration menu
    Copy the full SHA
    913ce92 View commit details
    Browse the repository at this point in the history