mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-18 23:32:17 -08:00
Add the latest change to CHANGELOG
This commit is contained in:
parent
f3071cc41e
commit
f9c48b5d7f
1 changed files with 9 additions and 0 deletions
|
|
@ -21,6 +21,15 @@ ECL 10.4.2:
|
|||
|
||||
- ECL's compiler now understands the unboxed type :long-long.
|
||||
|
||||
- A new special form, EXT:WITH-BACKEND allows us to select the code depending
|
||||
on whether it is going to be processed by the interpreter or by the C
|
||||
compiler.
|
||||
(defun example ()
|
||||
(ext:with-backend (:bytecodes) (print 3))
|
||||
(ext:with-backend (:c/c++) (print 2)))
|
||||
The two currently available backends are :bytecodes and :c/c++. Note that
|
||||
when the backend does not match the value, the form is replaced with (VALUES).
|
||||
|
||||
|
||||
ECL 10.4.1:
|
||||
===========
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue