Skip to content

Commit

Permalink
Disable set_target(Some(target)) for Engine builder
Browse files Browse the repository at this point in the history
See #3508
  • Loading branch information
fschutt committed Jan 19, 2023
1 parent c61a5d7 commit 32fbfc3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/cli/src/store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,8 @@ impl CompilerOptions {
let features = self.get_features(compiler_config.default_features_for_target(&target))?;
let engine: Engine = wasmer_compiler::EngineBuilder::new(compiler_config)
.set_features(Some(features))
.set_target(Some(target))
// https://github.com/wasmerio/wasmer/issues/3508
// .set_target(Some(target))
.engine();

Ok(engine)
Expand Down

0 comments on commit 32fbfc3

Please sign in to comment.