Disable sign-ext WASM feature when building runtimes (#13804)

Co-authored-by: parity-processbot <>
This commit is contained in:
Koute
2023-04-03 21:00:31 +09:00
committed by GitHub
parent e524bf0e30
commit 795fcf0484
@@ -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(),
);