1
1
mirror of https://github.com/anoma/juvix.git synced 2024-11-26 17:06:23 +03:00

bench: Fix juvix compile flag for wasm (#1925)

This commit is contained in:
Paul Cadman 2023-03-23 21:42:42 +00:00 committed by GitHub
parent c22cd5cc45
commit ebb4a27b69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -165,7 +165,7 @@ juvixWasm =
_variantColor = getVariantColor JuvixWasm,
_variantRun = runWasm,
_variantBuild = \args ->
command_ [] "juvix" (juvixCommon ++ ["--target=wasm"] ++ commonOptions args ext)
command_ [] "juvix" (juvixCommon ++ ["--target=wasm32-wasi"] ++ commonOptions args ext)
}
where
ext :: [String]