c-mera icon indicating copy to clipboard operation
c-mera copied to clipboard

Generation time optimization with sbcl

Open lispbub opened this issue 6 years ago • 1 comments

Code generation time can be heavily increased via (setf sb-ext::*evaluator-mode* :interpret) but that breaks when (let (..) ) definitions are used for code substitution. Performance increase seems plausible: no compilation, no optimization ... Investigate what is wrong, and set this mode as default?

lispbub avatar Jan 27 '20 21:01 lispbub

I just ran into this and added the following to my Makefile.am:

CM = cm c++ -E '(setf sb-ext::*evaluator-mode* :interpret)' 

Instant performance boost :)

kiselgra avatar Nov 21 '25 17:11 kiselgra