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

Disable sign-ext WASM feature when building runtimes #13804

Merged
Merged
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
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