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

actually call near-vm when using VMKind::NearVm #8886

Merged
merged 4 commits into from
Apr 6, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions runtime/near-vm-runner/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ mod imports;
mod instrument;
#[cfg(all(feature = "wasmer0_vm", target_arch = "x86_64"))]
mod memory;
// TODO: this will need to be turned into an actual near_vm feature as soon as it’s implemented
#[cfg(all(feature = "wasmer2_vm", target_arch = "x86_64"))]
#[allow(dead_code)]
#[cfg(all(feature = "near_vm", target_arch = "x86_64"))]
mod near_vm_runner;
pub mod prepare;
mod runner;
Expand Down
Loading