build wasm tests with lto to avoid needing more wasm interp

This commit is contained in:
Brendan Hansknecht 2023-03-12 00:18:53 -08:00
parent b89f24bd5d
commit 0f0213b75e
No known key found for this signature in database
GPG key ID: 0EA784685083E75B
2 changed files with 4 additions and 2 deletions

View file

@ -4,7 +4,7 @@ use roc_wasm_interp::{
};
const COMPILER_BYTES: &[u8] =
include_bytes!("../../../target/wasm32-wasi/release/roc_repl_wasm.wasm");
include_bytes!("../../../target/wasm32-wasi/release-with-lto/roc_repl_wasm.wasm");
struct CompilerDispatcher<'a> {
arena: &'a Bump,