Skip to content

Commit

Permalink
Fix dev compile options documentation
Browse files Browse the repository at this point in the history
The wasm32-wasi target was renamed to wasi in #2713
  • Loading branch information
paulcadman authored and janmasrovira committed Apr 19, 2024
1 parent 6231946 commit 7eadc60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Commands/Extra/Compile/Options.hs
Original file line number Diff line number Diff line change
Expand Up @@ -112,19 +112,19 @@ parseCompileOptions' supportedTargets parserFile = do
switch
( short 'C'
<> long "only-c"
<> help "Produce C output only (for targets: wasm32-wasi, native)"
<> help "Produce C output only (for targets: wasi, native)"
)
_compilePreprocess <-
switch
( short 'E'
<> long "only-preprocess"
<> help "Run the C preprocessor only (for targets: wasm32-wasi, native)"
<> help "Run the C preprocessor only (for targets: wasi, native)"
)
_compileAssembly <-
switch
( short 'S'
<> long "only-assemble"
<> help "Produce assembly output only (for targets: wasm32-wasi, native)"
<> help "Produce assembly output only (for targets: wasi, native)"
)
_compileTerm <-
if
Expand Down

0 comments on commit 7eadc60

Please sign in to comment.