Skip to content

Commit

Permalink
Fix no_std tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lrubasze committed Jan 20, 2025
1 parent 168a9c1 commit 8514564
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion radix-engine/src/vm/wasm/wasm_features_config.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use radix_rust::prelude::String;
use wasmparser::WasmFeatures;

#[derive(Debug, Clone)]
Expand Down Expand Up @@ -61,7 +62,7 @@ impl WasmFeaturesConfig {
Self::default()
}

// More on CFLAGS for WASM: https://clang.llvm.org/docs/ClangCommandLineReference.html#webassembly
// More on CFLAGS for WASM: https://clang.llvm.org/docs/ClangCommandLineReference.html#webassembly
pub fn into_target_cflags(&self) -> String {
let mut cflags = String::from("-mcpu=mvp");
// Assuming that remaining options have sensible defaults
Expand Down

0 comments on commit 8514564

Please sign in to comment.