Feature SS-3475
1 vote

[Maxima] set lisp flavour to SBCL inside plugin

Created by Martin Kraska on 10/2/2017 7:37 PM Last Updated by Martin Kraska on 9/3/2018 4:52 PM
%
 (hrs)
Logged: 0   (hrs)

 Description

Currently, the user has to set the lisp compiler to SBCL manually using the Maxima config tool. This can be avoided if the command line option -l sbcl is used. -> better user experience and shorter install instructions.

    Martin Kraska (Monday, September 3, 2018 4:51 PM) #

Implemented  in StartAndConnectMaxima() in AutoMaxima.cs

// "-l sbcl" enforces Steel bank common lisp (because it is unicode-proof)
                maximaProcess.StartInfo.Arguments = " -l sbcl -s " + Convert.ToString(socket.GetAutoSocketPort());