compiler_vm: languages: change scheme to use guile (#26)

The compiler vm doesn't have a scheme interpreter named "scm" but it
does have a scheme interpreter named "guile". Change the compiler_vm to
use the guile interpreter program instead of scm.
This commit is contained in:
Tomasz Kramkowski 2019-04-21 10:22:09 +01:00 committed by Pragmatic Software
parent a7722b50b2
commit 2afeb697eb
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ sub initialize {
$self->{sourcefile} = 'prog.scm';
$self->{execfile} = 'prog.scm';
$self->{default_options} = '';
$self->{cmdline} = 'scm $options < $sourcefile';
$self->{cmdline} = 'guile $options $sourcefile';
$self->{cmdline_opening_comment} = "#|=============== CMDLINE ===============\n";
$self->{cmdline_closing_comment} = "================= CMDLINE ===============|#\n";