Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Disable sign-ext WASM feature when building runtimes (#13804)
Browse files Browse the repository at this point in the history
Co-authored-by: parity-processbot <>
  • Loading branch information
koute authored Apr 3, 2023
1 parent b94d98b commit dd45632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/wasm-builder/src/wasm_project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ fn build_project(
let mut build_cmd = cargo_cmd.command();

let rustflags = format!(
"-C target-cpu=mvp -C link-arg=--export-table {} {}",
"-C target-cpu=mvp -C target-feature=-sign-ext -C link-arg=--export-table {} {}",
default_rustflags,
env::var(crate::WASM_BUILD_RUSTFLAGS_ENV).unwrap_or_default(),
);
Expand Down

0 comments on commit dd45632

Please sign in to comment.