Re: [Ecls-list] switching betwen byte-code compiler and lisp-to-c compiler

2012-05-31 Thread Juan Jose Garcia-Ripoll
On Thu, May 31, 2012 at 12:16 AM, Anton Vodonosov avodono...@yandex.ruwrote: Is it possible to enable lisp-to-c compiler, compile something, than switch to bytecode compiler, compile some files and load some file, than switch back? (I saw that (require :cmp) loads lisp-to-c compiler, but is

Re: [Ecls-list] switching betwen byte-code compiler and lisp-to-c compiler

2012-05-31 Thread Anton Vodonosov
31.05.2012, 13:04, Juan Jose Garcia-Ripoll juanjose.garciarip...@googlemail.com: In principle, (load sys:cmp) used to do the trick, but that seems like a hack. Hence, I will add a new function, C:INSTALL-C-COMPILER, to do the job. If I didn't (load sys:cmp) and do not call

Re: [Ecls-list] switching betwen byte-code compiler and lisp-to-c compiler

2012-05-31 Thread Juan Jose Garcia-Ripoll
On Thu, May 31, 2012 at 11:16 AM, Anton Vodonosov avodono...@yandex.ruwrote: So maybe the question is, whether it is possible to enforce bytecode compiler even if lisp-to-c compiler is abalable (c:install-bytecodes-compiler) replaces all Common Lisp functions with the bytecode version one --

Re: [Ecls-list] switching betwen byte-code compiler and lisp-to-c compiler

2012-05-30 Thread Anton Vodonosov
[better version of the letter - fixed some typos] Juan Jose, could you explain or point to docs about the right way to deal with two compilers? Supposing ECL is build with ECL_CMP = 1 both compilers are included, right? Is it possible to enable lisp-to-c compiler, compile something, than