I'm trying to debug ISLE-generated code by enabling the isle-in-source-tree
feature for cranelift-codegen
, as mentioned in the documentation. However, when running it, I encounter the following error:
error: the package 'cranelift-codegen' does not contain this feature: isle-in-source-tree
After searching through the project, I couldn't find any feature named isle-in-source-tree
in the codebase.
That flag was removed in https://github.com/bytecodealliance/wasmtime/pull/9633. Instead you can set the ISLE_SOURCE_DIR
env var to some location where you want the generated code to be written to when compiling cranelift-codegen.
Posted https://github.com/bytecodealliance/wasmtime/pull/10466 just now to update the docs. Sorry about the confusion @ping ping !
@Chris Fallin @bjorn3 Thanks for the quick fix! Really appreciate the documentation update and your help clarifying this.
Last updated: Apr 07 2025 at 11:03 UTC