Dear All, ECL 16.1.3 has been released today. For more information please see the announcement: https://common-lisp.net/project/ecl/posts/ECL-1613-release.html Best regards, Daniel -- Daniel Kochmański ;; aka jackdaniel | Przemyśl, Poland TurtleWare - Daniel Kochmański | www.turtleware.eu "Be the change that you wish to see in the world." - Mahatma Gandhi
Daniel Kochmański <daniel@turtleware.eu> wrote:
ECL 16.1.3 has been released today. For more information please see the announcement: https://common-lisp.net/project/ecl/posts/ECL-1613-release.html
It's cool to see an implementation taking CDRs into account! -- Resistance is futile. You will be jazzimilated. Lisp, Jazz, Aïkido: http://www.didierverna.info
On Mon, 19 Dec 2016, Daniel Kochmański wrote:
ECL 16.1.3 has been released today. I get
Building ecl_min... libeclmin.a(write_ugly.o):(.data.rel.ro+0x138): undefined reference to `_ecl_write_sse' collect2: error: ld returned 1 exit status make[1]: *** [Makefile:224: ecl_min] Error 1 Andrey
Hey, sorry about that, it seems that this buildsystem problem has sneaked in despite my best efforts to test it. Here is a necessary patch to make it build as expected: --CUT-- diff --git a/src/c/printer/write_sse.d b/src/c/printer/write_sse.d index 0c8cc29..9afea5d 100644 --- a/src/c/printer/write_sse.d +++ b/src/c/printer/write_sse.d @@ -12,6 +12,8 @@ * */ +#include <ecl/config.h> + #ifdef ECL_SSE2 #include <ecl/ecl.h> #include <ecl/internal.h> --CUT-- fix is already commited in the develop branch. Best regards, Daniel Andrey G. Grozin writes:
On Mon, 19 Dec 2016, Daniel Kochmański wrote:
ECL 16.1.3 has been released today. I get
Building ecl_min... libeclmin.a(write_ugly.o):(.data.rel.ro+0x138): undefined reference to `_ecl_write_sse' collect2: error: ld returned 1 exit status make[1]: *** [Makefile:224: ecl_min] Error 1
Andrey
-- Daniel Kochmański ;; aka jackdaniel | Przemyśl, Poland TurtleWare - Daniel Kochmański | www.turtleware.eu "Be the change that you wish to see in the world." - Mahatma Gandhi
participants (3)
-
Andrey G. Grozin
-
Daniel Kochmański
-
Didier Verna