mirror of
https://github.com/pragma-/pbot.git
synced 2024-12-23 19:22:40 +01:00
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:
parent
a7722b50b2
commit
2afeb697eb
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user