Skip to content

Commit

Permalink
Guile compiles with -O3 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
wingo authored Jul 3, 2024
1 parent 33880aa commit ea82bc3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bench
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,10 @@ mit_exec ()

guile_comp ()
{
${GUILD} compile $1
# Guile's default optimization level is more suited to interactive
# development. Explicitly selecting -O3 allows it to more
# aggressively inline top-level definitions.
${GUILD} compile -O3 $1
}

guile_exec ()
Expand Down

0 comments on commit ea82bc3

Please sign in to comment.