#[no_mangle]
pub extern "C" fn wasmer_features_module_linking(
    features: Option<&mut wasmer_features_t>,
    enable: bool
) -> bool
Expand description

Configures whether the WebAssembly tail-call proposal will be enabled.

The WebAssembly tail-call proposal is not currently fully standardized and is undergoing development. Support for this feature can be enabled through this method for appropriate WebAssembly modules.

This feature allows WebAssembly modules to define, import and export modules and instances.

This is false by default.

Example

See the module’s documentation.